|
|
|
@ -1,21 +1,37 @@
|
|
|
|
|
%global srcname urllib3
|
|
|
|
|
|
|
|
|
|
# Tests are disabled to remove the test dependencies
|
|
|
|
|
# Specify --with tests to run the tests on e.g. EPEL
|
|
|
|
|
%bcond_with tests
|
|
|
|
|
|
|
|
|
|
Name: python-%{srcname}
|
|
|
|
|
Version: 1.26.5
|
|
|
|
|
Release: 5%{?dist}.1
|
|
|
|
|
Version: 1.24.2
|
|
|
|
|
Release: 7%{?dist}
|
|
|
|
|
Summary: Python HTTP library with thread-safe connection pooling and file post
|
|
|
|
|
|
|
|
|
|
License: MIT
|
|
|
|
|
URL: https://github.com/urllib3/urllib3
|
|
|
|
|
URL: https://github.com/shazow/urllib3
|
|
|
|
|
Source0: %{url}/archive/%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
|
# Unbundle ssl_match_hostname since we depend on it
|
|
|
|
|
# Used with Python 3.5+
|
|
|
|
|
Source1: ssl_match_hostname_py3.py
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
# CVE-2019-11236 python-urllib3:
|
|
|
|
|
# - CRLF injection due to not encoding the '\r\n' sequence leading to
|
|
|
|
|
# possible attack on internal service.
|
|
|
|
|
# - Also known as CVE-2019-9740 (duplicate entry)
|
|
|
|
|
# Backported from:
|
|
|
|
|
# * https://github.com/urllib3/urllib3/pull/1591
|
|
|
|
|
# - Superfluous commits were omitted (flake8 checks, travis settings, macos patch)
|
|
|
|
|
# * https://github.com/urllib3/urllib3/pull/1593
|
|
|
|
|
Patch1: CVE-2019-11236.patch
|
|
|
|
|
|
|
|
|
|
# Enable post-handshake authentication for TLS 1.3
|
|
|
|
|
# - https://github.com/urllib3/urllib3/issues/1634
|
|
|
|
|
# - https://bugzilla.redhat.com/show_bug.cgi?id=1726743
|
|
|
|
|
Patch2: Enable_TLS_1.3_post-handshake_authentication.patch
|
|
|
|
|
|
|
|
|
|
# CVE-2020-26137
|
|
|
|
|
# CRLF injection via HTTP request method
|
|
|
|
|
# Resolved upstream: https://github.com/urllib3/urllib3/pull/1800
|
|
|
|
|
Patch3: CVE-2020-26137.patch
|
|
|
|
|
|
|
|
|
|
# CVE-2023-43804
|
|
|
|
|
# Added the `Cookie` header to the list of headers to strip from
|
|
|
|
|
# requests when redirecting to a different host. As before, different headers
|
|
|
|
@ -24,47 +40,30 @@ BuildArch: noarch
|
|
|
|
|
# testing with dummyserver.
|
|
|
|
|
# Tracking bug: https://bugzilla.redhat.com/show_bug.cgi?id=2242493
|
|
|
|
|
# Upstream fix: https://github.com/urllib3/urllib3/commit/01220354d389cd05474713f8c982d05c9b17aafb
|
|
|
|
|
Patch1: CVE-2023-43804.patch
|
|
|
|
|
Patch4: CVE-2023-43804.patch
|
|
|
|
|
|
|
|
|
|
# CVE-2023-45803
|
|
|
|
|
# Remove HTTP request body when request method is changed.
|
|
|
|
|
# Tracking bug: https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2023-45803
|
|
|
|
|
# Upstream fix: https://github.com/urllib3/urllib3/commit/4e98d57809dacab1cbe625fddeec1a290c478ea9
|
|
|
|
|
Patch2: CVE-2023-45803.patch
|
|
|
|
|
|
|
|
|
|
# PoolManager.urlopen fails with TypeError for http connection if the PoolManager is instantiated with server_hostname
|
|
|
|
|
# Tracking bug: https://issues.redhat.com/browse/RHEL-39285
|
|
|
|
|
# Upstream fix: https://github.com/urllib3/urllib3/commit/f1d40fd07f7b5d9cf846a18fb5a920b4be07dfc5
|
|
|
|
|
Patch3: Add-server_hostname-to-SSL_KEYWORDS.patch
|
|
|
|
|
|
|
|
|
|
# CVE-2024-37891
|
|
|
|
|
# Proxy-authorization request header is not stripped during cross-origin redirects.
|
|
|
|
|
# Tracking bug: https://issues.redhat.com/browse/RHEL-43172
|
|
|
|
|
# Upstream fix: https://github.com/urllib3/urllib3/commit/40b6d1605814dd1db0a46e202d6e56f2e4c9a468
|
|
|
|
|
Patch4: CVE-2024-37891.patch
|
|
|
|
|
Patch5: CVE-2023-45803.patch
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Python HTTP module with connection pooling and file POST abilities.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package -n python3-%{srcname}
|
|
|
|
|
Summary: Python3 HTTP library with thread-safe connection pooling and file post
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
BuildRequires: python3-dateutil
|
|
|
|
|
# For unittests
|
|
|
|
|
BuildRequires: python3-nose
|
|
|
|
|
BuildRequires: python3-mock
|
|
|
|
|
BuildRequires: python3-six
|
|
|
|
|
BuildRequires: python3-pysocks
|
|
|
|
|
BuildRequires: python3-pytest
|
|
|
|
|
BuildRequires: python3-pytest-freezegun
|
|
|
|
|
BuildRequires: python3-pytest-timeout
|
|
|
|
|
BuildRequires: python3-tornado
|
|
|
|
|
BuildRequires: python3-trustme
|
|
|
|
|
BuildRequires: python3-idna
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Requires: ca-certificates
|
|
|
|
|
Requires: python3-idna
|
|
|
|
|
Requires: python3-six
|
|
|
|
|
Requires: python3-pysocks
|
|
|
|
|
|
|
|
|
@ -73,7 +72,14 @@ Python3 HTTP module with connection pooling and file POST abilities.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -p1 -n %{srcname}-%{version}
|
|
|
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
|
|
|
|
|
|
%patch1 -p1
|
|
|
|
|
%patch2 -p1
|
|
|
|
|
%patch3 -p1
|
|
|
|
|
%patch4 -p1
|
|
|
|
|
%patch5 -p1
|
|
|
|
|
|
|
|
|
|
# Make sure that the RECENT_DATE value doesn't get too far behind what the current date is.
|
|
|
|
|
# RECENT_DATE must not be older that 2 years from the build time, or else test_recent_date
|
|
|
|
|
# (from test/test_connection.py) would fail. However, it shouldn't be to close to the build time either,
|
|
|
|
@ -89,27 +95,26 @@ Python3 HTTP module with connection pooling and file POST abilities.
|
|
|
|
|
# result in false positive), but before at least 6 month ago (so this test could tolerate user's system time being
|
|
|
|
|
# set to some time in the past, but not to far away from the present).
|
|
|
|
|
# Next few lines update RECENT_DATE dynamically.
|
|
|
|
|
|
|
|
|
|
recent_date=$(date --date "7 month ago" +"%Y, %_m, %_d")
|
|
|
|
|
sed -i "s/^RECENT_DATE = datetime.date(.*)/RECENT_DATE = datetime.date($recent_date)/" src/urllib3/connection.py
|
|
|
|
|
|
|
|
|
|
# Drop the dummyserver tests in koji. They fail there in real builds, but not
|
|
|
|
|
# in scratch builds (weird).
|
|
|
|
|
|
|
|
|
|
# Drop the dummyserver tests in koji.
|
|
|
|
|
# These require tornado, a Web framework otherwise unused in the distro.
|
|
|
|
|
rm -rf test/with_dummyserver/
|
|
|
|
|
rm -rf test/test_connectionpool.py
|
|
|
|
|
rm -rf dummyserver/
|
|
|
|
|
# Don't run the Google App Engine tests
|
|
|
|
|
rm -rf test/appengine/
|
|
|
|
|
# Lots of these tests started failing, even for old versions, so it has something
|
|
|
|
|
# to do with Fedora in particular. They don't fail in upstream build infrastructure
|
|
|
|
|
rm -rf test/contrib/
|
|
|
|
|
|
|
|
|
|
# Tests for Python built without SSL, but Fedora builds with SSL. These tests
|
|
|
|
|
# Tests for Python built without SSL, but RHEL builds with SSL. These tests
|
|
|
|
|
# fail when combined with the unbundling of backports-ssl_match_hostname
|
|
|
|
|
rm -f test/test_no_ssl.py
|
|
|
|
|
|
|
|
|
|
# Use the standard library instead of a backport
|
|
|
|
|
sed -i -e 's/^import mock/from unittest import mock/' \
|
|
|
|
|
-e 's/^from mock import /from unittest.mock import /' \
|
|
|
|
|
test/*.py docs/conf.py
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%py3_build
|
|
|
|
|
|
|
|
|
@ -118,150 +123,85 @@ sed -i -e 's/^import mock/from unittest import mock/' \
|
|
|
|
|
%py3_install
|
|
|
|
|
|
|
|
|
|
# Unbundle the Python 3 build
|
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
|
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/six.*
|
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py*
|
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/six*
|
|
|
|
|
rm -rf %{buildroot}/%{python3_sitelib}/urllib3/packages/ssl_match_hostname/
|
|
|
|
|
|
|
|
|
|
mkdir -p %{buildroot}/%{python3_sitelib}/urllib3/packages/
|
|
|
|
|
cp -a %{SOURCE1} %{buildroot}/%{python3_sitelib}/urllib3/packages/ssl_match_hostname.py
|
|
|
|
|
ln -s %{python3_sitelib}/six.py %{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
|
|
|
|
|
ln -s %{python3_sitelib}/six.py \
|
|
|
|
|
%{buildroot}/%{python3_sitelib}/urllib3/packages/six.py
|
|
|
|
|
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.opt-1.pyc \
|
|
|
|
|
%{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
|
|
|
|
|
ln -s %{python3_sitelib}/__pycache__/six.cpython-%{python3_version_nodots}.pyc \
|
|
|
|
|
%{buildroot}/%{python3_sitelib}/urllib3/packages/__pycache__/
|
|
|
|
|
# urllib3 requires Python 3.5 to use the standard library's match_hostname,
|
|
|
|
|
# which we ship in RHEL8, so we can safely replace the bundled version with
|
|
|
|
|
# this stub which imports the necessary objects.
|
|
|
|
|
cp %{SOURCE1} %{buildroot}/%{python3_sitelib}/urllib3/packages/ssl_match_hostname.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with tests}
|
|
|
|
|
%check
|
|
|
|
|
%pytest -v
|
|
|
|
|
%endif
|
|
|
|
|
pushd test
|
|
|
|
|
PYTHONPATH=%{buildroot}%{python3_sitelib}:%{python3_sitelib} %{__python3} -m pytest -v
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n python3-%{srcname}
|
|
|
|
|
%license LICENSE.txt
|
|
|
|
|
%doc CHANGES.rst README.rst CONTRIBUTORS.txt
|
|
|
|
|
%{python3_sitelib}/urllib3/
|
|
|
|
|
%{python3_sitelib}/urllib3-*.egg-info/
|
|
|
|
|
%{python3_sitelib}/urllib3-*.egg-info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Jun 18 2024 Tomáš Hrnčiar <thrnciar@redhat.com> - 1.26.5-5.1
|
|
|
|
|
- Security fix for CVE-2024-37891
|
|
|
|
|
- Backport upstream patch to fix TypeError for http connection if the PoolManager
|
|
|
|
|
- is instantiated with server_hostname
|
|
|
|
|
Resolves: RHEL-49853
|
|
|
|
|
|
|
|
|
|
* Tue Dec 12 2023 Lumír Balhar <lbalhar@redhat.com> - 1.26.5-5
|
|
|
|
|
* Tue Dec 12 2023 Lumír Balhar <lbalhar@redhat.com> - 1.24.2-7
|
|
|
|
|
- Security fix for CVE-2023-45803
|
|
|
|
|
Resolves: RHEL-16874
|
|
|
|
|
Resolves: RHEL-16872
|
|
|
|
|
|
|
|
|
|
* Thu Oct 12 2023 Lumír Balhar <lbalhar@redhat.com> - 1.26.5-4
|
|
|
|
|
* Thu Oct 12 2023 Lumír Balhar <lbalhar@redhat.com> - 1.24.2-6
|
|
|
|
|
- Security fix for CVE-2023-43804
|
|
|
|
|
Resolves: RHEL-12001
|
|
|
|
|
|
|
|
|
|
* Tue Feb 08 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 1.26.5-3
|
|
|
|
|
- Add automatically generated Obsoletes tag with the python39- prefix
|
|
|
|
|
for smoother upgrade from RHEL8
|
|
|
|
|
- Related: rhbz#1990421
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.26.5-2
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Wed Jun 16 2021 Karolina Surma <ksurma@redhat.com> - 1.26.5-1
|
|
|
|
|
- Update to 1.26.5
|
|
|
|
|
- Fix for CVE-2021-33503 Catastrophic backtracking in URL authority parser
|
|
|
|
|
Resolves: rhbz#1972639
|
|
|
|
|
|
|
|
|
|
* Tue May 18 2021 Miro Hrončok <mhroncok@redhat.com> - 1.26.4-1
|
|
|
|
|
- Update to 1.26.4
|
|
|
|
|
Resolves: rhbz#1935737
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.25.10-6
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
Resolves: RHEL-11992
|
|
|
|
|
|
|
|
|
|
* Mon Mar 08 2021 Charalampos Stratakis <cstratak@redhat.com> - 1.25.10-5
|
|
|
|
|
- Disable tests on RHEL9 to remove the python-tornado dependency
|
|
|
|
|
* Mon Nov 09 2020 Charalampos Stratakis <cstratak@redhat.com> - 1.24.2-5
|
|
|
|
|
- Security fix for CVE-2020-26137
|
|
|
|
|
Resolves: rhbz#1883889
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.10-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jan 15 2021 Miro Hrončok <mhroncok@redhat.com> - 1.25.10-3
|
|
|
|
|
- Drop redundant BuildRequires for nose
|
|
|
|
|
- Instead of the mock backport, use unittest.mock from the standard library
|
|
|
|
|
|
|
|
|
|
* Tue Jan 05 2021 Anna Khaitovich <akhaitov@redhat.com> - 1.25.10-2
|
|
|
|
|
* Wed Oct 30 2019 Anna Khaitovich <akhaitov@redhat.com> - 1.24.2-4
|
|
|
|
|
- Update RECENT_DATE dynamically
|
|
|
|
|
Resolves: rhbz#1761380
|
|
|
|
|
|
|
|
|
|
* Sun Sep 27 2020 Kevin Fenzi <kevin@scrye.com> - 1.25.10-1
|
|
|
|
|
- Update to 1.25.10. Fixed bug #1824900
|
|
|
|
|
|
|
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.8-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 1.25.8-3
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1.25.8-2
|
|
|
|
|
- Bootstrap for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Sun Mar 22 2020 Carl George <carl@george.computer> - 1.25.8-1
|
|
|
|
|
- Latest upstream rhbz#1771186
|
|
|
|
|
|
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.7-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Nov 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.7-2
|
|
|
|
|
- Subpackage python2-urllib3 has been removed
|
|
|
|
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
|
|
|
|
|
|
|
|
|
* Tue Oct 15 2019 Jeremy Cline <jcline@redhat.com> - 1.25.6-1
|
|
|
|
|
- Update to v1.25.6
|
|
|
|
|
|
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-7
|
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
|
|
|
|
|
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-6
|
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-5
|
|
|
|
|
- Bootstrap for Python 3.8
|
|
|
|
|
|
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.25.3-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jul 08 2019 Miro Hrončok <mhroncok@redhat.com> - 1.25.3-3
|
|
|
|
|
- Set RECENT_DATE not to be older than 2 years (#1727796)
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-2
|
|
|
|
|
- Drop the Python 2 tests since Tornado is going away
|
|
|
|
|
|
|
|
|
|
* Tue May 28 2019 Jeremy Cline <jcline@redhat.com> - 1.25.3-1
|
|
|
|
|
- Update to 1.25.3
|
|
|
|
|
* Wed Aug 28 2019 Lumír Balhar <lbalhar@redhat.com> - 1.24.2-3
|
|
|
|
|
- Enable TLS 1.3 post-handshake authentication
|
|
|
|
|
- Adjust RECENT_DATE variable according to rules
|
|
|
|
|
Resolves: rhbz#1726743
|
|
|
|
|
|
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.24.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
* Wed May 22 2019 Tomas Orsava <torsava@redhat.com> - 1.24.2-2
|
|
|
|
|
- Rebuilding after gating was enabled
|
|
|
|
|
- Resolves: rhbz#1703361 rhbz#1706026
|
|
|
|
|
|
|
|
|
|
* Tue Nov 13 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-2
|
|
|
|
|
- Adjust unbundling of ssl_match_hostname
|
|
|
|
|
* Fri May 03 2019 Tomas Orsava <torsava@redhat.com> - 1.24.2-1
|
|
|
|
|
- Rebased to 1.24.2 to fix CVE-2019-11324
|
|
|
|
|
- Added patches for CVE-2019-11236 (AKA CVE-2019-9740)
|
|
|
|
|
- Resolves: rhbz#1703361 rhbz#1706026
|
|
|
|
|
|
|
|
|
|
* Mon Oct 29 2018 Jeremy Cline <jeremy@jcline.org> - 1.24.1-1
|
|
|
|
|
- Update to v1.24.1
|
|
|
|
|
* Wed Jul 11 2018 Petr Viktorin <pviktori@redhat.com> - 1.23-5
|
|
|
|
|
- Remove the Python 2 subpackage
|
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1590400
|
|
|
|
|
|
|
|
|
|
* Wed Jun 20 2018 Lumír Balhar <lbalhar@redhat.com> - 1.23-4
|
|
|
|
|
- Removed unneeded dependency python[23]-psutil
|
|
|
|
|
* Mon Jun 25 2018 Lumír Balhar <lbalhar@redhat.com> - 1.23-4
|
|
|
|
|
- Allow build with Python 2
|
|
|
|
|
|
|
|
|
|
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-3
|
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
* Wed Jun 20 2018 Petr Viktorin <pviktori@redhat.com> - 1.23-3
|
|
|
|
|
- Skip tests that require tornado
|
|
|
|
|
|
|
|
|
|
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 1.23-2
|
|
|
|
|
- Bootstrap for Python 3.7
|
|
|
|
|
* Wed Jun 20 2018 Lumír Balhar <lbalhar@redhat.com> - 1.23-2
|
|
|
|
|
- Remove unneeded python3-psutil dependency
|
|
|
|
|
|
|
|
|
|
* Tue Jun 05 2018 Jeremy Cline <jeremy@jcline.org> - 1.23-1
|
|
|
|
|
- Update to the latest upstream release (rhbz 1586072)
|
|
|
|
|
|
|
|
|
|
* Wed May 30 2018 Jeremy Cline <jeremy@jcline.org> - 1.22-10
|
|
|
|
|
- Backport patch to support Python 3.7 (rhbz 1584112)
|
|
|
|
|
* Tue May 22 2018 Petr Viktorin <pviktori@redhat.com> - 1.22-10
|
|
|
|
|
- Skip tests for python2 subpackage, due to missing dependencies (rhbz 1580882)
|
|
|
|
|
|
|
|
|
|
* Thu May 03 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.22-9
|
|
|
|
|
- Do not lowercase hostnames with custom-protocol (rhbz 1567862)
|
|
|
|
|