Skip to content

Commit 2513641

Browse files
committed
v0.30.0
1 parent 3a54041 commit 2513641

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
Changes
22
=======
33

4+
0.30.0 (2020-07-30)
5+
-------------------
6+
- SameSite cookie handled in a separate context (request.saml_session)
7+
- local logout happens even if SAML2 SLO have troubles
8+
49
0.20.0 (2020-06-29)
10+
-------------------
511
- Bugfix: Always save newly created users when ATTRIBUTE_MAPPING is missing in the config
612
- pySAML2 v5.3.0
713

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*rnames):
2424

2525
setup(
2626
name='djangosaml2',
27-
version='0.20.0',
27+
version='0.30.0',
2828
description='pysaml2 integration for Django',
2929
long_description=read('README.rst'),
3030
classifiers=[

tests/settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
INSTALLED_APPS = (
2828
'testprofiles',
29-
29+
3030
'django.contrib.admin',
3131
'django.contrib.auth',
3232
'django.contrib.contenttypes',
@@ -45,6 +45,8 @@
4545
'django.contrib.auth.middleware.AuthenticationMiddleware',
4646
'django.contrib.messages.middleware.MessageMiddleware',
4747
'django.middleware.clickjacking.XFrameOptionsMiddleware',
48+
49+
'djangosaml2.middleware.SamlSessionMiddleware'
4850
)
4951

5052
ROOT_URLCONF = 'testprofiles.urls'

0 commit comments

Comments
 (0)