Skip to content

Commit 3ccf9ab

Browse files
committed
Release 1.10.0
1 parent c25df81 commit 3ccf9ab

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# python3-saml changelog
2+
### 1.10.0 (Jan 14, 2021)
3+
* 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
4+
* Destination URL Comparison is now case-insensitive for netloc
5+
* Support single-label-domains as valid. New security parameter allowSingleLabelDomains
6+
* 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
7+
* [#212](https://github.com/onelogin/python3-saml/pull/212) Overridability enhancements. Made classes overridable by subclassing. Use of classmethods instead staticmethods
8+
* Add get_friendlyname_attributes support
9+
* 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
10+
* Add sha256 instead sha1 algorithm for sign/digest as recommended value on documentation and settings
11+
* [#178](https://github.com/onelogin/python3-saml/pull/178) Support for adding idp.crt from filesystem
12+
* Add samlUserdata to demo-flask session
13+
* Fix autoreloading in demo-tornado
14+
215
### 1.9.0 (Nov 20, 2019)
316
* Allow any number of decimal places for seconds on SAML datetimes
417
* Fix failOnAuthnContextMismatch code

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='python3-saml',
12-
version='1.9.0',
12+
version='1.10.0',
1313
description='Onelogin Python Toolkit. Add SAML support to your Python software using this library',
1414
classifiers=[
1515
'Development Status :: 5 - Production/Stable',
@@ -38,7 +38,7 @@
3838
install_requires=[
3939
'isodate>=0.5.0',
4040
'lxml>=3.3.5',
41-
'xmlsec>=0.6.0',
41+
'xmlsec>=1.0.5',
4242
'defusedxml==0.6.0'
4343
],
4444
dependency_links=['http://github.com/mehcode/python-xmlsec/tarball/master'],

0 commit comments

Comments
 (0)