Skip to content

Releases: manfredsteyer/angular-oauth2-oidc

2.1.2

13 Sep 21:45
Compare
Choose a tag to compare

Fixed #103, #101, #99

2.1

10 Sep 12:42
Compare
Choose a tag to compare
2.1

New Features in 2.1

  • New Config API (the original one is still supported, see readme)
  • New convenience methods in OAuthService to streamline default tasks:
    • setupAutomaticSilentRefresh()
    • loadDiscoveryDocumentAndTryLogin()
  • Single Sign out through Session Status Change Notification according to the OpenID Connect Session Management specs. This means, you can be notified when the user logs out using at the login provider.
  • Possibility to define the ValidationHandler, the Config as well as the OAuthStorage via DI
  • Better structured documentation

Disable State-Check

28 Aug 22:29
Compare
Choose a tag to compare

Added a flag to disable OAuth2-style state check for edge cases. Also see generated docs for this.

return this.oauthService.tryLogin({
    disableOAuth2StateCheck: true
});