-
Notifications
You must be signed in to change notification settings - Fork 14
/
CHANGES.txt
104 lines (64 loc) · 2.22 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
0.5
---
- Support realms (using different LDAP servers)
0.4.2
-----
- We require Python 2.7 or 3.5 and newer now
- Fixed and modernized the unit tests
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
0.4
---
- Made pyramid_ldap3 compatible with Pyramid 1.10
- We require Pyramid >= 1.4 now
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.
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 setting get_info to 'SCHEMA' or 'ALL' when calling ldap_setup().
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.
0.2.5
-----
- Explicitly requires ldap3 < version 2.0 for compatibility reasons.
- This version is intended to support the older ldap3 versions < 2.0 only.
0.2.4
-----
- The pool lifetime is now configurable
0.2.3
-----
- 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
0.2.2
------
- Support server pools
- Ignore results without a dn instead of raising an error
- Escape special characters when querying for groups
- Do not cache invalid responses
- Added documentation on recursive group queries
0.2.1
------
- Use implicit binding and proper unbinding of connections.
0.2
---
- Made return values of pyramid_ldap3 compatible with pyramid_ldap.
0.1
---
- Initial version