Skip to content

Commit

Permalink
Release 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Sep 8, 2024
1 parent 80e5740 commit 1bd0937
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 10 deletions.
54 changes: 54 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,60 @@ Changelog

.. towncrier release notes start
1.11.0
======

*(2024-09-08)*


Features
--------

- Added :meth:`URL.extend_query() <yarl.URL.extend_query>` method, which can be used to extend parameters without replacing same named keys -- by :user:`bdraco`.

This method was primarily added to replace the inefficient hand rolled method currently used in ``aiohttp``.

*Related issues and pull requests on GitHub:*
:issue:`1128`.


Miscellaneous internal changes
------------------------------

- Improved performance of the Cython ``cached_property`` implementation -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1122`.

- Simplified computing ports by removing unnecessary code -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1123`.

- Improved performance of encoding non IPv6 hosts -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1125`.

- Improved performance of :meth:`URL.build() <yarl.URL.build>` when the path, query string, or fragment is an empty string -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1126`.

- Improved performance of the :meth:`URL.update_query() <yarl.URL.update_query>` method -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1130`.

- Improved performance of processing query string changes when arguments are :class:`str` -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1131`.


----


1.10.0
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1122.misc.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1128.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion yarl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cache_info,
)

__version__ = "1.11.0.dev0"
__version__ = "1.11.0"

__all__ = (
"URL",
Expand Down

0 comments on commit 1bd0937

Please sign in to comment.