File tree Expand file tree Collapse file tree 5 files changed +37
-4
lines changed Expand file tree Collapse file tree 5 files changed +37
-4
lines changed Original file line number Diff line number Diff line change
1
+ ----------------------------------------------------------------
2
+ Released 3.0.0 2018-03-12
3
+
4
+ Notable changes since 2.4.45 (please see detailed logs below):
5
+ * Python 3 support and bytes_mode
6
+ see: https://python-ldap.readthedocs.io/en/latest/bytes_mode.html
7
+ * The module `ldap.async` is renamed to `ldap.asyncsearch`
8
+ * New dependencies: pyasn1, pyasn1_modules
9
+ * Dropped support for Python 2.6 and 3.3
10
+
11
+
12
+ Changes since 3.0.0b4:
13
+
14
+ Lib/
15
+ * Add bytes_strictness to allow configuring behavior on bytes/text mismatch
16
+
17
+ Modules/
18
+ * Add argument name to bytes mode TypeError
19
+ * Use correct integer types for BER encode/decode (fix for big endian machines)
20
+
21
+ Test/
22
+ * Set $LDAPNOINIT in all tests
23
+ * Add test for secure TLS default
24
+ * Ignore SASL methods in DSE test (fix for restricted environments)
25
+ * Remove filterstr workaround from syncrepl test
26
+ * Explicitly set TLS_REQUIRE_CERT option to TLS_HARD in test_tls_ext_noca
27
+
28
+ Doc/
29
+ * Link to bytes mode from text-string arguments in the ldap module
30
+
31
+ Infrastructure:
32
+ * Include lber in list of libraries in setup.cfg
33
+
1
34
----------------------------------------------------------------
2
35
Released 3.0.0b4 2018-01-10
3
36
Original file line number Diff line number Diff line change 2
2
"""
3
3
meta attributes for packaging which does not import any dependencies
4
4
"""
5
- __version__ = '3.0.0b4 '
5
+ __version__ = '3.0.0 '
6
6
__author__ = u'python-ldap project'
7
7
__license__ = 'Python style'
Original file line number Diff line number Diff line change 4
4
See https://www.python-ldap.org/ for details.
5
5
"""
6
6
7
- __version__ = '3.0.0b4 '
7
+ __version__ = '3.0.0 '
8
8
9
9
__all__ = [
10
10
# constants
Original file line number Diff line number Diff line change 6
6
7
7
from __future__ import unicode_literals
8
8
9
- __version__ = '3.0.0b4 '
9
+ __version__ = '3.0.0 '
10
10
11
11
__all__ = [
12
12
# constants
Original file line number Diff line number Diff line change 5
5
See https://www.python-ldap.org/ for details.
6
6
"""
7
7
8
- __version__ = '3.0.0b4 '
8
+ __version__ = '3.0.0 '
9
9
10
10
from slapdtest ._slapdtest import SlapdObject , SlapdTestCase , SysLogHandler
11
11
from slapdtest ._slapdtest import requires_ldapi , requires_sasl , requires_tls
You can’t perform that action at this time.
0 commit comments