From 0b3dc4aefcc0a8ca8e596fb15da354ff25b41761 Mon Sep 17 00:00:00 2001 From: peppelinux Date: Sun, 11 Apr 2021 17:03:09 +0200 Subject: [PATCH] v1.1.2 - fix: idp hinting --- CHANGES | 21 +++++++++++++++++++++ djangosaml2/utils.py | 2 +- setup.py | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 088ce6d1..cff20f41 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,27 @@ Changes ======= +v.1.1.2 (2021-04-11) +-------------------- + +- fix: idp hinting invalid import + + +v.1.1.1 (2021-04-05) +-------------------- + +- Read the docs +- Information exposure mitigation on SSO login view + + +v.1.1.0 (2021-04-01) +-------------------- + +- feature: Idp Hinting +- params: SAML_DEFAULT_BINDING for SSO +- code cleanup in SSO + + v.1.0.5 (2021-03-05) -------------------- - code linting, cleanup. Not enough but better than before diff --git a/djangosaml2/utils.py b/djangosaml2/utils.py index cc041855..480f5284 100644 --- a/djangosaml2/utils.py +++ b/djangosaml2/utils.py @@ -20,7 +20,7 @@ from django.conf import settings from django.core.exceptions import ImproperlyConfigured -from django.http import HttpResponseRedirect +from django.http import HttpResponse, HttpResponseRedirect from django.utils.http import is_safe_url from saml2.config import SPConfig from saml2.s_utils import UnknownSystemEntity diff --git a/setup.py b/setup.py index e784cf87..62b81e56 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read(*rnames): setup( name='djangosaml2', - version='1.1.1', + version='1.1.2', description='pysaml2 integration for Django', long_description=read('README.md'), long_description_content_type='text/markdown',