diff --git a/CHANGES.rst b/CHANGES.rst index 71edb3798fc..0245204fe5e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,48 @@ .. towncrier release notes start +3.10.10 (2024-10-10) +==================== + +Bug fixes +--------- + +- Fixed error messages from :py:class:`~aiohttp.resolver.AsyncResolver` being swallowed -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9451`, :issue:`9455`. + + + + +Features +-------- + +- Added :exc:`aiohttp.ClientConnectorDNSError` for differentiating DNS resolution errors from other connector errors -- by :user:`mstojcevich`. + + + *Related issues and pull requests on GitHub:* + :issue:`8455`. + + + + +Miscellaneous internal changes +------------------------------ + +- Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9454`. + + + + +---- + + 3.10.9 (2024-10-04) =================== diff --git a/CHANGES/8455.feature.rst b/CHANGES/8455.feature.rst deleted file mode 100644 index 267e5243afa..00000000000 --- a/CHANGES/8455.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added :exc:`aiohttp.ClientConnectorDNSError` for differentiating DNS resolution errors from other connector errors -- by :user:`mstojcevich`. diff --git a/CHANGES/9451.bugfix.rst b/CHANGES/9451.bugfix.rst deleted file mode 100644 index 2adcbc66273..00000000000 --- a/CHANGES/9451.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed error messages from :py:class:`~aiohttp.resolver.AsyncResolver` being swallowed -- by :user:`bdraco`. diff --git a/CHANGES/9454.misc.rst b/CHANGES/9454.misc.rst deleted file mode 100644 index 5c842590512..00000000000 --- a/CHANGES/9454.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Simplified DNS resolution throttling code to reduce chance of race conditions -- by :user:`bdraco`. diff --git a/CHANGES/9455.bugfix.rst b/CHANGES/9455.bugfix.rst deleted file mode 120000 index da8457a1de6..00000000000 --- a/CHANGES/9455.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -9451.bugfix.rst \ No newline at end of file diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 246a9202b4e..2be76a4db4a 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.10.10.dev0" +__version__ = "3.10.10" from typing import TYPE_CHECKING, Tuple