Skip to content

Releases: PlusAuth/oidc-client-js

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)

v1.2.0

14 Mar 17:55
Compare
Choose a tag to compare

1.2.0 (2023-03-14)

Bug Fixes

  • cannot override response mode and prompt for silent login (15c404e), closes #9
  • cannot override response mode for popup login (89359d2), closes #10
  • cannot resolve state if web message does not contain it (a9f899f)

Features

  • add getter for expires_at (9c8718e), closes #7

v1.1.2

24 Feb 11:49
Compare
Choose a tag to compare

1.1.2 (2023-02-24)

Bug Fixes

  • response_mode param not included in auth request (d3767dc), closes #6