Skip to content

Commit

Permalink
🐛 Fixed QUIC connection not taking cert_data due to an accidental var…
Browse files Browse the repository at this point in the history
…iable override (#39)

2.2.902 (2023-11-05)
====================

- Fixed QUIC connection not taking ``cert_data`` due to an accidental
variable override.
  • Loading branch information
Ousret authored Nov 5, 2023
1 parent bafdcf6 commit e7e97ad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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)
====================

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/urllib3/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is protected via CODEOWNERS
from __future__ import annotations

__version__ = "2.2.901"
__version__ = "2.2.902"
2 changes: 0 additions & 2 deletions src/urllib3/contrib/hface/protocols/http3/_qh3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e7e97ad

Please sign in to comment.