Skip to content

Commit

Permalink
Release 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed Jan 27, 2021
1 parent 5f276d8 commit 9825605
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# python3-saml changelog
### 1.10.1 (Jan 27, 2021)
* Fix bug on LogoutRequest class, get_idp_slo_response_url was used instead get_idp_slo_url

### 1.10.0 (Jan 14, 2021)
* 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
Expand Down
6 changes: 3 additions & 3 deletions demo_pyramid/demo_pyramid/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def init_saml_auth(req):


def prepare_pyramid_request(request):
## Uncomment this portion to set the request.scheme and request.server_port
## based on the supplied `X-Forwarded` headers.
## Useful for running behind reverse proxies or balancers.
# Uncomment this portion to set the request.scheme and request.server_port
# based on the supplied `X-Forwarded` headers.
# Useful for running behind reverse proxies or balancers.
#
# if 'X-Forwarded-Proto' in request.headers:
# request.scheme = request.headers['X-Forwarded-Proto']
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='python3-saml',
version='1.10.0',
version='1.10.1',
description='Onelogin Python Toolkit. Add SAML support to your Python software using this library',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -21,8 +21,8 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
author='OneLogin',
author_email='[email protected]',
Expand Down

0 comments on commit 9825605

Please sign in to comment.