diff --git a/CHANGES.rst b/CHANGES.rst index f6010b9840a..443c62a184d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,46 @@ .. towncrier release notes start +3.10.7 (2024-09-27) +=================== + +Bug fixes +--------- + +- Fixed assembling the :class:`~yarl.URL` for web requests when the host contains a non-default port or IPv6 address -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9309`. + + + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of determining if a URL is absolute -- by :user:`bdraco`. + + The property :attr:`~yarl.URL.absolute` is more performant than the method ``URL.is_absolute()`` and preferred when newer versions of yarl are used. + + + *Related issues and pull requests on GitHub:* + :issue:`9171`. + + + +- Replaced code that can now be handled by ``yarl`` -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9301`. + + + + +---- + + 3.10.6 (2024-09-24) =================== diff --git a/CHANGES/9171.misc.rst b/CHANGES/9171.misc.rst deleted file mode 100644 index c6742edd891..00000000000 --- a/CHANGES/9171.misc.rst +++ /dev/null @@ -1,3 +0,0 @@ -Improved performance of determining if a URL is absolute -- by :user:`bdraco`. - -The property :attr:`~yarl.URL.absolute` is more performant than the method ``URL.is_absolute()`` and preferred when newer versions of yarl are used. diff --git a/CHANGES/9301.misc.rst b/CHANGES/9301.misc.rst deleted file mode 100644 index a751bdfc6dc..00000000000 --- a/CHANGES/9301.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Replaced code that can now be handled by ``yarl`` -- by :user:`bdraco`. diff --git a/CHANGES/9309.bugfix.rst b/CHANGES/9309.bugfix.rst deleted file mode 100644 index 73870da1938..00000000000 --- a/CHANGES/9309.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed assembling the :class:`~yarl.URL` for web requests when the host contains a non-default port or IPv6 address -- by :user:`bdraco`. diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 63367052646..cd3834cd3ff 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.10.6.dev0" +__version__ = "3.10.7" from typing import TYPE_CHECKING, Tuple