Skip to content

v3.6.0-alpha.5

Pre-release
Pre-release
Compare
Choose a tag to compare
@jasonraimondi jasonraimondi released this 12 Aug 01:38
· 19 commits to main since this release
ddf3d16

What's Changed

  • feat: add support for RFC7662 "OAuth 2.0 Token Introspection"
  • add configuration options to control client credentials authentication for /introspect and /revoke endpoints.
new AuthorizationServer({
  authenticateIntrospect: false, // Default: false (v3.x), true (v4.x)
  authenticateRevoke: false,     // Default: false (v3.x), true (v4.x)
})
  • Default false values maintain v3.x compatibility, and you must implement your own authentication.
  • Setting to true enables client credentials authentication (v4.x behavior).

Important Notes

  • If set to false, you must implement your own authentication:

Full Changelog: v3.6.0-alpha.1...v3.6.0-alpha.5