Hello community,
here is the log from the commit of package python-requests for openSUSE:Factory
checked in at 2020-02-29 21:18:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-requests (Old)
and /work/SRC/openSUSE:Factory/.python-requests.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-requests"
Sat Feb 29 21:18:12 2020 rev:63 rq:778804 version:2.23.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes
2019-12-24 14:28:47.178541578 +0100
+++
/work/SRC/openSUSE:Factory/.python-requests.new.26092/python-requests.changes
2020-02-29 21:18:13.970055423 +0100
@@ -1,0 +2,9 @@
+Mon Feb 24 15:19:16 UTC 2020 - Ondřej Súkup <[email protected]>
+
+- update to 2.23.0
+- dropped merged_pr_5049.patch
+- refreshed requests-no-hardcoded-version.patch
+ * Remove defunct reference to prefetch in Session __attrs__
+ * Requests no longer outputs password in basic auth usage warning
+
+-------------------------------------------------------------------
Old:
----
merged_pr_5049.patch
requests-2.22.0.tar.gz
New:
----
requests-2.23.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-requests.spec ++++++
--- /var/tmp/diff_new_pack.nYxxoL/_old 2020-02-29 21:18:14.726055062 +0100
+++ /var/tmp/diff_new_pack.nYxxoL/_new 2020-02-29 21:18:14.726055062 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-requests
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -26,7 +26,7 @@
%endif
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-requests%{psuffix}
-Version: 2.22.0
+Version: 2.23.0
Release: 0
Summary: Python HTTP Library
License: Apache-2.0
@@ -36,7 +36,6 @@
# PATCH-FIX-SUSE: do not hardcode versions in setup.py/requirements
Patch0: requests-no-hardcoded-version.patch
Patch1: pr_5251-pytest5.patch
-Patch2: merged_pr_5049.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
++++++ requests-2.22.0.tar.gz -> requests-2.23.0.tar.gz ++++++
++++ 1717 lines of diff (skipped)
++++++ requests-no-hardcoded-version.patch ++++++
--- /var/tmp/diff_new_pack.nYxxoL/_old 2020-02-29 21:18:14.870054993 +0100
+++ /var/tmp/diff_new_pack.nYxxoL/_new 2020-02-29 21:18:14.870054993 +0100
@@ -1,17 +1,16 @@
-Index: requests-2.22.0/setup.py
+Index: requests-2.23.0/setup.py
===================================================================
---- requests-2.22.0.orig/setup.py
-+++ requests-2.22.0/setup.py
+--- requests-2.23.0.orig/setup.py
++++ requests-2.23.0/setup.py
@@ -42,14 +42,14 @@ if sys.argv[-1] == 'publish':
packages = ['requests']
requires = [
-- 'chardet>=3.0.2,<3.1.0',
-- 'idna>=2.5,<2.9',
-- 'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
+- 'chardet>=3.0.2,<4',
+- 'idna>=2.5,<3',
+ 'chardet>=3.0.2',
+ 'idna>=2.5',
-+ 'urllib3>=1.21.1',
+ 'urllib3>=1.21.1,<1.26,!=1.25.0,!=1.25.1',
'certifi>=2017.4.17'
]