diff --git a/python-urllib3-recent-date.patch b/python-urllib3-recent-date.patch index bb84916..198b0d8 100644 --- a/python-urllib3-recent-date.patch +++ b/python-urllib3-recent-date.patch @@ -13,11 +13,9 @@ Fixes #1303 src/urllib3/connection.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -Index: urllib3-1.23/urllib3/connection.py -=================================================================== ---- urllib3-1.23.orig/src/urllib3/connection.py -+++ urllib3-1.23/src/urllib3/connection.py -@@ -60,7 +60,7 @@ port_by_scheme = { +--- a/src/urllib3/connection.py ++++ b/src/urllib3/connection.py +@@ -59,7 +59,7 @@ port_by_scheme = { # and not less than 6 months ago. # Example: if Today is 2018-01-01, then RECENT_DATE should be any date on or # after 2016-01-01 (today - 2 years) AND before 2017-07-01 (today - 6 months) diff --git a/python-urllib3.changes b/python-urllib3.changes index d9e8280..f7d6844 100644 --- a/python-urllib3.changes +++ b/python-urllib3.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Sun Dec 30 18:20:59 CET 2018 - mcepl@suse.com + +- Update to 1.24.1: + * Remove quadratic behavior within GzipDecoder.decompress() + (Issue #1467) + * Restored functionality of ciphers parameter for + create_urllib3_context(). (Issue #1462) + ------------------------------------------------------------------- Thu Nov 1 14:14:34 UTC 2018 - Tomáš Chvátal diff --git a/python-urllib3.spec b/python-urllib3.spec index d36170b..6e13ccf 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -31,7 +31,7 @@ Name: python-urllib3-%{flavor} %else Name: python-urllib3 %endif -Version: 1.24 +Version: 1.24.1 Release: 0 Summary: HTTP library with thread-safe connection pooling, file post, and more License: MIT diff --git a/urllib3-1.24.1.tar.gz b/urllib3-1.24.1.tar.gz new file mode 100644 index 0000000..2d2ac41 --- /dev/null +++ b/urllib3-1.24.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9529817c93f27c8ccbfead6985011db27bd0ddfcdb2d86f3f663385c6a9c22 +size 229688 diff --git a/urllib3-1.24.tar.gz b/urllib3-1.24.tar.gz deleted file mode 100644 index e87506e..0000000 --- a/urllib3-1.24.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:41c3db2fc01e5b907288010dec72f9d0a74e37d6994e6eb56849f59fea2265ae -size 229200 diff --git a/urllib3-ssl-default-context.patch b/urllib3-ssl-default-context.patch index 7ab54e3..2605c80 100644 --- a/urllib3-ssl-default-context.patch +++ b/urllib3-ssl-default-context.patch @@ -1,8 +1,6 @@ -Index: urllib3-1.21.1/src/urllib3/util/ssl_.py -=================================================================== ---- urllib3-1.21.1.orig/src/urllib3/util/ssl_.py -+++ urllib3-1.21.1/src/urllib3/util/ssl_.py -@@ -318,6 +318,8 @@ def ssl_wrap_socket(sock, keyfile=None, +--- a/src/urllib3/util/ssl_.py ++++ b/src/urllib3/util/ssl_.py +@@ -330,6 +330,8 @@ def ssl_wrap_socket(sock, keyfile=None, elif getattr(context, 'load_default_certs', None) is not None: # try to load OS default certs; works well on Windows (require Python3.4+) context.load_default_certs() diff --git a/urllib3-test-ssl-drop-sslv3.patch b/urllib3-test-ssl-drop-sslv3.patch index 6dd77ba..8c2b7a1 100644 --- a/urllib3-test-ssl-drop-sslv3.patch +++ b/urllib3-test-ssl-drop-sslv3.patch @@ -1,8 +1,6 @@ -Index: urllib3-1.21.1/test/with_dummyserver/test_https.py -=================================================================== ---- urllib3-1.21.1.orig/test/with_dummyserver/test_https.py -+++ urllib3-1.21.1/test/with_dummyserver/test_https.py -@@ -503,7 +503,7 @@ class TestHTTPS(HTTPSDummyServerTestCase +--- a/test/with_dummyserver/test_https.py ++++ b/test/with_dummyserver/test_https.py +@@ -557,7 +557,7 @@ class TestHTTPS(HTTPSDummyServerTestCase class TestHTTPS_TLSv1(HTTPSDummyServerTestCase): certs = DEFAULT_CERTS.copy()