Skip to content

DO NOT MERGE #11104

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

Merged
merged 5 commits into from
May 31, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Release 3.12.6 (#11103)
  • Loading branch information
bdraco authored May 31, 2025
commit 623690d815f7127f0beb170ce7d36b384cf4f55c
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@

.. towncrier release notes start

3.12.6 (2025-05-31)
===================

Bug fixes
---------

- Fixed spurious "Future exception was never retrieved" warnings for connection lost errors when the connector is not closed -- by :user:`bdraco`.

When connections are lost, the exception is now marked as retrieved since it is always propagated through other means, preventing unnecessary warnings in logs.


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




----


3.12.5 (2025-05-30)
===================

Expand Down
3 changes: 0 additions & 3 deletions CHANGES/11100.bugfix.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.12.5"
__version__ = "3.12.6"

from typing import TYPE_CHECKING, Tuple

Expand Down
Loading