File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changes
2
2
=======
3
3
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
+
4
9
0.20.0 (2020-06-29)
10
+ -------------------
5
11
- Bugfix: Always save newly created users when ATTRIBUTE_MAPPING is missing in the config
6
12
- pySAML2 v5.3.0
7
13
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def read(*rnames):
24
24
25
25
setup (
26
26
name = 'djangosaml2' ,
27
- version = '0.20 .0' ,
27
+ version = '0.30 .0' ,
28
28
description = 'pysaml2 integration for Django' ,
29
29
long_description = read ('README.rst' ),
30
30
classifiers = [
Original file line number Diff line number Diff line change 26
26
27
27
INSTALLED_APPS = (
28
28
'testprofiles' ,
29
-
29
+
30
30
'django.contrib.admin' ,
31
31
'django.contrib.auth' ,
32
32
'django.contrib.contenttypes' ,
45
45
'django.contrib.auth.middleware.AuthenticationMiddleware' ,
46
46
'django.contrib.messages.middleware.MessageMiddleware' ,
47
47
'django.middleware.clickjacking.XFrameOptionsMiddleware' ,
48
+
49
+ 'djangosaml2.middleware.SamlSessionMiddleware'
48
50
)
49
51
50
52
ROOT_URLCONF = 'testprofiles.urls'
You can’t perform that action at this time.
0 commit comments