From 2644c73cc41774f6dbae16055c2ab0aaa8ff5e66 Mon Sep 17 00:00:00 2001 From: Ivan Kanakarakis Date: Wed, 8 Jan 2025 13:50:41 +0200 Subject: [PATCH] Release v8.5.0 - 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 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 35f7a82c6..1a8457bbb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.4.0 +current_version = 8.5.0 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index ee782f08f..380f8bda0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 8.5.0 (2025-01-08) + +- 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 + + ## 8.4.0 (2023-06-11) - Make cookie parameters configurable diff --git a/setup.py b/setup.py index 51bb389ea..5e802545c 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SATOSA', - version='8.4.0', + version='8.5.0', description='Protocol proxy (SAML/OIDC).', author='DIRG', author_email='satosa-dev@lists.sunet.se',