Skip to content

Commit fcea290

Browse files
committed
Release 2.9.0
1 parent 4589079 commit fcea290

26 files changed

+36
-26
lines changed

changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# python-saml changelog
2+
### 2.9.0 (Jan 13, 2021)
3+
* Destination URL Comparison is now case-insensitive for netloc
4+
* Support single-label-domains as valid. New security parameter allowSingleLabelDomains
5+
* 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
6+
* [#267](https://github.com/onelogin/python-saml/issues/267) 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
7+
* Add get_friendlyname_attributes support
8+
* 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
9+
* Add python2 deprecation info
10+
* [#269](https://github.com/onelogin/python-saml/issues/269) Add sha256 instead sha1 algorithm for sign/digest as recommended value on documentation and settings
11+
212
### 2.8.0 (NOv 20, 2019)
313
* [#258](https://github.com/onelogin/python-saml/issues/258) Fix failOnAuthnContextMismatch feature
414
* [#250](https://github.com/onelogin/python-saml/issues/250) Allow any number of decimal places for seconds on SAML datetimes

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#! /usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (c) 2010-2018 OneLogin, Inc.
4+
# Copyright (c) 2010-2021 OneLogin, Inc.
55
# MIT License
66

77
from setuptools import setup
88

99

1010
setup(
1111
name='python-saml',
12-
version='2.8.0',
12+
version='2.9.0',
1313
description='Onelogin Python Toolkit. Add SAML support to your Python software using this library',
1414
classifiers=[
1515
'Development Status :: 5 - Production/Stable',

src/onelogin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Copyright (c) 2010-2018 OneLogin, Inc.
4+
Copyright (c) 2010-2021 OneLogin, Inc.
55
MIT License
66
77
Add SAML support to your Python softwares using this library.

src/onelogin/saml2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Copyright (c) 2010-2018 OneLogin, Inc.
4+
Copyright (c) 2010-2021 OneLogin, Inc.
55
MIT License
66
77
Add SAML support to your Python softwares using this library.

src/onelogin/saml2/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_Auth class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
Main class of OneLogin's Python Toolkit.

src/onelogin/saml2/authn_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_Authn_Request class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
AuthNRequest class of OneLogin's Python Toolkit.

src/onelogin/saml2/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_Constants class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
Constants class of OneLogin's Python Toolkit.

src/onelogin/saml2/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_Error class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
Error class of OneLogin's Python Toolkit.

src/onelogin/saml2/idp_metadata_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_IdPMetadataParser class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
Metadata class of OneLogin's Python Toolkit.

src/onelogin/saml2/logout_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
""" OneLogin_Saml2_Logout_Request class
44
5-
Copyright (c) 2010-2018 OneLogin, Inc.
5+
Copyright (c) 2010-2021 OneLogin, Inc.
66
MIT License
77
88
Logout Request class of OneLogin's Python Toolkit.

0 commit comments

Comments
 (0)