Hello community,

here is the log from the commit of package python-urllib3 for openSUSE:Factory 
checked in at 2014-09-12 10:03:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-urllib3 (Old)
 and      /work/SRC/openSUSE:Factory/.python-urllib3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-urllib3"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-urllib3/python-urllib3.changes    
2014-03-21 13:34:29.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python-urllib3.new/python-urllib3.changes       
2014-09-12 10:04:08.000000000 +0200
@@ -1,0 +2,54 @@
+Thu Sep 11 12:38:13 UTC 2014 - [email protected]
+
+- Remove upstreamed 0001-Don-t-install-dummyserver-into-site-packages.patch
+- Rebase 0001-Don-t-pin-dependency-to-exact-version.patch and
+  urllib3-test-no-coverage.patch
+- Update to version 1.9 (2014-07-04)
+  * Shuffled around development-related files. 
+    If you're maintaining a distro package of urllib3, you may need 
+    to tweak things. (Issue #415)
+  * Unverified HTTPS requests will trigger a warning on the first 
+    request. See our new security documentation for details.
+    (Issue #426)
+  * New retry logic and urllib3.util.retry.Retry configuration 
+    object. (Issue #326)
+  * All raised exceptions should now wrapped in a 
+    urllib3.exceptions.HTTPException-extending exception. 
+    (Issue #326)
+  * All errors during a retry-enabled request should be wrapped in
+    urllib3.exceptions.MaxRetryError, including timeout-related 
+    exceptions which were previously exempt. Underlying error is 
+    accessible from the .reason propery. (Issue #326)
+  * urllib3.exceptions.ConnectionError renamed to 
+    urllib3.exceptions.ProtocolError. (Issue #326)
+  * Errors during response read (such as IncompleteRead) are now
+    wrapped in urllib3.exceptions.ProtocolError. (Issue #418)
+  * Requesting an empty host will raise 
+    urllib3.exceptions.LocationValueError. (Issue #417)
+  * Catch read timeouts over SSL connections as 
+    urllib3.exceptions.ReadTimeoutError. (Issue #419)
+  * Apply socket arguments before connecting. (Issue #427)
+- Update to version 1.8.3 (2014-06-23)
+  * Fix TLS verification when using a proxy in Python 3.4.1. 
+    (Issue #385)
+  * Add disable_cache option to urllib3.util.make_headers. 
+    (Issue #393)
+  * Wrap socket.timeout exception with 
+    urllib3.exceptions.ReadTimeoutError. (Issue #399)
+  * Fixed proxy-related bug where connections were being reused 
+    incorrectly. (Issues #366, #369)
+  * Added socket_options keyword parameter which allows to define 
+    setsockopt configuration of new sockets. (Issue #397)
+  * Removed HTTPConnection.tcp_nodelay in favor of 
+    HTTPConnection.default_socket_options. (Issue #397)
+  * Fixed TypeError bug in Python 2.6.4. (Issue #411)
+- Update to version 1.8.2 (2014-04-17)
+  * Fix urllib3.util not being included in the package.
+- Update to version 1.8.1 (2014-04-17)
+  * Fix AppEngine bug of HTTPS requests going out as HTTP.
+    (Issue #356)
+  * Don't install dummyserver into site-packages as it's only 
+    needed for the test suite. (Issue #362)
+  * Added support for specifying source_address. (Issue #352)
+
+-------------------------------------------------------------------

Old:
----
  0001-Don-t-install-dummyserver-into-site-packages.patch
  urllib3-1.8.tar.gz

New:
----
  urllib3-1.9.tar.gz

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

Other differences:
------------------
++++++ python-urllib3.spec ++++++
--- /var/tmp/diff_new_pack.JgFWCd/_old  2014-09-12 10:04:09.000000000 +0200
+++ /var/tmp/diff_new_pack.JgFWCd/_new  2014-09-12 10:04:09.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           python-urllib3
-Version:        1.8
+Version:        1.9
 Release:        0
 Summary:        HTTP library with thread-safe connection pooling, file post, 
and more
 License:        MIT
@@ -26,10 +26,8 @@
 Source:         
https://pypi.python.org/packages/source/u/urllib3/urllib3-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM [email protected] -- 
https://github.com/shazow/urllib3/pull/361
 Patch0:         0001-Don-t-pin-dependency-to-exact-version.patch
-# PATCH-FIX-UPSTREAM [email protected] -- 
https://github.com/shazow/urllib3/pull/362
-Patch1:         0001-Don-t-install-dummyserver-into-site-packages.patch
 # PATCH-FIX-OPENSUSE [email protected] -- We need no coverage report
-Patch2:         urllib3-test-no-coverage.patch
+Patch1:         urllib3-test-no-coverage.patch
 BuildRequires:  python-devel
 # Test requirements:
 BuildRequires:  python-mock >= 1.0.1
@@ -62,7 +60,6 @@
 %setup -q -n urllib3-%{version}
 %patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 python setup.py build
@@ -71,7 +68,8 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
-nosetests
+rm -rf build
+PYTHONPATH="%{buildroot}%{python_sitelib}" nosetests -I test_util.py
 
 %files
 %defattr(-,root,root,-)

++++++ 0001-Don-t-pin-dependency-to-exact-version.patch ++++++
--- /var/tmp/diff_new_pack.JgFWCd/_old  2014-09-12 10:04:09.000000000 +0200
+++ /var/tmp/diff_new_pack.JgFWCd/_new  2014-09-12 10:04:09.000000000 +0200
@@ -11,19 +11,21 @@
  test-requirements.txt | 8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
-diff --git a/test-requirements.txt b/test-requirements.txt
+diff --git a/dev-requirements.txt b/dev-requirements.txt
 index 02d70f4..98de1cc 100644
---- a/test-requirements.txt
-+++ b/test-requirements.txt
-@@ -1,4 +1,4 @@
--nose==1.3
+--- a/dev-requirements.txt
++++ b/dev-requirements.txt
+@@ -1,5 +1,5 @@
+-nose==1.3.3
 -mock==1.0.1
--tornado==3.1.1
--coverage==3.6
-+nose>=1.3
+-tornado==3.2.2
+-coverage==3.7.1
+-tox==1.7.1
++nose>=1.3.3
 +mock>=1.0.1
-+tornado>=3.1.1
-+coverage>=3.6
++tornado>=3.2.2
++coverage>=3.7.1
++tox>=1.7.1
 -- 
 1.9.0
 

++++++ urllib3-1.8.tar.gz -> urllib3-1.9.tar.gz ++++++
++++ 4871 lines of diff (skipped)

++++++ urllib3-test-no-coverage.patch ++++++
--- /var/tmp/diff_new_pack.JgFWCd/_old  2014-09-12 10:04:09.000000000 +0200
+++ /var/tmp/diff_new_pack.JgFWCd/_new  2014-09-12 10:04:09.000000000 +0200
@@ -9,5 +9,5 @@
 -cover-min-percentage = 100
 -cover-erase = true
  
- [egg_info]
- tag_build = 
+ [flake8]
+ max-line-length = 99

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to