Skip to content

Commit 3350dac

Browse files
committed
Prepare a new release
1 parent ed2444e commit 3350dac

File tree

5 files changed

+24
-4
lines changed

5 files changed

+24
-4
lines changed

CHANGES

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
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+
15+
Doc/
16+
* Updated installation docs and fixed various documentation typos
17+
* Added ReadTheDocs configuration file
18+
19+
20+
----------------------------------------------------------------
121
Released 3.4.4 2022-11-17
222

323
Fixes:

Lib/ldap/pkginfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
meta 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'

Lib/ldapurl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
See https://www.python-ldap.org/ for details.
55
"""
66

7-
__version__ = '3.4.4'
7+
__version__ = '3.4.5'
88

99
__all__ = [
1010
# constants

Lib/ldif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
See https://www.python-ldap.org/ for details.
55
"""
6-
__version__ = '3.4.4'
6+
__version__ = '3.4.5'
77

88
__all__ = [
99
# constants

Lib/slapdtest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
See https://www.python-ldap.org/ for details.
55
"""
66

7-
__version__ = '3.4.4'
7+
__version__ = '3.4.5'
88

99
from slapdtest._slapdtest import SlapdObject, SlapdTestCase, SysLogHandler
1010
from slapdtest._slapdtest import requires_ldapi, requires_sasl, requires_tls

0 commit comments

Comments
 (0)