From f49af288eadaea1ba264b151da03e2a16ba25eab Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Wed, 12 Feb 2025 10:26:40 +0100 Subject: [PATCH] Remove LegacyErrorHandlingTrait from CategoryNode & Changelog --- migrations/54-60/removed-backward-incompatibility.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/migrations/54-60/removed-backward-incompatibility.md b/migrations/54-60/removed-backward-incompatibility.md index 4005afa4..35b66195 100644 --- a/migrations/54-60/removed-backward-incompatibility.md +++ b/migrations/54-60/removed-backward-incompatibility.md @@ -139,3 +139,10 @@ if ($app instanceof \Joomla\CMS\Application\ConsoleApplication) { // Do your stuff } ``` + + +### Remove LegacyErrorHandlingTrait from CategoryNode & Changelog class + +- PR: https://github.com/joomla/joomla-cms/pull/43777 +- Files: libraries/src/Categories/CategoryNode.php, libraries/src/Changelog/Changelog.php +- Description: The `CategoryNode` class and the `Changelog` class both contained the `LegacyErrorHandlingTrait`, but both didn't use it. Since the trait is deprecated, it has been removed from these two classes in 6.0 without replacement.