diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e1fc6a06a..c1fc9a358 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.2.0 +current_version = 8.3.0 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 620912c35..2824cc0a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 8.3.0 (2023-06-08) + +- FilterAttributeValues plugin: add new filter types shibmdscope_match_scope and shibmdscope_match_value; add tests +- FilterAttributeValues plugin: add example rules for saml-subject-id and saml-pairwise-id +- FilterAttributeValues plugin: add example rules enforcing controlled vocabulary for eduPersonAffiliation and eduPersonScopedAffiliation attributes +- DecideBackendByRequester plugin: add default_backend setting; add tests; minor fixes +- opend_connect backend: use PyoidcSettings class to configure pyoidc/oic based clients +- ping frontend: minor adjustments and fixes for interface compliance +- tests: update code to use matchers API to mock responses +- examples: improve configuration readability of the primary-identifier plugin +- examples: minor fixes and enhancements for ContactPerson examples for SAML backend and frontend + + ## 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 diff --git a/setup.py b/setup.py index 727e469ec..b01ef2dc1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='SATOSA', - version='8.2.0', + version='8.3.0', description='Protocol proxy (SAML/OIDC).', author='DIRG', author_email='satosa-dev@lists.sunet.se',