Skip to content

Commit

Permalink
chore: update draft versions and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Nov 22, 2019
1 parent caa5b5c commit 8778cdb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The following draft specifications are implemented by oidc-provider.
- [OAuth 2.0 JWT Secured Authorization Request (JAR)][jar]
- [OAuth 2.0 Mutual TLS Client Authentication and Certificate Bound Access Tokens (MTLS) - draft 17][mtls]
- [OAuth 2.0 Pushed Authorization Requests - draft 01][par]
- [OAuth 2.0 Resource Indicators - draft 07][resource-indicators]
- [OAuth 2.0 Resource Indicators - draft 08][resource-indicators]
- [OAuth 2.0 Web Message Response Mode - individual draft 00][wmrm]
- [OpenID Connect Back-Channel Logout 1.0 - draft 04][backchannel-logout]
- [OpenID Connect Front-Channel Logout 1.0 - draft 02][frontchannel-logout]
Expand Down Expand Up @@ -200,7 +200,7 @@ See the list of available emitted [event names](/docs/events.md) and their descr
[bug]: https://github.com/panva/node-oidc-provider/issues/new?template=bug-report.md
[mtls]: https://tools.ietf.org/html/draft-ietf-oauth-mtls-17
[dpop]: https://tools.ietf.org/html/draft-fett-oauth-dpop-03
[resource-indicators]: https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-07
[resource-indicators]: https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-08
[jarm]: https://openid.net/specs/openid-financial-api-jarm-wd-02.html
[jwt-at]: https://tools.ietf.org/html/draft-ietf-oauth-access-token-jwt-02
[support-sponsor]: https://github.com/sponsors/panva
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,7 @@ true

### features.resourceIndicators

[draft-ietf-oauth-resource-indicators-07](https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-07) - Resource Indicators for OAuth 2.0
[draft-ietf-oauth-resource-indicators-08](https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-08) - Resource Indicators for OAuth 2.0

Enables the use of `resource` parameter for the authorization and token endpoints. In order for the feature to be any useful you must also use the `audiences` function to validate the resource(s) and transform it to the Access Token audience.

Expand Down
2 changes: 1 addition & 1 deletion lib/helpers/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ const DEFAULTS = {
/*
* features.resourceIndicators
*
* title: [draft-ietf-oauth-resource-indicators-07](https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-07) - Resource Indicators for OAuth 2.0
* title: [draft-ietf-oauth-resource-indicators-08](https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-08) - Resource Indicators for OAuth 2.0
*
* description: Enables the use of `resource` parameter for the authorization and token
* endpoints. In order for the feature to be any useful you must also use the `audiences`
Expand Down
6 changes: 3 additions & 3 deletions lib/helpers/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ const DRAFTS = new Map(Object.entries({
version: [0, 'individual-draft-01'],
},
resourceIndicators: {
name: 'Resource Indicators for OAuth 2.0 - draft 07',
name: 'Resource Indicators for OAuth 2.0 - draft 08',
type: 'IETF OAuth Working Group draft',
url: 'https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-07',
version: [2, 3, 4, 5, 6, 7, 'draft-07'],
url: 'https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-08',
version: [2, 3, 4, 5, 6, 7, 'draft-07', 'draft-08'],
},
sessionManagement: {
name: 'OpenID Connect Session Management 1.0 - draft 28',
Expand Down

0 comments on commit 8778cdb

Please sign in to comment.