Skip to content

Commit

Permalink
Release 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Sep 7, 2024
1 parent ad8a264 commit 67c2c02
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 12 deletions.
57 changes: 57 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,63 @@ Changelog

.. towncrier release notes start
1.10.0
======

*(2024-09-06)*


Bug fixes
---------

- Fixed joining a path when the existing path was empty -- by :user:`bdraco`.

A regression in :meth:`URL.join() <yarl.URL.join>` was introduced in :issue:`1082`.

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


Features
--------

- Added :meth:`URL.without_query_params() <yarl.URL.without_query_params>` method, to drop some parameters from query string -- by :user:`hongquan`.

*Related issues and pull requests on GitHub:*
:issue:`774`, :issue:`898`, :issue:`1010`.

- The previously protected types ``_SimpleQuery``, ``_QueryVariable``, and ``_Query`` are now available for use externally as ``SimpleQuery``, ``QueryVariable``, and ``Query`` -- by :user:`bdraco`.

*Related issues and pull requests on GitHub:*
:issue:`1050`, :issue:`1113`.


Contributor-facing changes
--------------------------

- Replaced all :class:`~typing.Optional` with :class:`~typing.Union` -- by :user:`bdraco`.

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


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

- Significantly improved performance of parsing the network location -- by :user:`bdraco`.

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

- Added internal types to the cache to prevent future refactoring errors -- by :user:`bdraco`.

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


----


1.9.11
======

Expand Down
1 change: 0 additions & 1 deletion CHANGES/1010.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1050.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1095.contrib.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1113.feature.rst

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/1118.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/774.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/898.feature.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.10.0.dev0"
__version__ = "1.10.0"

__all__ = (
"URL",
Expand Down

0 comments on commit 67c2c02

Please sign in to comment.