Skip to content

Commit f9a9e85

Browse files
authored
Release 3.10.7 (#9320)
1 parent 8220ced commit f9a9e85

File tree

5 files changed

+41
-6
lines changed

5 files changed

+41
-6
lines changed

CHANGES.rst

+40
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,46 @@
1010

1111
.. towncrier release notes start
1212
13+
3.10.7 (2024-09-27)
14+
===================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed assembling the :class:`~yarl.URL` for web requests when the host contains a non-default port or IPv6 address -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`9309`.
24+
25+
26+
27+
28+
Miscellaneous internal changes
29+
------------------------------
30+
31+
- Improved performance of determining if a URL is absolute -- by :user:`bdraco`.
32+
33+
The property :attr:`~yarl.URL.absolute` is more performant than the method ``URL.is_absolute()`` and preferred when newer versions of yarl are used.
34+
35+
36+
*Related issues and pull requests on GitHub:*
37+
:issue:`9171`.
38+
39+
40+
41+
- Replaced code that can now be handled by ``yarl`` -- by :user:`bdraco`.
42+
43+
44+
*Related issues and pull requests on GitHub:*
45+
:issue:`9301`.
46+
47+
48+
49+
50+
----
51+
52+
1353
3.10.6 (2024-09-24)
1454
===================
1555

CHANGES/9171.misc.rst

-3
This file was deleted.

CHANGES/9301.misc.rst

-1
This file was deleted.

CHANGES/9309.bugfix.rst

-1
This file was deleted.

aiohttp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.10.6.dev0"
1+
__version__ = "3.10.7"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)