-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ivan Kanakarakis <[email protected]>
- Loading branch information
1 parent
17efa48
commit e879882
Showing
3 changed files
with
49 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 = 3.4.8 | ||
current_version = 4.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changelog | ||
|
||
## 4.0.0 (2019-07-09) | ||
|
||
- Remove the warning filter; users must set the filter themselves | ||
- Refactor internal data representation | ||
- Deprecate satosa.internal_data module | ||
- Use satosa.internal module | ||
- Store the NameID value as satosa.internal.InternalData.subject_id | ||
- Store the NameID nameid-format as satosa.internal.InternalData.subject_type | ||
- Deprecate hash configuration option set in internal attributes | ||
- Deprecate USER_ID_HASH_SALT configuration option | ||
- Remove attribute hashing | ||
- Deprecate UserIdHasher classes | ||
- Deprecate UserIdHashType enum | ||
- Support SAML NameID nameid-format emailAddress and unspecified | ||
- Accept authn response with no NameID element | ||
- Reset state after cookie decryption failure | ||
- Add API to load data in Context object | ||
- KEY_BACKEND_METADATA_STORE | ||
- KEY_TARGET_ENTITYID | ||
- KEY_FORCE_AUTHN | ||
- KEY_MEMORIZED_IDP | ||
- Add initial eIDAS support | ||
- Support memoization of IdP selection when using MDQ | ||
- plugins: Warn when AssertionConsumerService binding is HTTP-Redirect in the saml2 backend | ||
- plugins: Add SAMLUnsolicitedFrontend frontend | ||
- plugins: Add SAMLVirtualCoFrontend frontend | ||
- plugins: Add extra_scopes configuration to support multiple scopes | ||
- plugins: Use the latest pyop version | ||
- plugins: Add primary identifier micro-service | ||
- plugins: Misc fixes and improvents for LDAP attribute store micro-service | ||
- plugins: Add verify_ssl option to OIDC backend | ||
- plugins: Add hasher micro-service | ||
- plugins: Add support in frontend for common domain cookie | ||
- plugins: Add Ping frontend | ||
- plugins: Fixes for the account linking micro-service | ||
- tests: Misc improvements | ||
- tests: Use latest pytest | ||
- build: Set supported python versions to py35 py36 py37 and pypy3 | ||
- Dropped support for py34 | ||
- build: Set minimum supported pysaml2 version | ||
- docs: Instructions to use with Apache and mod_wsgi | ||
- docs: Add satosa-users mailing list information | ||
- docs: Add ui_info in example configs | ||
- docs: Add GÉANT contribution notice | ||
- docs: Misc typos and improvements |
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='3.4.8', | ||
version='4.0.0', | ||
description='Protocol proxy (SAML/OIDC).', | ||
author='DIRG', | ||
author_email='[email protected]', | ||
|