Skip to content

Releases: IdentityPython/djangosaml2

v1.0.5

07 Mar 21:35
Compare
Choose a tag to compare
  • code linting, cleanup. Not enough but better than before
  • Documentation: Replace signal with hooks (#251)
  • Better saml_attribute handling in backend - more resilient
  • Add session_info to user auth failed template (#248)
  • Fix SAML_ACS_FAILURE_RESPONSE_FUNCTION override
  • Update Custom Error Handler docs

v1.0.4

15 Feb 23:06
Compare
Choose a tag to compare
  • logger.debug('Login process started') cleaned up
  • fixed echo_Attributes template and null lenght of saml_attributes

v.1.0.3

15 Feb 22:41
945fb85
Compare
Choose a tag to compare
  • logout improved
  • wayf improved

v1.0.2

24 Jan 15:28
Compare
Choose a tag to compare
  • RequestVersionTooLow exception handled in ACS
  • Better exception handling for Malformed SAML Response
  • pySAML2 dep up to v6.5.1

v1.0.1

20 Jan 13:29
Compare
Choose a tag to compare

v1.0.1 (2020-01-20)

v1.0.0

26 Dec 15:25
eebe6f0
Compare
Choose a tag to compare
  • General code refactor based on Django ClassViews
  • Better Code Coverage
  • Discovery Service support
  • HTTP-Redirect with optional signed authn requests

v0.50.0

15 Oct 11:37
Compare
Choose a tag to compare

Discovery Service support

v0.40.1

08 Sep 21:41
34c3f34
Compare
Choose a tag to compare

Minor release with two bugfixes. The first regards the missing signature in http-redirect sso binding, the second came with the latter changes introduced by SameSite cookie, now fixed.

v0.40.0

04 Aug 14:30
Compare
Choose a tag to compare
  • Allow a SSO request without any attributes besides the NameID info. Backwards-incompatible changes to allow easier behaviour differentiation, two methods now receive the idp identifier (+ **kwargs were added to introduce possible similar changes in the future with less breaking effect):
    • Method signature changed on Saml2Backend.clean_attributes: from clean_attributes(self, attributes: dict) to clean_attributes(self, attributes: dict, idp_entityid: str, **kwargs)
    • Methodignature changed on Saml2Backend.is_authorized: from is_authorized(self, attributes: dict, attribute_mapping: dict) to is_authorized(self, attributes: dict, attribute_mapping: dict, idp_entityid: str, **kwargs)
  • SAML session refactor and minor changes in README file
  • local Logout - indipendent by IdP SLO Response

v0.30.0

30 Jul 16:33
Compare
Choose a tag to compare

SameSite workaround with a specialized cookie decoupled from django default one