Releases: maxmantz/redux-oidc
Releases · maxmantz/redux-oidc
v3.0.1
v3.0.0
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 theUSER_FOUND
action and therefore superfluous.
v3.0.0-beta.17
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 ofoidc-client
. For all users of this library, please switch tooidc-client
instead.
Other changes:
- bumped up the minimum version of
oidc-client
to 1.4.1.
v3.0.0-beta.16
- fixed the optional dependency of oidc-client-fetch
v3.0.0-beta.15
-fixed typings (#94) - thanks @jonaskello
v3.0.0-beta.14
Bug fixes:
- fixed a bug where multiple
USER_FOUND
actions were dispatched in the middleware.
v3.0.0-beta.13
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 dispatchesLOADING_USER
at the beginning of the call (#76). Thanks @rmkpatchaa.
Bug fixes:
loadUser
now dispatchesUSER_EXPIRED
when the user object returned by the user manager isnull
(#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
- fixed the semver warning when installing
oidc-client-fetch
(#62).
v3.0.0-beta.11
- now supports installing either
oidc-client
oroidc-client-fetch
.
v3.0.0-beta.10
PRs #54 & #55 merged. Thanks @notatestuser