Releases: dexidp/dex
v0.4.0
This release consists of a bunch of minor bug fixes, and example and doc tweaks.
Features
- None!
Bugs Fixed
- remove outdated godep hack, since we use glide now (#417)
- example app uses passed redirect instead of hard-coded one (#420)
- Fix examples/README.md doc (#421)
- Fix kubernetes example (#422)
- git-version creates valid docker tags if dirty (#425)
- Update to latest go-oidc to fix JWT parse issues (#430)
Misc
v0.3.0
Features
- LDAP connector added (#178)
- Dynamic client registration (#267)
- dexctl can read connectors from stdin (#277)
- Generated API docs added to repo (#285)
- dex now uses sqlite for --no-db mode and tests (does not add general sqlite support) (#304)
- New API endpoint for resending an invite email (#331)
- example app's default flags now work with --no-db mode (#333)
Bugs Fixed
- API status codes now differentiate between unauthenticated and unauthorized requests (#280)
- dex now uses 302 for redirects rather than 307 (#288)
- Emails now use case insensitive comparison (#339)
- When consuming OAuth2 credentials through basic auth, dex now correctly expects URL escaped values (#357)
Migration Note:
Duplicate Emails
The former use of case insensitive comparison for emails may have resulted in duplicate emails in the dex database for some instances.
For this release, dex will refuse to migrate the database if it detects duplicated emails in the authd_user
table. In this case admins must resolve this by editing the table manually, dropping the rows they feel appropriate.
Admins who wish to delete duplicate emails in their database but don’t care which row is preserved can run the following SQL command:
DELETE FROM authd_user
WHERE id IN (SELECT id
FROM (SELECT id,
ROW_NUMBER() OVER (partition BY LOWER(email) ORDER BY id) AS rnum
FROM authd_user) t
WHERE t.rnum > 1);
v0.2.3
This is a minor point release to update dex's automated build process from Go version 1.5.2 to 1.5.3 which fixes a bug that impacts RSA private keys. See the write up by the Go team here.
This release is primarily for users who pull dex from quay.io and updates that image to use dex binaries built with Go 1.5.3.
Features
- Better command line error message when secrets have bad length (#259)
Security fixes
- Update Go version in TravisCI from 1.5.2 to 1.5.3 for tests and Docker image builds (#269).
v0.2.2
This is a minor point release to include a critical bug fix to 0.2.1
Features
Bugs Fixed
v0.2.1
v0.2.0
Features
- Added GitHub and Bitbucket connectors (#190)
- Added ability to invite users (#168, #179)
- Stronger encryption of token-signing keys (AES-GCM replaces AES-CBC) (#167)
- Added ability to disable users (#140)
- Admin API now requires client authorization (#145)
- Added ability to disable user registration (#144)
- Added SMTP support for email configuration (#129)
Bugs Fixed
v0.1.0
This is the first release of dex!