Hello community,

here is the log from the commit of package python-django-auth-ldap for 
openSUSE:Factory checked in at 2020-06-10 00:50:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-auth-ldap (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-auth-ldap"

Wed Jun 10 00:50:52 2020 rev:15 rq:812852 version:2.2.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-auth-ldap/python-django-auth-ldap.changes
  2020-04-04 12:27:20.872046793 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-auth-ldap.new.3606/python-django-auth-ldap.changes
        2020-06-10 00:50:56.371341064 +0200
@@ -1,0 +2,6 @@
+Tue Jun  9 10:06:39 UTC 2020 - Ondřej Súkup <mimi...@gmail.com>
+
+- Update to 2.2.0
+ * Added support for the escape argument in LDAPSearchUnion.execute()
+
+-------------------------------------------------------------------

Old:
----
  django-auth-ldap-2.1.1.tar.gz

New:
----
  django-auth-ldap-2.2.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-django-auth-ldap.spec ++++++
--- /var/tmp/diff_new_pack.PzHjND/_old  2020-06-10 00:50:57.283343450 +0200
+++ /var/tmp/diff_new_pack.PzHjND/_new  2020-06-10 00:50:57.283343450 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-django-auth-ldap
-Version:        2.1.1
+Version:        2.2.0
 Release:        0
 Summary:        Django LDAP authentication backend
 License:        BSD-2-Clause

++++++ django-auth-ldap-2.1.1.tar.gz -> django-auth-ldap-2.2.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/CHANGES 
new/django-auth-ldap-2.2.0/CHANGES
--- old/django-auth-ldap-2.1.1/CHANGES  2020-03-26 18:52:03.000000000 +0100
+++ new/django-auth-ldap-2.2.0/CHANGES  2020-06-03 01:45:40.000000000 +0200
@@ -1,3 +1,8 @@
+2.2.0 - 2020-06-02
+------------------
+
+- Added support for the escape argument in ``LDAPSearchUnion.execute()``.
+
 2.1.1 - 2020-03-26
 
 - Removed drepecated ``providing_args`` from ``Signal`` instances.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/PKG-INFO 
new/django-auth-ldap-2.2.0/PKG-INFO
--- old/django-auth-ldap-2.1.1/PKG-INFO 2020-03-26 18:54:27.000000000 +0100
+++ new/django-auth-ldap-2.2.0/PKG-INFO 2020-06-03 01:49:56.901470400 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.1
+Version: 2.2.0
 Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py 
new/django-auth-ldap-2.2.0/django_auth_ldap/__init__.py
--- old/django-auth-ldap-2.1.1/django_auth_ldap/__init__.py     2020-03-26 
18:52:33.000000000 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap/__init__.py     2020-06-03 
01:44:51.000000000 +0200
@@ -1,4 +1,4 @@
-VERSION = (2, 1, 1)
+VERSION = (2, 2, 0)
 __version__ = ".".join(str(i) for i in VERSION)
 
 # Deprecated. Use VERSION and __version__ instead.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/django_auth_ldap/config.py 
new/django-auth-ldap-2.2.0/django_auth_ldap/config.py
--- old/django-auth-ldap-2.1.1/django_auth_ldap/config.py       2020-01-25 
13:32:59.000000000 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap/config.py       2020-06-03 
01:35:55.000000000 +0200
@@ -270,8 +270,10 @@
 
         return type(self)(*searches)
 
-    def execute(self, connection, filterargs=()):
-        msgids = [search._begin(connection, filterargs) for search in 
self.searches]
+    def execute(self, connection, filterargs=(), escape=True):
+        msgids = [
+            search._begin(connection, filterargs, escape) for search in 
self.searches
+        ]
         results = {}
 
         for search, msgid in zip(self.searches, msgids):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO 
new/django-auth-ldap-2.2.0/django_auth_ldap.egg-info/PKG-INFO
--- old/django-auth-ldap-2.1.1/django_auth_ldap.egg-info/PKG-INFO       
2020-03-26 18:54:26.000000000 +0100
+++ new/django-auth-ldap-2.2.0/django_auth_ldap.egg-info/PKG-INFO       
2020-06-03 01:49:56.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: django-auth-ldap
-Version: 2.1.1
+Version: 2.2.0
 Summary: Django LDAP authentication backend.
 Home-page: https://github.com/django-auth-ldap/django-auth-ldap
 Author: Peter Sagerson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-auth-ldap-2.1.1/docs/conf.py 
new/django-auth-ldap-2.2.0/docs/conf.py
--- old/django-auth-ldap-2.1.1/docs/conf.py     2020-03-26 18:52:14.000000000 
+0100
+++ new/django-auth-ldap-2.2.0/docs/conf.py     2020-06-03 01:46:12.000000000 
+0200
@@ -23,9 +23,9 @@
 author = "Peter Sagerson"
 
 # The short X.Y version
-version = "2.1"
+version = "2.2"
 # The full version, including alpha/beta/rc tags
-release = "2.1.1"
+release = "2.2.0"
 
 
 # -- General configuration ---------------------------------------------------


Reply via email to