Skip to content

Releases: panva/openid-client

v6.1.0

17 Oct 16:17
Compare
Choose a tag to compare

Features

  • add a server metadata helper for checking PKCE support (ca34a91)
  • add JWKS Cache management for use in non-persistent runtimes (cda4b53)

v6.0.0

15 Oct 22:07
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

  • openid-client v6.x is a complete rewrite of the openid-client module, this is the first time since 0.1.0 (8 years ago) that the API has drastically changed. The new module structure and API focuses on three core principles:
  • runtime compatibility (adding support for Deno, Cloudflare Workers, Bun, and other Web API interoperable runtimes)
  • tree-shakeability (bundles should not contain features that don't end up being used)
  • less options (removing support for processing deprecated response types, cutting down on the number of combinations that need to handled)

To that end openid-client@6 no longer supports the full cartesian matrix of response types and response modes, it no longer supports issuing encrypted assertions, decrypting assertions is limited to only a few algorithms, it no longer supports Dynamic Client Registration or Management, and Self-Issued OpenID Provider responses are also not supported.

The new API makes basic setups simple while allowing some degree of complexity where needed.

openid-client@6 is an ESM module using ES2022 syntax and it depends on WebCryptoAPI and Fetch API globals being available in the JS runtime.

openid-client@6 is written in TypeScript and its exported types come with comment annotations.

(Node.js) Versions 20.x and newer have all the necessary globals.

(Node.js) CJS style let client = require('openid-client') is possible in versions where process.features.require_module is true. This is a new Node.js feature slated to be released without a CLI flag in 23.x and 22.x

v5.7.0

09 Sep 12:49
Compare
Choose a tag to compare

Features

Fixes

  • include DPoP Proof "htm" in requestResource if GET is defaulted to (23f7b49)

v5.6.5

07 Mar 12:46
Compare
Choose a tag to compare

Refactor

  • avoid use of prototype attributes in keystore queries (#660) (47a549c)

v5.6.4

06 Jan 10:02
Compare
Choose a tag to compare

Revert "fix: encode client_secret_basic - _ . ! ~ * ' ( ) characters"

This reverts commit 5a2ea80, even though it is the correct implementation some of the most widely used identity providers don't follow the specification.

v5.6.3

05 Jan 14:40
Compare
Choose a tag to compare

Fixes

  • encode client_secret_basic - _ . ! ~ * ' ( ) characters (5a2ea80)

v5.6.2

22 Dec 11:35
Compare
Choose a tag to compare

Refactor

Fixes

  • add explicit Accept-Encoding header to http requests (abcb564), closes #648

v5.6.1

11 Oct 12:17
Compare
Choose a tag to compare

Fixes

  • consistent space encoding in authorizationUrl (#627) (ad68223), closes #626

v5.6.0

03 Oct 15:06
Compare
Choose a tag to compare

Features

v5.5.0

08 Sep 06:41
Compare
Choose a tag to compare

Features

  • DPoP: remove experimental warning, DPoP is now RFC9449 (133a022)