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 3.10.9 #9415

Merged
merged 3 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
64 changes: 64 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,70 @@

.. towncrier release notes start

3.10.9 (2024-10-04)
===============
bdraco marked this conversation as resolved.
Show resolved Hide resolved

Bug fixes
---------

- Fixed proxy headers being used in the ``ConnectionKey`` hash when a proxy was not being used -- by :user:`bdraco`.

If default headers are used, they are also used for proxy headers. This could have led to creating connections that were not needed when one was already available.


*Related issues and pull requests on GitHub:*
:issue:`9368`.



- Widened the type of the ``trace_request_ctx`` parameter of
:meth:`ClientSession.request() <aiohttp.ClientSession.request>` and friends
-- by :user:`layday`.


*Related issues and pull requests on GitHub:*
:issue:`9397`.




Removals and backward incompatible breaking changes
---------------------------------------------------

- Fixed failure to try next host after single-host connection timeout -- by :user:`brettdh`.

The default client :class:`aiohttp.ClientTimeout` params has changed to include a ``sock_connect`` timeout of 30 seconds so that this correct behavior happens by default.


*Related issues and pull requests on GitHub:*
:issue:`7342`.




Miscellaneous internal changes
------------------------------

- Improved performance of resolving hosts with Python 3.12+ -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`9342`.



- Reduced memory required for timer objects created during the client request lifecycle -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`9406`.




----


3.10.8 (2024-09-28)
===================

Expand Down
3 changes: 0 additions & 3 deletions CHANGES/7342.breaking.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9342.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/9368.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/9397.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9406.misc.rst

This file was deleted.

2 changes: 1 addition & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.10.9.dev0"
__version__ = "3.10.9"

from typing import TYPE_CHECKING, Tuple

Expand Down