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.7 #9320

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
40 changes: 40 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
===================

Expand Down
3 changes: 0 additions & 3 deletions CHANGES/9171.misc.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9309.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.10.6.dev0"
__version__ = "3.10.7"

from typing import TYPE_CHECKING, Tuple

Expand Down
Loading