| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- Changes
- =======
- 0.13.0 (2015-02-12)
- -------------------
- - Django 1.7 support. Thanks to Kamei Toshimitsu
- 0.12.0 (2014-11-18)
- -------------------
- - Pysaml2 2.2.0 support. Thanks to Erick Tryzelaar
- 0.11.0 (2014-06-15)
- -------------------
- - Django 1.5 custom user model support. Thanks to Jos van Velzen
- - Django 1.5 compatibility url template tag. Thanks to bula
- - Support Django 1.5 and 1.6. Thanks to David Evans and Justin Quick
- 0.10.0 (2013-05-05)
- -------------------
- - Check that RelayState is not empty before redirecting into a loop. Thanks
- to Sam Bull for reporting this issue.
- - In the global logout process, when the session is lost, report an error
- message to the user and perform a local logout.
- 0.9.2 (2013-04-19)
- ------------------
- - Upgrade to pysaml2-0.4.3.
- 0.9.1 (2013-01-29)
- ------------------
- - Add a method to the authentication backend so it is possible
- to customize the authorization based on SAML attributes.
- 0.9.0 (2012-10-30)
- ------------------
- - Add a signal for modifying the user just before saving it on
- the update_user method of the authentication backend.
- 0.8.1 (2012-10-29)
- ------------------
- - Trim the SAML attributes before setting them to the Django objects
- if they are too long. This fixes a crash with MySQL.
- 0.8.0 (2012-10-25)
- ------------------
- - Allow to use different attributes besides 'username' to look for
- existing users.
- 0.7.0 (2012-10-19)
- ------------------
- - Add a setting to decide if the user should be redirected to the
- next view or shown an authorization error when the user tries to
- login twice.
- 0.6.1 (2012-09-03)
- ------------------
- - Remove Django from our dependencies
- - Restore support for Django 1.3
- 0.6.0 (2012-08-29)
- ------------------
- - Add tox support configured to run the tests with Python 2.6 and 2.7
- - Fix some dependencies and sdist generation. Lorenzo Gil
- - Allow defining a logout redirect url in the settings. Lorenzo Gil
- - Add some logging calls to improve debugging. Lorenzo Gil
- - Add support for custom conf loading function. Sam Bull.
- - Make the tests more robust and easier to run when djangosaml2 is
- included in a Django project. Sam Bull.
- - Make sure the profile is not None before saving it. Bug reported by
- Leif Johansson
- 0.5.0 (2012-05-22)
- ------------------
- - Allow defining custom config loaders. They can be dynamic depending on
- the request.
- - Do not automatically add the authentication backend. This way
- we allow other people to add their own backends.
- - Support for additional attributes other than the ones that get mapped
- into the User model. Those attributes get stored in the UserProfile model.
- 0.4.2 (2012-03-23)
- ------------------
- - Fix a crash in the idplist templatetag about using an old pysaml2 function
- - Added a test for the previous crash
- 0.4.1 (2012-03-19)
- ------------------
- - Upgrade pysaml2 dependency to version 0.4.1
- 0.4.0 (2012-03-18)
- ------------------
- - Upgrade pysaml2 dependency to version 0.4.0 (update our tests as a result
- of this)
- - Add logging calls to make debugging easier
- - Use the Django configured logger in pysaml2
- 0.3.3 (2012-02-14)
- ------------------
- - Freeze the version of pysaml2 since we are not (yet!) compatible with
- version 0.4.0
- 0.3.2 (2011-12-13)
- ------------------
- - Avoid a crash when reading the SAML attribute that maps to the Django
- username
- 0.3.1 (2011-12-01)
- ------------------
- - Load the config in the render method of the idplist templatetag to
- make it more flexible and reentrant.
- 0.3.0 (2011-11-30)
- ------------------
- - Templatetag to get the list of available idps.
- - Allow to map the same SAML attribute into several Django field.
- 0.2.4 (2011-11-29)
- ------------------
- - Fix restructured text bugs that made pypi page looks bad.
- 0.2.3 (2011-06-14)
- ------------------
- - Set a unusable password when the user is created for the first time
- 0.2.2 (2011-06-07)
- ------------------
- - Prevent infinite loop when going to the /saml2/login/ endpoint and the user
- is already logged in and the settings.LOGIN_REDIRECT_URL is (badly) pointing
- to /saml2/login.
- 0.2.1 (2011-05-09)
- ------------------
- - If no next parameter is supplied to the login view, use the
- settings.LOGIN_REDIRECT_URL as default
- 0.2.0 (2011-04-26)
- ------------------
- - Python 2.4 compatible if the elementtree library is installed
- - Allow post processing after the authentication phase by using
- Django signals.
- 0.1.1 (2011-04-18)
- ------------------
- - Simple view to echo SAML attributes
- - Improve documentation
- - Change default behaviour when a new user is created. Now their attributes
- are filled this first time
- - Allow to set a next page after the logout
- 0.1.0 (2011-03-16)
- ------------------
- - Emancipation from the pysaml package
|