From 2efd28ef5dcd8b7ad44a41777ce640debbbf9c39 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Wed, 24 Jan 2024 10:48:53 +0200 Subject: [PATCH] Preparing release 1.4.0 --- CHANGELOG.rst | 19 +++++++++++++++++++ changelog/463.feature.rst | 2 -- 2 files changed, 19 insertions(+), 2 deletions(-) delete mode 100644 changelog/463.feature.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b7ae00f4..d7af1746 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,6 +21,25 @@ Versions follow `Semantic Versioning `_ (``.. .. towncrier release notes start +pluggy 1.4.0 (2024-01-24) +========================= + +Features +-------- + +- `#463 `_: A warning :class:`~pluggy.PluggyTeardownRaisedWarning` is now issued when an old-style hookwrapper raises an exception during teardown. + See the warning documentation for more details. + +- `#471 `_: Add :func:`PluginManager.unblock ` method to unblock a plugin by plugin name. + +Bug Fixes +--------- + +- `#441 `_: Fix :func:`~pluggy.HookCaller.call_extra()` extra methods getting ordered before everything else in some circumstances. Regressed in pluggy 1.1.0. + +- `#438 `_: Fix plugins registering other plugins in a hook when the other plugins implement the same hook itself. Regressed in pluggy 1.1.0. + + pluggy 1.3.0 (2023-08-26) ========================= diff --git a/changelog/463.feature.rst b/changelog/463.feature.rst deleted file mode 100644 index 8340cc94..00000000 --- a/changelog/463.feature.rst +++ /dev/null @@ -1,2 +0,0 @@ -A warning :class:`~pluggy.PluggyTeardownRaisedWarning` is now issued when an old-style hookwrapper raises an exception during teardown. -See the warning documentation for more details.