This repository was archived by the owner on Oct 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change
1
+ Version 3.2.3, 2020-11-16
2
+ -------------------------
3
+
4
+ Hotfix release
5
+
6
+ Bug fixes
7
+ ^^^^^^^^^
8
+
9
+ * Correctly initialize SAML in settings.py
10
+ * Update SAML dependencies to allow POST SingleSignOnService binding
11
+
1
12
Version 3.2.2, 2020-10-22
2
13
-------------------------
3
14
Original file line number Diff line number Diff line change 1
- 3.2.2
1
+ 3.2.3
Original file line number Diff line number Diff line change 502
502
},
503
503
"USE_JWT" : True ,
504
504
"FRONTEND_URL" : settings .get ("SAML_PUBLIC_HOST" ) + "#/" ,
505
- "CERT_FILE" : "" ,
506
- "KEY_FILE" : "" ,
507
- "AUTHN_REQUESTS_SIGNED" : False ,
505
+ "CERT_FILE" : settings .get ("CERT_FILE" , fallback = "" ),
506
+ "KEY_FILE" : settings .get ("KEY_FILE" , fallback = "" ),
507
+ "AUTHN_REQUESTS_SIGNED" : settings .getboolean (
508
+ "AUTHN_REQUESTS_SIGNED" , fallback = False
509
+ ),
508
510
}
509
511
510
512
SILENCED_SYSTEM_CHECKS = ["rest_framework.W001" ]
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ WeasyPrint==52.1
17
17
python-dateutil == 2.8.1
18
18
django-constance [database ]== 2.7.0
19
19
drf-writable-nested == 0.6.2
20
- git+https://github.com/magenta-aps/django-saml2-auth#egg=django-saml2-auth
20
+ git+https://github.com/magenta-aps/django-saml2-auth@2.2.3 #egg=django-saml2-auth
21
21
pysaml2 == 6.3.1
22
22
django-mailer == 2.0.1
23
23
holidays == 0.10.3
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ services:
91
91
- smtp_user=bev:bev
92
92
93
93
idp :
94
- image : magentalabs/simplesamlphp:2.0.0
94
+ image : magentalabs/simplesamlphp:2.0.1
95
95
environment :
96
96
- SIMPLESAMLPHP_BASEURLPATH=http://localhost:8080/simplesaml/
97
97
- SIMPLESAMLPHP_SP_ENTITY_ID=http://localhost:8080
You can’t perform that action at this time.
0 commit comments