From 290191170d8be4db25bf3236d3b7b277fd34fbb3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 23 Sep 2024 14:07:38 -0500 Subject: [PATCH] Release 1.12.0 --- CHANGES.rst | 38 ++++++++++++++++++++++++++++++++++++++ CHANGES/1143.misc.rst | 1 - CHANGES/1150.feature.rst | 1 - CHANGES/1151.breaking.rst | 3 --- yarl/__init__.py | 2 +- 5 files changed, 39 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/1143.misc.rst delete mode 100644 CHANGES/1150.feature.rst delete mode 100644 CHANGES/1151.breaking.rst diff --git a/CHANGES.rst b/CHANGES.rst index 6a73e8ae..58c13e16 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,44 @@ Changelog .. towncrier release notes start +1.12.0 +====== + +*(2024-09-23)* + + +Features +-------- + +- Added :attr:`~yarl.URL.path_safe` to be able to fetch the path without ``%2F`` and ``%25`` decoded -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1150`. + + +Removals and backward incompatible breaking changes +--------------------------------------------------- + +- Restore decoding ``%2F`` (``/``) in ``URL.path`` -- by :user:`bdraco`. + + This change restored the behavior before :issue:`1136`. + + *Related issues and pull requests on GitHub:* + :issue:`1151`. + + +Miscellaneous internal changes +------------------------------ + +- Improved performance of processing paths -- by :user:`bdraco`. + + *Related issues and pull requests on GitHub:* + :issue:`1143`. + + +---- + + 1.11.1 ====== diff --git a/CHANGES/1143.misc.rst b/CHANGES/1143.misc.rst deleted file mode 100644 index a3ac5b65..00000000 --- a/CHANGES/1143.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Improved performance of processing paths -- by :user:`bdraco`. diff --git a/CHANGES/1150.feature.rst b/CHANGES/1150.feature.rst deleted file mode 100644 index fbcb1f32..00000000 --- a/CHANGES/1150.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added :attr:`~yarl.URL.path_safe` to be able to fetch the path without ``%2F`` and ``%25`` decoded -- by :user:`bdraco`. diff --git a/CHANGES/1151.breaking.rst b/CHANGES/1151.breaking.rst deleted file mode 100644 index 0eed99ff..00000000 --- a/CHANGES/1151.breaking.rst +++ /dev/null @@ -1,3 +0,0 @@ -Restore decoding ``%2F`` (``/``) in ``URL.path`` -- by :user:`bdraco`. - -This change restored the behavior before :issue:`1136`. diff --git a/yarl/__init__.py b/yarl/__init__.py index 76f7a437..1fbf702b 100644 --- a/yarl/__init__.py +++ b/yarl/__init__.py @@ -8,7 +8,7 @@ cache_info, ) -__version__ = "1.11.2.dev0" +__version__ = "1.12.0" __all__ = ( "URL",