Skip to content

Releases: adfinis/ember-simple-auth-oidc

v1.1.1

22 Apr 06:43
Compare
Choose a tag to compare

1.1.1 (2020-04-22)

Bug Fixes

  • mixin: store id_token for use as id_token_hint on logout (f6adf36)

v1.1.0

22 Jan 16:03
Compare
Choose a tag to compare

1.1.0 (2020-01-22)

Bug Fixes

  • logout: prevent overriding continueTransition if it's already set (5080a03)

Features

  • add function to handle unauthorized responses (5d131c3)

v1.0.0

22 Jan 09:54
Compare
Choose a tag to compare

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 of session.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

04 Nov 12:13
fbed908
Compare
Choose a tag to compare

0.4.3 (2019-10-04)

Changes

  • dependencies: update dependencies

v0.4.2

09 Sep 16:07
Compare
Choose a tag to compare

0.4.2 (2019-09-09)

Bug Fixes

  • authenticator: await successful retry before setting the session (18b9c1f)

v0.4.1

06 Sep 14:16
Compare
Choose a tag to compare

0.4.1 (2019-09-06)

Bug Fixes

  • authenticator: retry token refresh on error (63cd8d3)

v0.4.0

25 Jul 07:36
Compare
Choose a tag to compare

0.4.0 (2019-07-25)

Bug Fixes

  • continue-transition: do not trigger intercepted transition twice (1fafa76)
  • dummy-app: fix queryParams handling in dummy (76ab8ef)

Features

  • redirect: add support for login_hint (9074063)

Release v0.2.0

04 Feb 15:15
8090f35
Compare
Choose a tag to compare

See the changelog for details.

v0.1.5

19 Nov 14:40
6d25924
Compare
Choose a tag to compare
v0.1.5 Pre-release
Pre-release
Merge pull request #8 from velrest/v0.1.5-patch

Release v0.1.5

v0.1.4: Minor bugfix

19 Nov 13:33
ce9f854
Compare
Choose a tag to compare
v0.1.4: Minor bugfix Pre-release
Pre-release
  • 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.