Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update helm chart dex to v0.3.0 #458

Merged
merged 1 commit into from
Jul 25, 2021
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 5, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Update Change
dex (source) minor 0.0.7 -> 0.3.0

Release Notes

dexidp/dex

v0.3.0

Compare Source

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.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

  • Fixed race condition in OIDC client (#​210)
  • Can't create a user with a connector that doesn't exist (#​199)
  • Corrected email validation during registration (#​190, #​188)
  • Fixed registration failures when scope was provided (#​183)
  • Block until connectors are available (#​128)
  • Lots of documentation fixes

v0.1.0

This is the first release of dex!


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

Signed-off-by: Renovate Bot <renovate@whitesourcesoftware.com>
@renovate renovate bot added dependency/minor Minor version changes renovate/helm-release Helm chart version change labels May 5, 2021
@xunholy xunholy merged commit 609da3a into main Jul 25, 2021
@xunholy xunholy deleted the self-hosted/helm-dex-0.x branch July 25, 2021 02:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency/minor Minor version changes renovate/helm-release Helm chart version change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants