Skip to content

Releases: PlusAuth/oidc-client-js

v1.5.0

17 Jan 14:53
Compare
Choose a tag to compare

1.5.0 (2025-01-17)

Features

  • allow the library to be used in non-secure contexts (b384d5b)

v1.4.2

12 Nov 10:59
Compare
Choose a tag to compare

1.4.2 (2024-08-21)

Bug Fixes

  • user state is not set on initialize when checkLogin = false (3bcb9a6)

v1.4.1

17 Oct 10:15
Compare
Choose a tag to compare

1.4.1 (2023-10-17)

Bug Fixes

  • access token renewal wont start on inital load (c5f09f4)
  • synchronizer events not fired when localStorage is disabled (0cfae29)

v1.4.0

08 Sep 18:02
Compare
Choose a tag to compare

1.4.0 (2023-09-08)

Features

  • options for providing custom state and nonce length (24970cc)

Introduces stateLength and nonceLength parameters to provide custom lengths for state and nonce which are defaults to 10
Example:

new OIDCClient({
    stateLength: 16,
    nonceLength: 16
})

v1.3.0

06 Sep 09:00
Compare
Choose a tag to compare

1.3.0 (2023-09-06)

Bug Fixes

  • incorrect getter for expires_in (d427e22), closes #17

Features

  • specific error when local state does not exist (b931a54)

v1.2.5

12 May 15:24
Compare
Choose a tag to compare

1.2.5 (2023-05-12)

Bug Fixes

  • object merging behaves incorrectly for classes (6a6c09d), closes #14

v1.2.4

06 May 08:23
Compare
Choose a tag to compare

1.2.4 (2023-05-06)

Bug Fixes

  • silent login options are not using client defaults. regression in v1.2.3 (d00e0f2)

v1.2.3

04 May 15:00
Compare
Choose a tag to compare

1.2.3 (2023-05-04)

Bug Fixes

  • merge options properly, ignore undefined (cfd0cd8), closes #13

v1.2.2

09 Apr 15:25
Compare
Choose a tag to compare

1.2.2 (2023-04-09)

Refactor

  • Removed isomorphic-unfetch dependency as fetch is supported by modern browsers and node@18. If your working environment does not have fetch you can include it by using whatwg-fetch or other polyfills.

Chore

  • Upgraded dependencies

v1.2.1

27 Mar 19:02
Compare
Choose a tag to compare

1.2.1 (2023-03-27)

Bug Fixes

  • silent renew error not emitted on initialization (1ddc260)
  • client secret missing on code exchange without pkce (d8185ab)