Skip to content

Commit 9825605

Browse files
committed
Release 1.10.1
1 parent 5f276d8 commit 9825605

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# python3-saml changelog
2+
### 1.10.1 (Jan 27, 2021)
3+
* Fix bug on LogoutRequest class, get_idp_slo_response_url was used instead get_idp_slo_url
4+
25
### 1.10.0 (Jan 14, 2021)
36
* 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
47
* Destination URL Comparison is now case-insensitive for netloc

demo_pyramid/demo_pyramid/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ def init_saml_auth(req):
1515

1616

1717
def prepare_pyramid_request(request):
18-
## Uncomment this portion to set the request.scheme and request.server_port
19-
## based on the supplied `X-Forwarded` headers.
20-
## Useful for running behind reverse proxies or balancers.
18+
# Uncomment this portion to set the request.scheme and request.server_port
19+
# based on the supplied `X-Forwarded` headers.
20+
# Useful for running behind reverse proxies or balancers.
2121
#
2222
# if 'X-Forwarded-Proto' in request.headers:
2323
# request.scheme = request.headers['X-Forwarded-Proto']

setup.py

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

1010
setup(
1111
name='python3-saml',
12-
version='1.10.0',
12+
version='1.10.1',
1313
description='Onelogin Python Toolkit. Add SAML support to your Python software using this library',
1414
classifiers=[
1515
'Development Status :: 5 - Production/Stable',
@@ -21,8 +21,8 @@
2121
'Programming Language :: Python :: 3.5',
2222
'Programming Language :: Python :: 3.6',
2323
'Programming Language :: Python :: 3.7',
24-
'Programming Language :: Python :: 3.8',
25-
'Programming Language :: Python :: 3.9',
24+
'Programming Language :: Python :: 3.8',
25+
'Programming Language :: Python :: 3.9',
2626
],
2727
author='OneLogin',
2828
author_email='[email protected]',

0 commit comments

Comments
 (0)