Skip to content

Commit

Permalink
autogen(docs): regenerate and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 28, 2020
1 parent 47f2a31 commit c747e64
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Unreleased (2020-10-25)](#unreleased-2020-10-25)
- [Unreleased (2020-10-28)](#unreleased-2020-10-28)
- [Bug Fixes](#bug-fixes)
- [Documentation](#documentation)
- [Features](#features)
Expand Down Expand Up @@ -322,12 +322,13 @@

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

# [Unreleased](https://github.com/ory/fosite/compare/v0.35.1...5f2cae3eabb83da898e1b5515176e65dda4da862) (2020-10-25)
# [Unreleased](https://github.com/ory/fosite/compare/v0.35.1...47f2a31fbed137b58e4866f78ec8b9f591134f98) (2020-10-28)


### Bug Fixes

* Always return non-error response for inactive tokens ([#517](https://github.com/ory/fosite/issues/517)) ([5f2cae3](https://github.com/ory/fosite/commit/5f2cae3eabb83da898e1b5515176e65dda4da862))
* Reset jti and hash ID token claims on refresh ([#523](https://github.com/ory/fosite/issues/523)) ([ce2de73](https://github.com/ory/fosite/commit/ce2de73ff979b02be32d850c1c695067a35576c7))


### Documentation
Expand All @@ -338,6 +339,15 @@
### Features

* Improve error messages ([#513](https://github.com/ory/fosite/issues/513)) ([fcac5a6](https://github.com/ory/fosite/commit/fcac5a6457c92d1eb1a389192cd0c7fb590ab8b3))
* Support passing repeated audience parameter in URL query ([#518](https://github.com/ory/fosite/issues/518)) ([47f2a31](https://github.com/ory/fosite/commit/47f2a31fbed137b58e4866f78ec8b9f591134f98)), closes [#504](https://github.com/ory/fosite/issues/504):

> Added `GetAudiences` helper function which tries to have current behavior and also support multiple/repeated audience parameters. If there are parameter is repeated, then it is not split by space. If there is only one then it is split by space. I think this is the best balance between standard/backwards behavior and allowing repeated parameter and allowing also URIs/audiences with spaces in them (which we probably all agree is probably not something anyone should be doing).
>
> Also added `ExactAudienceMatchingStrategy` which is slightly more suitable to use for audiences which are not URIs. In [OIDC spec](https://openid.net/specs/openid-connect-core-1_0.html) audience is described as:
>
> > Audience(s) that this ID Token is intended for. It MUST contain the OAuth 2.0 client_id of the Relying Party as an audience value. It MAY also contain identifiers for other audiences. In the general case, the aud value is an array of case sensitive strings. In the common special case when there is one audience, the aud value MAY be a single case sensitive string.
>
> `client_id` is generally not an URI, but some UUID or some other random string.


Expand Down

0 comments on commit c747e64

Please sign in to comment.