Skip to content

Releases: ory/hydra

v1.5.0-beta.5

28 May 13:59
a0fbe80
Compare
Choose a tag to compare
v1.5.0-beta.5 Pre-release
Pre-release

Adds offline_access to the scope list in OpenID Connect Discovery, makes it possible to enforce PKCE for public clients, improves structured logging, and bumps several dependencies.

1.5.0-beta.5 (2020-05-28)

Bug Fixes

  • Add offline_access to discovery supported scoped (#1870) (73464e1), closes #1866
  • Resolve dependency issues and adopt logrusx logger (fdb3231)

Documentation

  • Move sdk to top level directory (#1876) (13ee97d)
  • Update repository templates (04b2c22)
  • Use central banner repo for README (ff0b990)

Features

  • Configure pkce enforcement for public clients (#1874) (d1907d6)

Changelog

576e6f1 autogen(docs): generate and format documentation
f557c9a autogen(docs): generate and format documentation
6706f77 autogen(docs): regenerate and update changelog
a9f770b autogen(docs): regenerate and update changelog
37e7024 autogen(docs): regenerate and update changelog
40b1556 autogen(docs): regenerate and update changelog
33e30df autogen(docs): regenerate and update changelog
21a7f6a autogen(docs): regenerate and update changelog
ddacd11 autogen(openapi): Regenerate swagger spec and internal client
d6cfecd chore: bump deps
a0fbe80 chore: pin v1.5.0-beta.5 release commit
9ca3e37 chore: update docusaurus template (#1878)
f3bdda7 ci: make test independent from Nancy (#1877)
13ee97d docs: move sdk to top level directory (#1876)
04b2c22 docs: update repository templates
ff0b990 docs: use central banner repo for README
d1907d6 feat: configure pkce enforcement for public clients (#1874)
73464e1 fix: add offline_access to discovery supported scoped (#1870)
fdb3231 fix: resolve dependency issues and adopt logrusx logger

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.5
  • docker pull oryd/hydra:v1.5.0
  • docker pull oryd/hydra:v1.5.0-beta.5
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.5-alpine
  • docker pull oryd/hydra:v1.5.0-alpine
  • docker pull oryd/hydra:v1.5.0-beta.5-alpine
  • docker pull oryd/hydra:latest-alpine

v1.5.0-beta.3

23 May 15:52
9f67b8d
Compare
Choose a tag to compare
v1.5.0-beta.3 Pre-release
Pre-release

Bumps a vulnerable dependency.

1.5.0-beta.3 (2020-05-23)

No significant changes have been made for this release.

Changelog

9a37d45 Merge branch 'master' of https://github.com/ory/hydra
8d95942 autogen(docs): generate and format documentation
feff5ea chore: bump gorilla/websocket to 1.4.2
9f67b8d chore: pin v1.5.0-beta.3 release commit

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.5
  • docker pull oryd/hydra:v1.5.0
  • docker pull oryd/hydra:v1.5.0-beta.3
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.5-alpine
  • docker pull oryd/hydra:v1.5.0-alpine
  • docker pull oryd/hydra:v1.5.0-beta.3-alpine
  • docker pull oryd/hydra:latest-alpine

v1.5.0-beta.2

23 May 15:02
5e0d16b
Compare
Choose a tag to compare
v1.5.0-beta.2 Pre-release
Pre-release

Resolves issues found in beta.1.

1.5.0-beta.2 (2020-05-23)

Bug Fixes

  • Add packr2 steps in Makefile (#1858) (08ac026), closes #1857:

    packr2 binary is a needed pre-requisite used to generate .go files that
    pack the static files of the project into bytes that can be bundled.

    Invokes packr2 in install-stable and install targets of Makefile in
    order to generate the .go files that pack the static files into bytes
    that can be bundled.

  • Automatically append multiStatements parameter to mySQL URI (#1835) (849fe62)

  • Consent cockroachdb perfomance issue with zigzag join query (#1790) (615387e), closes #1789 #1755 cockroachdb/cockroach#47179:

    Add an index over subject and client_id in order to avoid the
    (sometimes) underperformant zigzag join query.

  • Use correct path for swagger sdk (21dcdba)

Code Refactoring

Documentation

  • Add details about auth creds in body (#1852) (4409e73)

  • Adding a line about CSRF cookie problems (#1843) (697b0f5):

    Issue I experienced today, running Hydra 1.4.10 in dangerous HTTP mode, the CSRF cookie defaulted to SameSite=None, but the cookie was not marked as secure (which makes sense, as Hydra is running over HTTP), so the cookie gets ignored (and was getting CSRF value not present errors).

    I was able to get around it by either overriding the SameSite setting, or by switching to TLS termination.

  • Clarify consent request list endpoint (#1859) (6dabd9b), closes #1856

  • Correct version tags (#1841) (f200fd4)

  • Update github templates (#1854) (a0c7ba0), closes #1853

  • Update name for post_logout_redirect_url (#1840) (0092a1f), closes #1832

Changelog

668f946 autogen(docs): generate and format documentation
18688c3 autogen(docs): regenerate and update changelog
5a9b7f7 autogen(docs): regenerate and update changelog
012dfb7 autogen(docs): regenerate and update changelog
b8b6290 autogen(docs): regenerate and update changelog
085e42c autogen(docs): regenerate and update changelog
acb2add autogen(docs): regenerate and update changelog
cd8d95b autogen(docs): regenerate and update changelog
8317ac0 autogen(docs): regenerate and update changelog
5661ec3 autogen(docs): regenerate and update changelog
62511be autogen(docs): regenerate and update changelog
a588d86 chore: bump websocket dependency (#1868)
5e0d16b chore: pin v1.5.0-beta.2 release commit
7fb818c chore: readd go.sum
8ab0845 ci: update mailchimp segment
551be36 ci: use swagger ignore flag correctly (#1849)
4409e73 docs: add details about auth creds in body (#1852)
697b0f5 docs: adding a line about CSRF cookie problems (#1843)
6dabd9b docs: clarify consent request list endpoint (#1859)
f200fd4 docs: correct version tags (#1841)
a0c7ba0 docs: update github templates (#1854)
0092a1f docs: update name for post_logout_redirect_url (#1840)
08ac026 fix: add packr2 steps in Makefile (#1858)
849fe62 fix: automatically append multiStatements parameter to mySQL URI (#1835)
615387e fix: consent cockroachdb perfomance issue with zigzag join query (#1790)
21dcdba fix: use correct path for swagger sdk
0bd0b0d refactor: moved AskForConfirmation to ory/x/cmdx (#1848)
a0919a5 refactor: moved TestMigrator to ory/x/popx (#1846)

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.5
  • docker pull oryd/hydra:v1.5.0
  • docker pull oryd/hydra:v1.5.0-beta.2
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.5-alpine
  • docker pull oryd/hydra:v1.5.0-alpine
  • docker pull oryd/hydra:v1.5.0-beta.2-alpine
  • docker pull oryd/hydra:latest-alpine

v1.5.0-beta.1

30 Apr 11:26
64b2e4a
Compare
Choose a tag to compare
v1.5.0-beta.1 Pre-release
Pre-release

This release changes how migrations work internally. It does
not contain breaking changes. Please run hydra migrate sql
once you have backed up the database.

1.5.0-beta.1 (2020-04-30)

Code Refactoring

  • Move migrations to gobuffalo/fizz (#1775) (94057d9):

    This patch deprecates the previous migration system (sql-migrate) in favor of gobuffalo/fizz. No functional changes have been made.

BREAKING CHANGES

  • Please run hydra migrate sql before applying this release.

Changelog

263bda7 autogen(docs): regenerate and update changelog
64b2e4a chore: pin v1.5.0-beta.1 release commit
94057d9 refactor: move migrations to gobuffalo/fizz (#1775)

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.5
  • docker pull oryd/hydra:v1.5.0
  • docker pull oryd/hydra:v1.5.0-beta.1
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.5-alpine
  • docker pull oryd/hydra:v1.5.0-alpine
  • docker pull oryd/hydra:v1.5.0-beta.1-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.10

30 Apr 10:02
d0bbf20
Compare
Choose a tag to compare

This release includes documentation changes and bug fixes.

1.4.10 (2020-04-30)

Bug Fixes

  • Add strategies.access_token to configuration JSON schema (#1830) (f09d539)
  • docs: Prefix href to jaeger tracing ui with http:// (#1829) (0e293fc):

    Before these links would lead relatively to https://www.ory.sh/hydra/docs/127.0.0.1:16686/search

Documentation

Unclassified

Changelog

f99421e Update oauth2.md
1524c72 autogen(docs): generate and format documentation
6d7d1d0 autogen(docs): regenerate and update changelog
eca9b2d autogen(docs): regenerate and update changelog
663472b autogen(docs): regenerate and update changelog
7eae36e autogen(docs): regenerate and update changelog
d0bbf20 chore: pin v1.4.10 release commit
13ebd70 ci: bump orb versions
bc84c01 docs: fix info note
0e293fc fix(docs): prefix href to jaeger tracing ui with http:// (#1829)
f09d539 fix: add strategies.access_token to configuration JSON schema (#1830)

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.10
  • docker pull oryd/hydra:v1.4.10
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.10-alpine
  • docker pull oryd/hydra:v1.4.10-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.9

25 Apr 11:29
eed9d87
Compare
Choose a tag to compare

This is the first release to use our new CI/CD pipeline
which includes auto-generated release announcements
via the newsletter.

If you have feedback on this new process feel free
to start a discussion on Slack!

This release fixes some bugs and improves the docs.

1.4.9 (2020-04-25)

Bug Fixes

Changelog

1bbfb37 autogen(docs): generate and format documentation
eed9d87 chore: pin v1.4.9 release commit
7d56902 fix: update install.sh script (#1828)

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.9
  • docker pull oryd/hydra:v1.4.9
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.9-alpine
  • docker pull oryd/hydra:v1.4.9-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.6

17 Apr 15:47
1f6da12
Compare
Choose a tag to compare

Changelog

a0a5f85 autogen(docs): generate and format documentation
d619b66 autogen(docs): generate and format documentation
4b2af79 docs: update banner img src
14849eb docs: update banner src
dd03c4d docs: update github templates (#1803)
1f6da12 fix: resolve bugs in config schema (#1805)
4892a1f fix: use existing docker versions in quickstart compose

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.6
  • docker pull oryd/hydra:v1.4.6
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.6-alpine
  • docker pull oryd/hydra:v1.4.6-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.5

16 Apr 17:33
cc09151
Compare
Choose a tag to compare

Changelog

706f2c8 autogen(docs): generate and format documentation
021b421 autogen(docs): generate and format documentation
e8a8ffe ci: add packr2 to build chain
cc09151 docs: update github templates (#1802)
b185ae9 fix: add packr files to gitignore
a5ee813 fix: use correct packr paths in gitignore

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.5
  • docker pull oryd/hydra:v1.4.5
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.5-alpine
  • docker pull oryd/hydra:v1.4.5-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.3

16 Apr 15:55
9145e65
Compare
Choose a tag to compare

Changelog

e277d87 autogen(docs): generate and format documentation
9816096 autogen(docs): generate and format documentation
3cc1569 autogen(docs): generate and format documentation
a3d7e6f autogen(docs): generate and format documentation
fd2d1f3 autogen(docs): generate and format documentation
d8e1ec9 autogen(docs): generate and format documentation
00c9c72 autogen(docs): generate and format documentation
1493776 autogen(docs): generate and format documentation
eba82ec autogen(docs): generate and format documentation
0a22762 autogen(docs): generate and format documentation
9b24cea chore: update docusaurus template (#1783)
1b9f5ef chore: update docusaurus template (#1784)
60f864c chore: update docusaurus template (#1785)
d1b74f8 chore: update docusaurus template (#1786)
dcdcc5a chore: update docusaurus template (#1787)
e935921 chore: update docusaurus template (#1794)
99cc42a chore: update docusaurus template (#1796)
6e899a2 docs: Regenerate and update changelog
c3bb3ee docs: Regenerate and update changelog
00dc9cb docs: Regenerate and update changelog
d66a43e docs: Regenerate and update changelog
fb502cd docs: Regenerate and update changelog
3694f3c docs: Updates issue and pull request templates (#1777)
561d500 docs: Updates issue and pull request templates (#1778)
d6c4eea docs: Updates issue and pull request templates (#1780)
ddbad66 docs: update github templates (#1795)
ad9668c docs: update github templates (#1797)
631cefd feat: add a config.schema.json and validate the config with it (#1733)
af18bdb fix(consent): login and consent error handling (#1799)
c0e34be fix: Link to docs at README (#1792)
9145e65 fix: return proper error code in refresh and code flows (#1800)
bfeac3c refactor: move docs to this repository (#1782)

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.3
  • docker pull oryd/hydra:v1.4.3
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.3-alpine
  • docker pull oryd/hydra:v1.4.3-alpine
  • docker pull oryd/hydra:latest-alpine

v1.4.2+oryOS.18

03 Apr 15:16
622b585
Compare
Choose a tag to compare

Changelog

622b585 chore: move to ory analytics fork (#1776)
485961b docs: Regenerate and update changelog
77b82ac docs: Regenerate and update changelog
fab354a docs: add 1.4 section to upgrade guide

Docker images

  • docker pull oryd/hydra:v1
  • docker pull oryd/hydra:v1.4
  • docker pull oryd/hydra:v1.4.2
  • docker pull oryd/hydra:v1.4.2
  • docker pull oryd/hydra:latest
  • docker pull oryd/hydra:v1-alpine
  • docker pull oryd/hydra:v1.4-alpine
  • docker pull oryd/hydra:v1.4.2-alpine
  • docker pull oryd/hydra:v1.4.2-alpine
  • docker pull oryd/hydra:latest-alpine