Releases: PlusAuth/oidc-client-js
Releases · PlusAuth/oidc-client-js
v1.4.2
1.4.2 (2024-08-21)
Bug Fixes
- user state is not set on initialize when checkLogin = false (3bcb9a6)
v1.4.1
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
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
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
1.2.5 (2023-05-12)
Bug Fixes
- object merging behaves incorrectly for classes (6a6c09d), closes #14
v1.2.4
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
1.2.3 (2023-05-04)
Bug Fixes
- merge options properly, ignore undefined (cfd0cd8), closes #13
v1.2.2
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
v1.2.1
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
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