File tree Expand file tree Collapse file tree 5 files changed +25
-4
lines changed
Expand file tree Collapse file tree 5 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1+ Released 3.4.5 2025-10-08
2+
3+ Fixes:
4+ * ReconnectLDAPObject now properly reconnects on UNAVAILABLE, CONNECT_ERROR
5+ and TIMEOUT exceptions (previously only SERVER_DOWN), fixing reconnection
6+ issues especially during server restarts
7+ * Fixed syncrepl.py to use named constants instead of raw decimal values
8+ for result types
9+ * Fixed error handling in SearchNoOpMixIn to prevent a undefined variable error
10+
11+ Tests:
12+ * Added comprehensive reconnection test cases including concurrent operation
13+ handling and server restart scenarios
14+ * Added extensive test coverage for ldap.dn.dn2str() with various format flags
15+
16+ Doc/
17+ * Updated installation docs and fixed various documentation typos
18+ * Added ReadTheDocs configuration file
19+
20+
21+ ----------------------------------------------------------------
122Released 3.4.4 2022-11-17
223
324Fixes:
Original file line number Diff line number Diff line change 11"""
22meta attributes for packaging which does not import any dependencies
33"""
4- __version__ = '3.4.4 '
4+ __version__ = '3.4.5 '
55__author__ = 'python-ldap project'
66__license__ = 'Python style'
Original file line number Diff line number Diff line change 44See https://www.python-ldap.org/ for details.
55"""
66
7- __version__ = '3.4.4 '
7+ __version__ = '3.4.5 '
88
99__all__ = [
1010 # constants
Original file line number Diff line number Diff line change 33
44See https://www.python-ldap.org/ for details.
55"""
6- __version__ = '3.4.4 '
6+ __version__ = '3.4.5 '
77
88__all__ = [
99 # constants
Original file line number Diff line number Diff line change 44See https://www.python-ldap.org/ for details.
55"""
66
7- __version__ = '3.4.4 '
7+ __version__ = '3.4.5 '
88
99from slapdtest ._slapdtest import SlapdObject , SlapdTestCase , SysLogHandler
1010from slapdtest ._slapdtest import requires_ldapi , requires_sasl , requires_tls
You can’t perform that action at this time.
0 commit comments