Skip to content

Releases: maxmantz/redux-oidc

v3.0.1

06 Jul 13:37
Compare
Choose a tag to compare

Fixes:

  • fixed TypeScript typings (#116).

v3.0.0

19 Jun 10:18
Compare
Choose a tag to compare

Bug fixes:

  • removed oidc-client & react from dependencies. They are now peer dependencies as originally intended. (#110, , #112, #113),
  • corrected TypeScript definitions (#102).

API changes:

  • removed REDIRECT_SUCCESS & USER_LOADED from actions. They are both equivalent to the USER_FOUND action and therefore superfluous.

v3.0.0-beta.17

11 Apr 19:45
Compare
Choose a tag to compare
v3.0.0-beta.17 Pre-release
Pre-release

This will (hopefully) be the final beta release of version 3.

Potentially breaking changes:

  • removed oidc-client-fetch as a dependency since this hasn't been updated in over a year and is outdated in comparison to the current version of oidc-client. For all users of this library, please switch to oidc-client instead.

Other changes:

  • bumped up the minimum version of oidc-client to 1.4.1.

v3.0.0-beta.16

22 Feb 21:53
Compare
Choose a tag to compare
v3.0.0-beta.16 Pre-release
Pre-release
  • fixed the optional dependency of oidc-client-fetch

v3.0.0-beta.15

22 Feb 21:40
Compare
Choose a tag to compare
v3.0.0-beta.15 Pre-release
Pre-release

-fixed typings (#94) - thanks @jonaskello

v3.0.0-beta.14

22 Nov 19:36
Compare
Choose a tag to compare
v3.0.0-beta.14 Pre-release
Pre-release

Bug fixes:

  • fixed a bug where multiple USER_FOUND actions were dispatched in the middleware.

v3.0.0-beta.13

21 Nov 20:03
Compare
Choose a tag to compare
v3.0.0-beta.13 Pre-release
Pre-release

API changes:

  • the immutable reducer now deeply converts non-objects to immutable maps (#69). This can have effects on how you retrieve data from the user object stored in the reducer. Thanks @Tankanow for the fix.

Improvements:

  • loadUser now returns a promise (#75). Thanks @danrashid.
  • loadUser now dispatches LOADING_USER at the beginning of the call (#76). Thanks @rmkpatchaa.

Bug fixes:

  • loadUser now dispatches USER_EXPIRED when the user object returned by the user manager is null (#73). Thanks @mcosand for the bug report.

This will likely be the final beta release unless new bugs surface in the near future.

v3.0.0-beta.12

28 Sep 19:57
Compare
Choose a tag to compare
v3.0.0-beta.12 Pre-release
Pre-release
  • fixed the semver warning when installing oidc-client-fetch (#62).

v3.0.0-beta.11

28 Sep 10:48
Compare
Choose a tag to compare
v3.0.0-beta.11 Pre-release
Pre-release
  • now supports installing either oidc-client or oidc-client-fetch.

v3.0.0-beta.10

19 Jul 14:05
Compare
Choose a tag to compare
v3.0.0-beta.10 Pre-release
Pre-release

PRs #54 & #55 merged. Thanks @notatestuser