From 103f477caf46d25fa5831fecc51db81f3f6b4d18 Mon Sep 17 00:00:00 2001 From: Ivan Kanakarakis Date: Thu, 17 Nov 2022 19:55:49 +0200 Subject: [PATCH] Release v.8.2.0 Signed-off-by: Ivan Kanakarakis --- .bumpversion.cfg | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ setup.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bb573d655..e1fc6a06a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.1.1 +current_version = 8.2.0 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 264005e65..620912c35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 8.2.0 (2022-11-17) + +- attribute_authorization: new configuration options `force_attributes_presence_on_allow` and `force_attributes_presence_on_deny` to enforce attribute presence enforcement +- saml2 backend: new configuration option `acs_selection_strategy` to support different ways of selecting an ACS URL +- saml2 backend: new configuration option `is_passive` to set whether the discovery service is allowed to visibly interact with the user agent. +- orcid backend: make the name claim optional +- apple backend: retrieve the name of user when available. +- openid_connect frontend: new configuration option `sub_mirror_subject` the set sub to mirror the subject identifier as received in the backend. +- openid_connect frontend: check for empty `db_uri` before using it with a storage backend +- attribute_generation: try to render mustach tempate only on string values +- logging: move cookie state log to the debug level +- chore: fix non-formatting flake8 changes +- tests: remove dependency on actual MongoDB instance +- build: update links for the Docker image on Docker Hub +- docs: properly document the `name_id_format` and `name_id_policy_format` options +- docs attribute_generation: correct example configuration +- docs: fix mailing list link. +- docs: fix typos and grammar + + ## 8.1.1 (2022-06-23) - OIDC frontend: Set minimum pyop version to v3.4.0 to ensure the needed methods are available diff --git a/setup.py b/setup.py index 4e4f9f0d1..727e469ec 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SATOSA', - version='8.1.1', + version='8.2.0', description='Protocol proxy (SAML/OIDC).', author='DIRG', author_email='satosa-dev@lists.sunet.se',