CHANGES 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. Changes
  2. =======
  3. 0.16.4 (2017-09-11)
  4. -------------------
  5. - Added support for SHA-256 signing. Thanks to WebSpider.
  6. - Bugfixes. Thanks to justinsg and charn.
  7. - Error handling made more extensible. This will be further improved in next versions.
  8. 0.16.1 (2017-07-15)
  9. -------------------
  10. - Bugfixes. Thanks to canni, AmbientLighter, cranti and logston.
  11. - request is now passed to authentication backend (introduced in Django 1.11). Thanks to terite.
  12. 0.16.0 (2017-04-14)
  13. -------------------
  14. - Upgrade pysaml2 dependency to version 4.4.0 which fixes some serialization issues. Thanks to nakato for the report.
  15. - Added support for HTTP Redirect binding with signed authentication requests. Many thanks to liquidpele for this feature and other related refactorings.
  16. - The custom permission_denied.html template was removed in favor of standard PermissionDenied exception. Thanks to mhindery.
  17. 0.15.0 (2016-12-18)
  18. -------------------
  19. - Python 3.5 support. Thanks to timheap.
  20. - Added support for callable user attributes. Thanks to andy-miracl and joetsoi.
  21. - Security improvement: "next" URL is now checked. thanks to flupzor.
  22. - Improved testability. Thanks to flupzor.
  23. - Other bugfixes and minor improvements. Thanks to jamaalscarlett, ws0w, jaywink and liquidpele.
  24. 0.14.5 (2016-09-19)
  25. -------------------
  26. - Django 1.10 support. Thanks to inducer.
  27. - Various fixes and minor improvements. Thanks to ajsmilutin, ganiserb, inducer, grunichev, liquidpele and darbula
  28. 0.14.4 (2016-03-29)
  29. -------------------
  30. - Fix compatibility issue with pysaml2-4.0.3+. Thanks to jimr and astoltz.
  31. - Fix Django 1.9 compatibility issue in templates. Thanks to nikoskal.
  32. 0.14.3 (2016-03-18)
  33. -------------------
  34. - Upgraded to pysaml2-4.0.5.
  35. - Added 'ACS_DEFAULT_REDIRECT_URL' setting for default redirection after successful authentication. Thanks to ganiserb.
  36. 0.14.2 (2016-03-11)
  37. -------------------
  38. - Released under the original 'djangosaml2' package name; abandoning the djangosaml2-knaperek fork.
  39. 0.14.1 (2016-03-09)
  40. -------------------
  41. - Upgraded to pysaml2-4.0.4.
  42. 0.14.0 (2016-01-28)
  43. -------------------
  44. - Upgrade to pysaml2-4.0.2. Thanks to kviktor
  45. - Django 1.9 support. Thanks to Jordi Gutiérrez Hermoso
  46. 0.13.2 (2015-06-24)
  47. -------------------
  48. - Improved usage of standard Python logging.
  49. 0.13.1 (2015-06-05)
  50. -------------------
  51. - Added support for djangosaml2 specific user model defined by SAML_USER_MODEL setting
  52. 0.13.0 (2015-02-12)
  53. -------------------
  54. - Django 1.7 support. Thanks to Kamei Toshimitsu
  55. 0.12.0 (2014-11-18)
  56. -------------------
  57. - Pysaml2 2.2.0 support. Thanks to Erick Tryzelaar
  58. 0.11.0 (2014-06-15)
  59. -------------------
  60. - Django 1.5 custom user model support. Thanks to Jos van Velzen
  61. - Django 1.5 compatibility url template tag. Thanks to bula
  62. - Support Django 1.5 and 1.6. Thanks to David Evans and Justin Quick
  63. 0.10.0 (2013-05-05)
  64. -------------------
  65. - Check that RelayState is not empty before redirecting into a loop. Thanks
  66. to Sam Bull for reporting this issue.
  67. - In the global logout process, when the session is lost, report an error
  68. message to the user and perform a local logout.
  69. 0.9.2 (2013-04-19)
  70. ------------------
  71. - Upgrade to pysaml2-0.4.3.
  72. 0.9.1 (2013-01-29)
  73. ------------------
  74. - Add a method to the authentication backend so it is possible
  75. to customize the authorization based on SAML attributes.
  76. 0.9.0 (2012-10-30)
  77. ------------------
  78. - Add a signal for modifying the user just before saving it on
  79. the update_user method of the authentication backend.
  80. 0.8.1 (2012-10-29)
  81. ------------------
  82. - Trim the SAML attributes before setting them to the Django objects
  83. if they are too long. This fixes a crash with MySQL.
  84. 0.8.0 (2012-10-25)
  85. ------------------
  86. - Allow to use different attributes besides 'username' to look for
  87. existing users.
  88. 0.7.0 (2012-10-19)
  89. ------------------
  90. - Add a setting to decide if the user should be redirected to the
  91. next view or shown an authorization error when the user tries to
  92. login twice.
  93. 0.6.1 (2012-09-03)
  94. ------------------
  95. - Remove Django from our dependencies
  96. - Restore support for Django 1.3
  97. 0.6.0 (2012-08-29)
  98. ------------------
  99. - Add tox support configured to run the tests with Python 2.6 and 2.7
  100. - Fix some dependencies and sdist generation. Lorenzo Gil
  101. - Allow defining a logout redirect url in the settings. Lorenzo Gil
  102. - Add some logging calls to improve debugging. Lorenzo Gil
  103. - Add support for custom conf loading function. Sam Bull.
  104. - Make the tests more robust and easier to run when djangosaml2 is
  105. included in a Django project. Sam Bull.
  106. - Make sure the profile is not None before saving it. Bug reported by
  107. Leif Johansson
  108. 0.5.0 (2012-05-22)
  109. ------------------
  110. - Allow defining custom config loaders. They can be dynamic depending on
  111. the request.
  112. - Do not automatically add the authentication backend. This way
  113. we allow other people to add their own backends.
  114. - Support for additional attributes other than the ones that get mapped
  115. into the User model. Those attributes get stored in the UserProfile model.
  116. 0.4.2 (2012-03-23)
  117. ------------------
  118. - Fix a crash in the idplist templatetag about using an old pysaml2 function
  119. - Added a test for the previous crash
  120. 0.4.1 (2012-03-19)
  121. ------------------
  122. - Upgrade pysaml2 dependency to version 0.4.1
  123. 0.4.0 (2012-03-18)
  124. ------------------
  125. - Upgrade pysaml2 dependency to version 0.4.0 (update our tests as a result
  126. of this)
  127. - Add logging calls to make debugging easier
  128. - Use the Django configured logger in pysaml2
  129. 0.3.3 (2012-02-14)
  130. ------------------
  131. - Freeze the version of pysaml2 since we are not (yet!) compatible with
  132. version 0.4.0
  133. 0.3.2 (2011-12-13)
  134. ------------------
  135. - Avoid a crash when reading the SAML attribute that maps to the Django
  136. username
  137. 0.3.1 (2011-12-01)
  138. ------------------
  139. - Load the config in the render method of the idplist templatetag to
  140. make it more flexible and reentrant.
  141. 0.3.0 (2011-11-30)
  142. ------------------
  143. - Templatetag to get the list of available idps.
  144. - Allow to map the same SAML attribute into several Django field.
  145. 0.2.4 (2011-11-29)
  146. ------------------
  147. - Fix restructured text bugs that made pypi page looks bad.
  148. 0.2.3 (2011-06-14)
  149. ------------------
  150. - Set a unusable password when the user is created for the first time
  151. 0.2.2 (2011-06-07)
  152. ------------------
  153. - Prevent infinite loop when going to the /saml2/login/ endpoint and the user
  154. is already logged in and the settings.LOGIN_REDIRECT_URL is (badly) pointing
  155. to /saml2/login.
  156. 0.2.1 (2011-05-09)
  157. ------------------
  158. - If no next parameter is supplied to the login view, use the
  159. settings.LOGIN_REDIRECT_URL as default
  160. 0.2.0 (2011-04-26)
  161. ------------------
  162. - Python 2.4 compatible if the elementtree library is installed
  163. - Allow post processing after the authentication phase by using
  164. Django signals.
  165. 0.1.1 (2011-04-18)
  166. ------------------
  167. - Simple view to echo SAML attributes
  168. - Improve documentation
  169. - Change default behaviour when a new user is created. Now their attributes
  170. are filled this first time
  171. - Allow to set a next page after the logout
  172. 0.1.0 (2011-03-16)
  173. ------------------
  174. - Emancipation from the pysaml package