Releases: jerelmiller/redux-simple-auth
Releases · jerelmiller/redux-simple-auth
v0.6.6
Bug fixes
- Fix issue where importing the credentials authenticator would blow up due to the regenerator runtime not included (#56)
v0.6.5
Features
- Sync state across tabs (#54)
Chores
- Use
invariant
for error checking (#53)
v0.6.4
Features
- Adds a
clearError
action to allow clearing lastError
and hasFailedAuth
state (#52)
v0.6.5-beta.0
Features
- Sync state across tabs (#54)
v0.6.3
Features
- Add a new credentials authenticator for most common credentials situations (#50)
Documentation
- Fix some small inaccuracies in documentation (#51)
Chores
Contributors
v0.6.2
Bug fixes
- Return a rejected promise when authentication fails. This allows you to more easily catch auth errors after dispatch if you need to attach any custom logic outside of state (#46)
v0.6.1
Bug Fixes
- Fix a regression where invalidating the session would not sync to the storage device (#45)
v0.6.0
Features
- Custom invalidate functionality. If you need some custom logic while invalidating the session,
now you can! (#38)
- Basic OAuth2 authorizer and authenticator (#39)
Chores
- Fix prettier precommit hook (#41)
Contributors
v0.6.0-beta.1
Features
- Add basic authenticator and authorizer for oauth2 implicit grant flow. This does not include any session refresh logic and is simply a predefined authorizer and authenticator. (#39)
v0.5.0
Features
- Session refresh. This allows you to easily implement sliding sessions by allowing you to update session data from a request. (#37)