Skip to content

Releases: panva/openid-client

v2.2.0

04 Jul 20:34
Compare
Choose a tag to compare

v2.1.1

28 Jun 18:48
Compare
Choose a tag to compare
  • fixed handling of bearer endpoint responses with www-authenticate headers only. (#102)

v2.1.0

31 May 10:07
Compare
Choose a tag to compare
  • node-jose dependency bumped to major ^1.0.0 - fixes A\d{3}GCMKW symmetrical encryption support
  • dependency updates

v2.0.4

25 May 12:30
Compare
Choose a tag to compare
  • fixed circular when serializing OpenIdConnectError
  • base64url dependency update

v2.0.3

15 May 20:52
Compare
Choose a tag to compare
  • base64url dependency replaced with base64-url

v2.0.2

10 May 12:26
Compare
Choose a tag to compare

only dependency tree updates

v2.0.1

26 Apr 15:19
Compare
Choose a tag to compare
  • fixed client_secret_basic requiring the username and password tokens to be x-www-form-urlencoded
    according to https://tools.ietf.org/html/rfc6749#section-2.3.1
    • NOTE: Although technically a fix, this is a breaking change when used with providers that also
      don't currently follow the standard. A proper way of submitting client_id and client_secret using client_secret_basic is Authorization: base64(formEncode(client_id):formEncode(client_secret)). If your client_id and client_secret does contain special characters that need encoding this does not affect you. If it does, try using client_secret_post instead.

v2.0.0

12 Apr 14:07
Compare
Choose a tag to compare
  • dropped support for Node.js v4.x due to its End-of-Life on 2018-04-30
  • removed deprecated client#grantAuth
  • removed deprecated way of passing keystore directly to Client#register
  • removed support for passing client to OpenIDConnectStrategy as single argument, use new Strategy({ client }) instead of new Strategy(client).
  • fixed a bug requiring nonce to be passed for response_type=none

v1.20.0

13 Mar 17:21
Compare
Choose a tag to compare
  • added documentation for OpenIdConnectError
  • added error_uri from IdP responses to OpenIdConnectError instances
  • fixed OpenIdConnectError messages to include error_description

v1.19.5

10 Mar 10:51
Compare
Choose a tag to compare
  • Issuer.discover now parses the provided URI instead of just inspecting the string. #80