Skip to content

Commit

Permalink
v0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux committed Jul 30, 2020
1 parent 3a54041 commit 2513641
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
Changes
=======

0.30.0 (2020-07-30)
-------------------
- SameSite cookie handled in a separate context (request.saml_session)
- local logout happens even if SAML2 SLO have troubles

0.20.0 (2020-06-29)
-------------------
- Bugfix: Always save newly created users when ATTRIBUTE_MAPPING is missing in the config
- pySAML2 v5.3.0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*rnames):

setup(
name='djangosaml2',
version='0.20.0',
version='0.30.0',
description='pysaml2 integration for Django',
long_description=read('README.rst'),
classifiers=[
Expand Down
4 changes: 3 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

INSTALLED_APPS = (
'testprofiles',

'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
Expand All @@ -45,6 +45,8 @@
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',

'djangosaml2.middleware.SamlSessionMiddleware'
)

ROOT_URLCONF = 'testprofiles.urls'
Expand Down

0 comments on commit 2513641

Please sign in to comment.