Hello community,

here is the log from the commit of package python-yarl for openSUSE:Factory 
checked in at 2018-02-26 23:25:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-yarl (Old)
 and      /work/SRC/openSUSE:Factory/.python-yarl.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-yarl"

Mon Feb 26 23:25:15 2018 rev:9 rq:579945 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-yarl/python-yarl.changes  2018-02-14 
09:46:31.890946521 +0100
+++ /work/SRC/openSUSE:Factory/.python-yarl.new/python-yarl.changes     
2018-02-26 23:25:18.569994170 +0100
@@ -1,0 +2,6 @@
+Sat Feb 24 18:28:57 UTC 2018 - [email protected]
+
+- update to version 1.1.1:
+  * Fix performance regression: don’t encode enmpty netloc (#170)
+
+-------------------------------------------------------------------

Old:
----
  yarl-1.1.0.tar.gz

New:
----
  yarl-1.1.1.tar.gz

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

Other differences:
------------------
++++++ python-yarl.spec ++++++
--- /var/tmp/diff_new_pack.qSuXfE/_old  2018-02-26 23:25:20.009942383 +0100
+++ /var/tmp/diff_new_pack.qSuXfE/_new  2018-02-26 23:25:20.013942239 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-yarl
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        Yet another URL library
 License:        Apache-2.0

++++++ yarl-1.1.0.tar.gz -> yarl-1.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yarl-1.1.0/CHANGES.rst new/yarl-1.1.1/CHANGES.rst
--- old/yarl-1.1.0/CHANGES.rst  2018-01-21 10:42:48.000000000 +0100
+++ new/yarl-1.1.1/CHANGES.rst  2018-02-17 23:24:15.000000000 +0100
@@ -1,6 +1,11 @@
 CHANGES
 =======
 
+1.1.1 (2018-02-17)
+------------------
+
+* Fix performance regression: don't encode enmpty netloc (#170)
+
 1.1.0 (2018-01-21)
 ------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yarl-1.1.0/PKG-INFO new/yarl-1.1.1/PKG-INFO
--- old/yarl-1.1.0/PKG-INFO     2018-01-21 10:43:32.000000000 +0100
+++ new/yarl-1.1.1/PKG-INFO     2018-02-17 23:24:53.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: yarl
-Version: 1.1.0
+Version: 1.1.1
 Summary: Yet another URL library
 Home-page: https://github.com/aio-libs/yarl/
 Author: Andrew Svetlov
@@ -168,6 +168,11 @@
         CHANGES
         =======
         
+        1.1.1 (2018-02-17)
+        ------------------
+        
+        * Fix performance regression: don't encode enmpty netloc (#170)
+        
         1.1.0 (2018-01-21)
         ------------------
         
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yarl-1.1.0/yarl/__init__.py 
new/yarl-1.1.1/yarl/__init__.py
--- old/yarl-1.1.0/yarl/__init__.py     2018-01-21 10:42:48.000000000 +0100
+++ new/yarl-1.1.1/yarl/__init__.py     2018-02-17 23:24:15.000000000 +0100
@@ -10,7 +10,7 @@
 
 from .quoting import _Quoter, _Unquoter
 
-__version__ = '1.1.0'
+__version__ = '1.1.1'
 
 __all__ = ('URL',)
 
@@ -196,8 +196,11 @@
             raise ValueError(
                 "Only one of \"query\" or \"query_string\" should be passed")
 
-        netloc = cls._make_netloc(user, password, host, port,
-                                  encode=not encoded)
+        if not user and not password and not host and not port:
+            netloc = ''
+        else:
+            netloc = cls._make_netloc(user, password, host, port,
+                                      encode=not encoded)
         if not encoded:
             path = cls._PATH_QUOTER(path)
             if netloc:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yarl-1.1.0/yarl.egg-info/PKG-INFO 
new/yarl-1.1.1/yarl.egg-info/PKG-INFO
--- old/yarl-1.1.0/yarl.egg-info/PKG-INFO       2018-01-21 10:43:32.000000000 
+0100
+++ new/yarl-1.1.1/yarl.egg-info/PKG-INFO       2018-02-17 23:24:53.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: yarl
-Version: 1.1.0
+Version: 1.1.1
 Summary: Yet another URL library
 Home-page: https://github.com/aio-libs/yarl/
 Author: Andrew Svetlov
@@ -168,6 +168,11 @@
         CHANGES
         =======
         
+        1.1.1 (2018-02-17)
+        ------------------
+        
+        * Fix performance regression: don't encode enmpty netloc (#170)
+        
         1.1.0 (2018-01-21)
         ------------------
         


Reply via email to