-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: configure upstream IdP client_auth_method (#659)
* add database migration to persist `client_auth_method` * update API types + AuthProvider entity and handle upstream payload properly * bump nightly version * include new values in the UI * write changelog * always add `client_id` to the upstream `/token` request body, no matter what * additional endpoint validation on PUT provider for better UX * fix: unable to remove root PEM for upstream IdP * bump nightly version * add PR link to changelog
- Loading branch information
Showing
11 changed files
with
240 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ members = ["src/*"] | |
exclude = ["rauthy-client"] | ||
|
||
[workspace.package] | ||
version = "0.27.2" | ||
version = "0.27.3-20241218-1" | ||
edition = "2021" | ||
authors = ["Sebastian Dobe <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE auth_providers | ||
ADD client_secret_basic INTEGER DEFAULT 1 NOT NULL; | ||
ALTER TABLE auth_providers | ||
ADD client_secret_post INTEGER DEFAULT 1 NOT NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ALTER TABLE auth_providers | ||
ADD client_secret_basic BOOLEAN DEFAULT true NOT NULL; | ||
ALTER TABLE auth_providers | ||
ADD client_secret_post BOOLEAN DEFAULT true NOT NULL; |
Oops, something went wrong.