Skip to content

Commit

Permalink
Release 3.10.9
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Oct 4, 2024
1 parent 08ada3e commit 710e35a
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 12 deletions.
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.11.0.dev0 (2024-10-04)
========================

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

0 comments on commit 710e35a

Please sign in to comment.