14
0

- Update to 1.10.1:

- Fix bug on LogoutRequest class, get_idp_slo_response_url was
    used instead get_idp_slo_url
  - Added custom lxml parser based on the one defined at
    xmldefused. Parser will ignore comments and processing
    instructions and by default have deactivated huge_tree, DTD
    and access to external documents
  - Destination URL Comparison is now case-insensitive for netloc
  - Support single-label-domains as valid. New security parameter
    allowSingleLabelDomains
  - Added get_idp_sso_url, get_idp_slo_url and
    get_idp_slo_response_url methods to the Settings class and
    use it in the toolkit
  - #212 Overridability enhancements. Made classes overridable by
    subclassing. Use of classmethods instead staticmethods
  - Add get_friendlyname_attributes support
  - Remove external lib method get_ext_lib_path. Add
    set_cert_path in order to allow set the cert path in a
    different folder than the toolkit
  - Add sha256 instead sha1 algorithm for sign/digest as
    recommended value on documentation and settings
  - #178 Support for adding idp.crt from filesystem
  - Add samlUserdata to demo-flask session
  - Fix autoreloading in demo-tornado

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python3-saml?expand=0&rev=8
This commit is contained in:
2021-07-08 15:27:30 +00:00
committed by Git OBS Bridge
parent cc5c665cea
commit e018cc5f8c
5 changed files with 41 additions and 24 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Thu Jul 8 09:57:53 UTC 2021 - Matej Cepl <mcepl@suse.com>
- Update to 1.10.1:
- Fix bug on LogoutRequest class, get_idp_slo_response_url was
used instead get_idp_slo_url
- Added custom lxml parser based on the one defined at
xmldefused. Parser will ignore comments and processing
instructions and by default have deactivated huge_tree, DTD
and access to external documents
- Destination URL Comparison is now case-insensitive for netloc
- Support single-label-domains as valid. New security parameter
allowSingleLabelDomains
- Added get_idp_sso_url, get_idp_slo_url and
get_idp_slo_response_url methods to the Settings class and
use it in the toolkit
- #212 Overridability enhancements. Made classes overridable by
subclassing. Use of classmethods instead staticmethods
- Add get_friendlyname_attributes support
- Remove external lib method get_ext_lib_path. Add
set_cert_path in order to allow set the cert path in a
different folder than the toolkit
- Add sha256 instead sha1 algorithm for sign/digest as
recommended value on documentation and settings
- #178 Support for adding idp.crt from filesystem
- Add samlUserdata to demo-flask session
- Fix autoreloading in demo-tornado
-------------------------------------------------------------------
Fri Mar 20 10:36:31 UTC 2020 - pgajdos@suse.com