Skip to content

Releases: ory/hydra

0.6.6

04 Dec 09:15
Compare
Choose a tag to compare
0.6.6 Pre-release
Pre-release
v0.6.6

cmd/connect: allow passing values as flags

0.6.5

28 Nov 12:26
Compare
Choose a tag to compare
0.6.5 Pre-release
Pre-release

Redis backend support by community member @115100

0.6.4

22 Nov 11:39
Compare
Choose a tag to compare
0.6.4 Pre-release
Pre-release

Resolves issues with token revokation and the SQL store and introduces hydra token revoke <token>

0.6.3

17 Nov 16:34
Compare
Choose a tag to compare
0.6.3 Pre-release
Pre-release

This release resolves a critical vulnerability. Please upgrade as soon as possible, no bc breaks are to be expected if you upgrade from another 0.6.x version.

0.6.2

07 Nov 13:10
Compare
Choose a tag to compare
0.6.2 Pre-release
Pre-release
client/mysql: fix missing client_name (#303)

Signed-off-by: John Wu <[email protected]>

0.6.1

26 Oct 09:06
Compare
Choose a tag to compare
0.6.1 Pre-release
Pre-release
0.6.1 (#301)

* manager/mysql: MySQL DB not creating on start – JSON column types only supported from MySQL 5.7 and onwards - closes #299
* docs: improve gitbook front page

0.6.0

25 Oct 10:06
Compare
Choose a tag to compare
0.6.0 Pre-release
Pre-release

This release focused on various parts:

  • Improve the documentation
  • Switch from RethinkDB to PostgreSQL/MySQL
  • Improves test coverage
  • Remove APIs that do not belong in Hydra (connection API)
  • Token Revokation and Token Introspection

With this, breaking changes have been introduced as well:

  • RethinkDB adapters are passing tests but will not get active maintenance by the ORY team
  • The oauth2/introspect endpoint was changed to meet RFC 7662
  • The /warden/authorized/token endpoint is gone, use /oauth2/introspect instead. The Hydra SDK changed too in this regard.

0.5.8

06 Oct 12:11
Compare
Choose a tag to compare
0.5.8 Pre-release
Pre-release

This release resolves issues with refresh tokens.

0.5.7

04 Oct 11:56
Compare
Choose a tag to compare
0.5.7 Pre-release
Pre-release

This release generates the default JSON Web Keys with an additional "use": "sig" parameter. If you need this, you can update your existing installation by deleting the old keys and restarting hydra.

0.5.6

03 Oct 10:03
Compare
Choose a tag to compare
0.5.6 Pre-release
Pre-release
oauth2: scopes should be separated by %20 and not +, to ensure javasc…

…ript compatibility (#278)

* herodot: improve error logging
* oauth2: scopes should be separated by %20 and not +, to ensure javascript compatibility - closes #277