Releases: Cito/pyramid_ldap3
Releases · Cito/pyramid_ldap3
Version 0.5
Version 0.4.1
- 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
- This version supports Pyramid 1.10 now
- This version requires Pyramid >= 1.4 now
Version 0.3.2
- 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
- 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 settingget_info
to'SCHEMA'
or'ALL'
when callingldap_setup()
.
Version 0.3
- 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
- Requires ldap3 < 2.0 for compatibility reasons
Version 0.2.3
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