Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Releases: okta/okta-oidc-js

@okta/[email protected]

02 Nov 17:03
d9b25ef
Compare
Choose a tag to compare

Features

  • ed29bf5 - Adds configuration validation for issuer, client_id, client_secret, and redirect_uri when passed into the middleware.

Other

  • c37b9cf - Updates the TCK version to support new integration tests.
  • 3582f25 - Rely on shared environment configuration from project root.
  • c8b7ab5a - Migrate dependencies to project root utilizing yarn workspaces.
  • 8494be0 - Migrate mocha tests to jest.

@okta/[email protected]

02 Nov 17:11
d9b25ef
Compare
Choose a tag to compare

Other

  • 2945461 - Updates @okta/configuration-validation version

@okta/[email protected]

02 Nov 17:04
d9b25ef
Compare
Choose a tag to compare

Features

  • 1ae19d1 - Adds configuration validation for issuer and clientId when passed into the verifier.

Other

  • 3582f25 - Rely on shared environment configuration from project root.
  • c37b9cf - Updates the TCK version to support new integration tests.
  • c8b7ab5a - Migrate dependencies to project root utilizing yarn workspaces.
  • 6b6aca4 - Migrates mocha tests to jest.
  • 0a504a6 - Add note that this library is only for NodeJS

@okta/[email protected]

24 Sep 23:04
a5a14d7
Compare
Choose a tag to compare

Bug fixes

  • dbfb7de - Fixes an issue where the library would enter an error state when attempting to renew expired tokens (errorCode: login_required). (#304)

Others

  • e81fac6 - Updates jest to version ^23.6.0 and package-lock.json. (#287)
  • 2928b1f - Updates @okta/okta-auth-js dependency to version 2. (#263)

@okta/[email protected]

24 Sep 22:52
a5a14d7
Compare
Choose a tag to compare

Bug fixes

  • dbfb7de - Fixes an issue where the library would enter an error state when attempting to renew expired tokens (errorCode: login_required). (#302)

@okta/[email protected]

24 Sep 22:48
a5a14d7
Compare
Choose a tag to compare

Bug fixes

  • 5862e32 - Fixes an issue where the library would enter an error state when attempting to renew expired tokens (errorCode: login_required). (#307)

Others

  • 2928b1f - Updates @okta/okta-auth-js dependency to version 2. (#263)

@okta/[email protected]

07 Aug 22:57
Compare
Choose a tag to compare

Other

  • The supported range of Angular peer dependencies has been upgraded to include versions 4, 5, and 6. At the moment we only test on the latest stable version of Angular, currently version 6.

@okta/[email protected]

27 Jun 22:57
Compare
Choose a tag to compare

Bug Fixes

  • Removed next() in ensureAuthenticated (#224) (592ec42)

Other

@okta/[email protected]

18 May 16:15
Compare
Choose a tag to compare

Bug Fixes

  • 4618c60 - fix[okta-react]: Do proper state setting and rendering for strict mode (#201)
  • c4651f5 - fix[okta-react]: Retain search and hash on ImplicitCallback redirect (#197)

@okta/[email protected]

29 Mar 00:05
76e761b
Compare
Choose a tag to compare

Fixes

Breaking Change

  • 786cd55 - Make login and logout redirect paths configurable (#169)

auth.login() didn't require a path parameter in previous versions of this library. In order to achieve custom redirecting, we've introduced the ability to pass in a custom route that navigates users to on completion.

// Before
auth.login()

// Now
auth.login('/profile')