Releases: maxmantz/redux-oidc
Releases · maxmantz/redux-oidc
v2.2.1
v2.2.0
v2.2.0-beta.3
<CallbackComponent />
: added an optional prop calledroute
to pass to the user manager (see issue #14),- middleware: now passes
window.location.pathname
instead ofwindow.location.href
to the callback state to fix a warning when used with react-router.
v2.2.0-beta.2
- added support for redux-auth-wrapper (see #12),
- removed support for providing a loaded user
v2.2.0-beta.1
- fixed a bug where an interrupted login attempt would stop the middleware from performing the login on page reload,
- as a result you are now required to pass in a string to the middleware creator function, providing the callback route string (e.g.
'/callback'
, see documentation for details), triggerAuthFlow
in the middleware creator function is nowundefined
by default (wastrue
in previous versions),- added a parameter to pass in a synchronously loaded User object (NOT SUPPORTED YET BY
oidc-client
).
v2.1.0
v2.1.0-beta.3
- fixed an issue where the user had to log in again after a page refresh.
v2.1.0-beta.2
- changed externals to exclude
oidc-client
&immutable
from build.
v2.1.0-beta.1
<CallbackComponent />
errorCallback
is now a prop. It takes a function which gets the redirect error passed in.
oidc-client-js
is now a peer dependency. You will have to install it manually runningnpm install --save oidc-client
.
v2.0.2-beta.1
- changed
oidc-client
version to1.1.0-beta.3
.