Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Release 2.0.934 #24

Merged
merged 1 commit into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2.0.934 (2023-09-23)
====================

- Added public `ConnectionInfo` class that will be present in each `HttpConnection` instance.

Passing the kwarg ``on_post_connection`` that accept a callable with a single positional argument
in ``PoolManager.urlopen`` method will result in a call each time a connection is picked out
of the pool. The function will be passed a ``ConnectionInfo`` object.
The same argument (``on_post_connection``) can be passed down to the ``HTTPConnectionPool.urlopen`` method. (`#23 <https://github.com/jawah/urllib3.future/issues/23>`__)

- `#22 <https://github.com/jawah/urllib3.future/issues/22>`__


2.0.933 (2023-09-21)
====================

Expand Down
3 changes: 0 additions & 3 deletions changelog/22.misc.rst

This file was deleted.

6 changes: 0 additions & 6 deletions changelog/23.feature.rst

This file was deleted.

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.0.933"
__version__ = "2.0.934"
Loading