Skip to content

Releases: Cito/pyramid_ldap3

Version 0.5

09 Oct 16:26
0414aa2
Compare
Choose a tag to compare
  • Support realms (using different LDAP servers)

Version 0.4.1

03 Apr 20:51
Compare
Choose a tag to compare
  • Avoid fetching a connection from the pool when the result is cached.
    This should improve the performance, particularly when the connection
    pool is not working properly for some reason. Thanks to Daniel Nilsson.
  • Improved and documented the sample application

Version 0.4

03 Nov 19:46
Compare
Choose a tag to compare
  • This version supports Pyramid 1.10 now
  • This version requires Pyramid >= 1.4 now

Version 0.3.2

24 Sep 15:05
Compare
Choose a tag to compare
  • The login value in the search filter is now properly escaped in the authenticate() method. Although the bind test in the second stage of the method ensures the proper password is passed, this could be exploited to login with a different user name like 'foo*' instead of 'foobar'. Thanks to Patrick Valsecchi for the bug report.

Version 0.3.1

03 Mar 08:19
Compare
Choose a tag to compare
  • Since ldap3 version 2.0.7, schema information is loaded from the server on
    every connection. This is normally not needed for authentication and slows
    down the connections, so we now disable this feature. If you fetch user or
    group attributes and want them to be properly formatted, you must enable this
    feature by setting get_info to 'SCHEMA' or 'ALL' when calling ldap_setup().

Version 0.3

03 Nov 17:38
Compare
Choose a tag to compare
  • Adaptations to changes in ldap3 version 2, including changed constant names.
  • This version is intended to support the newer ldap3 versions >= 2.0 only.

Version 0.2.5

03 Nov 16:16
Compare
Choose a tag to compare
  • Requires ldap3 < 2.0 for compatibility reasons

Version 0.2.3

25 Oct 11:23
Compare
Choose a tag to compare

Bugfixes and changes in this version:

  • Account for renaming of python3-ldap to ldap3
  • Proper unbinding of Connections
  • Do not fill cache if caching has been disabled
  • Release as source package and universal wheel