Skip to content

Releases: jerelmiller/redux-simple-auth

v0.6.6

16 Mar 04:19
Compare
Choose a tag to compare

Changes

Bug fixes

  • Fix issue where importing the credentials authenticator would blow up due to the regenerator runtime not included (#56)

v0.6.5

12 Mar 05:02
Compare
Choose a tag to compare

Changes

Features

  • Sync state across tabs (#54)

Chores

  • Use invariant for error checking (#53)

v0.6.4

26 Feb 03:40
Compare
Choose a tag to compare

Changes

Features

  • Adds a clearError action to allow clearing lastError and hasFailedAuth state (#52)

v0.6.5-beta.0

26 Feb 10:16
Compare
Choose a tag to compare
v0.6.5-beta.0 Pre-release
Pre-release

Features

  • Sync state across tabs (#54)

v0.6.3

25 Feb 21:53
Compare
Choose a tag to compare

Changes

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

24 Feb 00:36
Compare
Choose a tag to compare

Changes

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

22 Feb 02:07
Compare
Choose a tag to compare

Changes

Bug Fixes

  • Fix a regression where invalidating the session would not sync to the storage device (#45)

v0.6.0

22 Feb 01:19
Compare
Choose a tag to compare

Changes

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

15 Feb 01:29
Compare
Choose a tag to compare
v0.6.0-beta.1 Pre-release
Pre-release

Changes

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

01 Feb 08:27
Compare
Choose a tag to compare

Changes

Features

  • Session refresh. This allows you to easily implement sliding sessions by allowing you to update session data from a request. (#37)