-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- openid connect backend: Add OAuth2/OIDC backend based on idpy-oidc (new extra requirement `idpy_oidc_backend` to pull the library dependecy) - apple backend: Rework the Apple backend to be based on the generic OpenIDConnectBackend and fix the userinfo loading - Restructure fatal error messages to redirect to generic error page when an errors occur - Allow multiple values for the "resource" query param - Fix checks for missing state from cookie and missing relay state - Allow loading of tuples from YAML configs - docs: minor fixes Signed-off-by: Ivan Kanakarakis <[email protected]>
- Loading branch information
1 parent
75c325b
commit 2644c73
Showing
3 changed files
with
13 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 8.4.0 | ||
current_version = 8.5.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
setup( | ||
name='SATOSA', | ||
version='8.4.0', | ||
version='8.5.0', | ||
description='Protocol proxy (SAML/OIDC).', | ||
author='DIRG', | ||
author_email='[email protected]', | ||
|