From 85ab608837e5aa04cddf6d38e90a779f06ca5e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 9 Oct 2023 19:45:30 +0200 Subject: [PATCH] Switch the hardcoded dependency on urllib3[socks] to a weak one --- python-urllib3.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/python-urllib3.spec b/python-urllib3.spec index 59cf01b..1a072df 100644 --- a/python-urllib3.spec +++ b/python-urllib3.spec @@ -8,7 +8,7 @@ Name: python-urllib3 Version: 1.26.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: HTTP library with thread-safe connection pooling, file post, and more # SPDX @@ -77,9 +77,9 @@ Requires: %{py3_dist idna} Provides: bundled(python3dist(six)) = 1.16.0 # There has historically been a manual hard dependency on python3-pysocks; -# since bringing it in is the sole function of python3-urllib3+socks, we just -# depend on that instead. -Requires: python3-urllib3+socks = %{version}-%{release} +# since bringing it in is the sole function of python3-urllib3+socks, +# we recommend it, so it is installed by default. +Recommends: python3-urllib3+socks %description -n python3-urllib3 %{_description} @@ -154,6 +154,9 @@ ignore="${ignore-} --ignore=test/test_no_ssl.py" %changelog +* Mon Oct 09 2023 Miro HronĨok - 1.26.17-2 +- Switch the hardcoded dependency on urllib3[socks] to a weak one + * Mon Oct 02 2023 Benjamin A. Beasley - 1.26.17-1 - Update to 1.26.17: fix CVE-2023-43804 (GHSA-v845-jxx5-vc9f)