Skip to content

Commit 0b3dc4a

Browse files
committed
v1.1.2 - fix: idp hinting
1 parent aa3a6ab commit 0b3dc4a

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGES

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Changes
22
=======
33

4+
v.1.1.2 (2021-04-11)
5+
--------------------
6+
7+
- fix: idp hinting invalid import
8+
9+
10+
v.1.1.1 (2021-04-05)
11+
--------------------
12+
13+
- Read the docs
14+
- Information exposure mitigation on SSO login view
15+
16+
17+
v.1.1.0 (2021-04-01)
18+
--------------------
19+
20+
- feature: Idp Hinting
21+
- params: SAML_DEFAULT_BINDING for SSO
22+
- code cleanup in SSO
23+
24+
425
v.1.0.5 (2021-03-05)
526
--------------------
627
- code linting, cleanup. Not enough but better than before

djangosaml2/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from django.conf import settings
2222
from django.core.exceptions import ImproperlyConfigured
23-
from django.http import HttpResponseRedirect
23+
from django.http import HttpResponse, HttpResponseRedirect
2424
from django.utils.http import is_safe_url
2525
from saml2.config import SPConfig
2626
from saml2.s_utils import UnknownSystemEntity

setup.py

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

2525
setup(
2626
name='djangosaml2',
27-
version='1.1.1',
27+
version='1.1.2',
2828
description='pysaml2 integration for Django',
2929
long_description=read('README.md'),
3030
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)