Skip to content

Releases: ory/fosite

v0.28.1: compose: Expose token entropy setting (#342)

04 Dec 11:23
Compare
Choose a tag to compare
Signed-off-by: nerocrux <nerocrux@gmail.com>

v0.28.0

16 Nov 08:59
fa65408
Compare
Choose a tag to compare
oauth2: Add ability to specify refresh token lifespan (#337)

Set it to `-1` to disable this feature. Defaults to 30 days.

Closes #319

Signed-off-by: arekkas <aeneas@ory.am>

v0.27.4: docs: Fix quickstart (#335)

15 Nov 21:32
Compare
Choose a tag to compare
- replace NewMemoryStore with NewExampleStore
- fix length of signing key
- fix config type

Signed-off-by: Peter Schultz <peter.schultz@classmarkets.com>

v0.27.3: oauth2: Set exp for authorize code issued by hybrid flow (#333)

08 Nov 09:31
Compare
Choose a tag to compare

v0.27.2: pkce: Allow hybrid flows (#328)

08 Nov 09:27
Compare
Choose a tag to compare
Signed-off-by: Adam Shannon <adamkshannon@gmail.com>
Signed-off-by: Wenhao Ni <niwenhao@gmail.com>

v0.27.1: oauth2: Improve refresh security and reliability (#332)

03 Nov 16:08
4e4121b
Compare
Choose a tag to compare
This patch resolves several issues regarding the refresh flow. First,
an issue has been resolved which caused the audience to not be
set in the refreshed access tokens.

Second, scope and audience are validated against the client's
whitelisted values and if the values are no longer allowed,
the grant is canceled.

Closes #331
Closes #325
Closes #324

v0.27.0: oauth2: Update jwt access token interface (#330)

02 Nov 08:22
2da9764
Compare
Choose a tag to compare
The interface needed to change in order to natively handle the audience claim.

Signed-off-by: arekkas <aeneas@ory.am>

v0.26.1: hash: Raise bcrypt cost factor lower bound (#321)

25 Oct 19:59
Compare
Choose a tag to compare
Users of this library can easily create the following:

hasher := fosite.BCrypt{}
hasher.Hash(..)

This is a problem because WorkFactor will default to 0 and x/crypto/bcrypt will default that to 4 (See https://godoc.org/golang.org/x/crypto/bcrypt).

Instead this should be some higher cost factor. Callers who need a lower WorkFactor can still lower the cost, if needed.

Signed-off-by: Adam Shannon <adamkshannon@gmail.com>

v0.26.0: all: Rearrange commits with goreturns

24 Oct 12:18
Compare
Choose a tag to compare
Signed-off-by: aeneasr <aeneas@ory.sh>

v0.25.1: handler/openid: Populate at_hash in explicit/refresh flows (#315)

23 Oct 14:10
Compare
Choose a tag to compare