From e7e97adec9e5f48fa5fe2a842d40678c05865fd2 Mon Sep 17 00:00:00 2001 From: TAHRI Ahmed R Date: Sun, 5 Nov 2023 18:44:19 +0100 Subject: [PATCH] :bug: Fixed QUIC connection not taking cert_data due to an accidental variable override (#39) 2.2.902 (2023-11-05) ==================== - Fixed QUIC connection not taking ``cert_data`` due to an accidental variable override. --- CHANGES.rst | 5 +++++ pyproject.toml | 8 ++++---- src/urllib3/_version.py | 2 +- src/urllib3/contrib/hface/protocols/http3/_qh3.py | 2 -- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 05afcefd02..efb105550e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +2.2.902 (2023-11-05) +==================== + +- Fixed QUIC connection not taking ``cert_data`` due to an accidental variable override. + 2.2.901 (2023-11-04) ==================== diff --git a/pyproject.toml b/pyproject.toml index 1a96d46a32..752445415b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,10 +59,10 @@ qh3 = [ ] [project.urls] -"Changelog" = "https://github.com/urllib3/urllib3/blob/main/CHANGES.rst" -"Documentation" = "https://urllib3.readthedocs.io" -"Code" = "https://github.com/urllib3/urllib3" -"Issue tracker" = "https://github.com/urllib3/urllib3/issues" +"Changelog" = "https://github.com/jawah/urllib3.future/blob/main/CHANGES.rst" +"Documentation" = "https://urllib3future.readthedocs.io" +"Code" = "https://github.com/jawah/urllib3.future" +"Issue tracker" = "https://github.com/jawah/urllib3.future/issues" [tool.hatch.version] path = "src/urllib3/_version.py" diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py index a232c449f4..1ca688affe 100644 --- a/src/urllib3/_version.py +++ b/src/urllib3/_version.py @@ -1,4 +1,4 @@ # This file is protected via CODEOWNERS from __future__ import annotations -__version__ = "2.2.901" +__version__ = "2.2.902" diff --git a/src/urllib3/contrib/hface/protocols/http3/_qh3.py b/src/urllib3/contrib/hface/protocols/http3/_qh3.py index dc7ee37d60..7b10c789b9 100644 --- a/src/urllib3/contrib/hface/protocols/http3/_qh3.py +++ b/src/urllib3/contrib/hface/protocols/http3/_qh3.py @@ -95,8 +95,6 @@ def __init__( tls_config.keypassword, ) - self._configuration.load_verify_locations(tls_config.cafile) - self._quic: QuicConnection = QuicConnection(configuration=self._configuration) self._connection_ids: set[bytes] = set() self._remote_address = remote_address