Skip to content

Releases: IdentityPython/djangosaml2

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

v0.20.0

01 Jul 07:20
Compare
Choose a tag to compare
  • Bugfix: Always save newly created users when ATTRIBUTE_MAPPING is missing in the config
  • pySAML2 v5.3.0

v0.19.1

15 Jun 10:31
dcabea2
Compare
Choose a tag to compare
  • Fixed creating new user with iexact lookup

v0.19.0

03 Jun 18:21
v0.19.0
ef59c7c
Compare
Choose a tag to compare
  • Support several required fields during User creation
  • Don't pass sigalg parameter when not signing login request
  • ALLOW_SAML_HOSTNAMES validation for redirect
  • Custom attribute mapping for Django user model (example)
  • Slo absence workaround
  • Metadata EntityID exception handling
  • Fix unsigned authentication request to POST endpoint
  • py38 Test fixes
  • CI with Github actions
  • Backend restructuring for easier subclassing
  • Assertion consumer service now more extensible as a class-based view
    with hooks that can be overridden by subclass implementations.