Releases: adfinis/ember-simple-auth-oidc
Releases · adfinis/ember-simple-auth-oidc
v1.1.1
v1.1.0
v1.0.0
1.0.0 (2020-01-22)
Bug Fixes
- adapter: remove deprecated usage of authorize on adapter mixin (fdd3de4)
Features
- remove support for node 8 (9cc76a4)
- store redirect URL before logout (9ae445e)
- license: move from MIT to LGPL-3.0-or-later license (ce3e635)
BREAKING CHANGES
- license: This project is now licensed under the LGPL-3.0-or-later
license instead of the MIT license. - This removes the need for the
OIDCEndSessionRouteMixin
. It can simply be replaced by the ESA native call ofsession.invalidate()
This enables the user to store the source URL after logging out. The user will then be redirected to that source after the next login.
- Node version 8.x is not supported anymore since it's
not a maintained LTS version.
v0.4.3
v0.4.2
v0.4.1
v0.4.0
Release v0.2.0
See the changelog for details.
v0.1.5
v0.1.4: Minor bugfix
- If a session is restored but the token is still valid, no refresh loop is started to prevent a
infinite token refresh loop on multiple tabs. This token is never checked again so we never start a
refresh loop even if the token is already expired. This causes the next request to return a 401 and
invalidates the session.