Skip to content

Commit 116dbda

Browse files
authored
Release 1.19.0 (#1499)
1 parent 4eda39d commit 116dbda

12 files changed

+76
-21
lines changed

CHANGES.rst

+75
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,81 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
1.19.0
18+
======
19+
20+
*(2025-04-05)*
21+
22+
23+
Bug fixes
24+
---------
25+
26+
- Fixed entire name being re-encoded when using :py:meth:`yarl.URL.with_suffix` -- by :user:`NTFSvolume`.
27+
28+
*Related issues and pull requests on GitHub:*
29+
:issue:`1468`.
30+
31+
32+
Features
33+
--------
34+
35+
- Started building armv7l wheels for manylinux -- by :user:`bdraco`.
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`1495`.
39+
40+
41+
Contributor-facing changes
42+
--------------------------
43+
44+
- GitHub Actions CI/CD is now configured to manage caching pip-ecosystem
45+
dependencies using `re-actors/cache-python-deps`_ -- an action by
46+
:user:`webknjaz` that takes into account ABI stability and the exact
47+
version of Python runtime.
48+
49+
.. _`re-actors/cache-python-deps`:
50+
https://github.com/marketplace/actions/cache-python-deps
51+
52+
*Related issues and pull requests on GitHub:*
53+
:issue:`1471`.
54+
55+
- Increased minimum `propcache`_ version to 0.2.1 to fix failing tests -- by :user:`bdraco`.
56+
57+
.. _`propcache`:
58+
https://github.com/aio-libs/propcache
59+
60+
*Related issues and pull requests on GitHub:*
61+
:issue:`1479`.
62+
63+
- Added all hidden folders to pytest's ``norecursedirs`` to prevent it
64+
from trying to collect tests there -- by :user:`lysnikolaou`.
65+
66+
*Related issues and pull requests on GitHub:*
67+
:issue:`1480`.
68+
69+
70+
Miscellaneous internal changes
71+
------------------------------
72+
73+
- Improved accuracy of type annotations -- by :user:`Dreamsorcerer`.
74+
75+
*Related issues and pull requests on GitHub:*
76+
:issue:`1484`.
77+
78+
- Improved performance of parsing query strings -- by :user:`bdraco`.
79+
80+
*Related issues and pull requests on GitHub:*
81+
:issue:`1493`, :issue:`1497`.
82+
83+
- Improved performance of the C unquoter -- by :user:`bdraco`.
84+
85+
*Related issues and pull requests on GitHub:*
86+
:issue:`1496`, :issue:`1498`.
87+
88+
89+
----
90+
91+
1792
1.18.3
1893
======
1994

CHANGES/1468.bugfix.rst

-1
This file was deleted.

CHANGES/1471.contrib.rst

-7
This file was deleted.

CHANGES/1479.contrib.rst

-4
This file was deleted.

CHANGES/1480.contrib.rst

-2
This file was deleted.

CHANGES/1484.misc.rst

-1
This file was deleted.

CHANGES/1493.misc.rst

-1
This file was deleted.

CHANGES/1495.feature.rst

-1
This file was deleted.

CHANGES/1496.misc.rst

-1
This file was deleted.

CHANGES/1497.misc.rst

-1
This file was deleted.

CHANGES/1498.misc.rst

-1
This file was deleted.

yarl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ._query import Query, QueryVariable, SimpleQuery
22
from ._url import URL, cache_clear, cache_configure, cache_info
33

4-
__version__ = "1.18.4.dev0"
4+
__version__ = "1.19.0"
55

66
__all__ = (
77
"URL",

0 commit comments

Comments
 (0)