From 757d9b66fb1392f0f8e4dca4d5b97f36db1a344ac6f5ecd2cf36a19d2cb6059f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 10 Oct 2019 08:17:20 +0000 Subject: [PATCH] - Update to 2.6.1: - added eDirectory 9.1.4 (EDIR_9_1_4) to offline schemas - added json converter for timedelta (thanks dirkjanm) - strip parameter defaults to False in utils.dn.parse_dn() - escaped space is allowed as trailing character in attribute_value in utils.dn.parse_dn() (thanks phi1010) - connection.extend.standard.paged_search doesn't raise exceptions when raise_exceptions is False - the Search operation returns the entries fetched by the server when size or time limits are reached even if raise_exceptions is set to True - Handle the minimum value that can be stored in an Int64 in format_ad_timedelta (thanks mprahl) - EntryState: `entry_raw_attributes` is populated instead of `raw_attributes` (thanks Christian) - Removed restriction to perform rename and move simultaneously in modify_dn (thanks Fabian) - fixed checking for hexdigits in parse_dn (thanks Michael) - fixed escaping when multiple backslashes are present in parse_dn (thanks Phillip) - fixed multiple NoneType exceptions in entry_to_json() (thanks David and cfelder) - allowing Microsoft specific syntax () for WellKnownObjects in DN (thanks David) - connection.extend.standard.paged_search() now follows referrals when auto_referrals=True (thanks kprativa) - fixed a bug in decoding replica list in connection.extend.novell.list_replicas() - fixed a bug when adding duplicate alias in CaseInsensitiveWithAliasDict() - added ignore_duplicates=False in set_aliases in CaseInsensitiveWithAliasDict() to ignore a duplicate alias (either in aliases or in keys) - Schema info now uses CaseInsensitiveWithAlias dict as default so object and attributes can also be referentiated with OID (thanks ahoffm11) - added block mode and timeout parameters to next() method of persistent_search - when using the pyasn1 decoder raw_dn is not returned as a pyasn1 object anymore but as bytes - Return offset timezone aware datetime for max AD timestamp (thanks Jussi) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ldap3?expand=0&rev=25 --- python-ldap3.changes | 26 ++++++++++++++++++++++++++ python-ldap3.spec | 6 +++--- v2.6.1.tar.gz | 3 +++ v2.6.tar.gz | 3 --- 4 files changed, 32 insertions(+), 6 deletions(-) create mode 100644 v2.6.1.tar.gz delete mode 100644 v2.6.tar.gz diff --git a/python-ldap3.changes b/python-ldap3.changes index dc1af3d..7eab687 100644 --- a/python-ldap3.changes +++ b/python-ldap3.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Thu Oct 10 08:14:25 UTC 2019 - Tomáš Chvátal + +- Update to 2.6.1: + - added eDirectory 9.1.4 (EDIR_9_1_4) to offline schemas + - added json converter for timedelta (thanks dirkjanm) + - strip parameter defaults to False in utils.dn.parse_dn() + - escaped space is allowed as trailing character in attribute_value in utils.dn.parse_dn() (thanks phi1010) + - connection.extend.standard.paged_search doesn't raise exceptions when raise_exceptions is False + - the Search operation returns the entries fetched by the server when size or time limits are reached even if raise_exceptions is set to True + - Handle the minimum value that can be stored in an Int64 in format_ad_timedelta (thanks mprahl) + - EntryState: `entry_raw_attributes` is populated instead of `raw_attributes` (thanks Christian) + - Removed restriction to perform rename and move simultaneously in modify_dn (thanks Fabian) + - fixed checking for hexdigits in parse_dn (thanks Michael) + - fixed escaping when multiple backslashes are present in parse_dn (thanks Phillip) + - fixed multiple NoneType exceptions in entry_to_json() (thanks David and cfelder) + - allowing Microsoft specific syntax () for WellKnownObjects in DN (thanks David) + - connection.extend.standard.paged_search() now follows referrals when auto_referrals=True (thanks kprativa) + - fixed a bug in decoding replica list in connection.extend.novell.list_replicas() + - fixed a bug when adding duplicate alias in CaseInsensitiveWithAliasDict() + - added ignore_duplicates=False in set_aliases in CaseInsensitiveWithAliasDict() to ignore a duplicate alias (either in aliases or in keys) + - Schema info now uses CaseInsensitiveWithAlias dict as default so object and attributes can also be referentiated with OID (thanks ahoffm11) + - added block mode and timeout parameters to next() method of persistent_search + - when using the pyasn1 decoder raw_dn is not returned as a pyasn1 object anymore but as bytes + - Return offset timezone aware datetime for max AD timestamp (thanks Jussi) + ------------------------------------------------------------------- Tue May 14 21:44:09 UTC 2019 - Gary Smith diff --git a/python-ldap3.spec b/python-ldap3.spec index 532e335..2bfc428 100644 --- a/python-ldap3.spec +++ b/python-ldap3.spec @@ -18,16 +18,16 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-ldap3 -Version: 2.6 +Version: 2.6.1 Release: 0 Summary: A strictly RFC 4511 conforming LDAP V3 pure Python client License: LGPL-3.0-only -Group: Development/Languages/Python URL: https://github.com/cannatag/ldap3 Source: https://github.com/cannatag/ldap3/archive/v%{version}.tar.gz BuildRequires: %{python_module nose} BuildRequires: %{python_module pyasn1 >= 0.1.8} BuildRequires: %{python_module setuptools} +BuildRequires: dos2unix BuildRequires: fdupes BuildRequires: python-rpm-macros BuildRequires: python3-testsuite @@ -44,7 +44,7 @@ The name has been changed to avoid confusion with the python-ldap library. %prep %setup -q -n ldap3-%{version} -sed -i 's/\r$//' COPYING.LESSER.txt COPYING.txt README.rst LICENSE.txt +dos2unix COPYING.LESSER.txt COPYING.txt README.rst LICENSE.txt %build %python_build diff --git a/v2.6.1.tar.gz b/v2.6.1.tar.gz new file mode 100644 index 0000000..8040f22 --- /dev/null +++ b/v2.6.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19 +size 953713 diff --git a/v2.6.tar.gz b/v2.6.tar.gz deleted file mode 100644 index c7d4c65..0000000 --- a/v2.6.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4efa622b5e27ad24c6ac6c567bcf24163dd63e7c27694db58d6a8c1ad4200b34 -size 929460