From 2ae61e1603e1534589c4a50f4ef6004b2f50b4e1 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Fri, 15 Aug 2025 16:07:58 +0200 Subject: [PATCH 1/2] Deprecate Joomla\CMS\Http package --- migrations/54-60/new-deprecations.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/migrations/54-60/new-deprecations.md b/migrations/54-60/new-deprecations.md index df71bb09..deadd471 100644 --- a/migrations/54-60/new-deprecations.md +++ b/migrations/54-60/new-deprecations.md @@ -11,3 +11,8 @@ New Deprecations All the new deprecations that should be aware of and what you should now be using instead. +## Class Deprecations + +### `Joomla\CMS\Http` is deprecated + +The whole `Joomla\CMS\Http` package is deprecated in Joomla 6.0 and will be removed in 7.0. Please use the Joomla Framework `Joomla\Http` package instead. The Framework package is an almost complete drop-in replacement. You only have to pay attention when accessing the data from the `Response` object. Don't read from the (magic) attributes, but use the PSR-7 methods instead. From 8a5cd406b37e5290dd9fb45e88031595c483c5e4 Mon Sep 17 00:00:00 2001 From: Hannes Papenberg Date: Fri, 15 Aug 2025 21:59:10 +0200 Subject: [PATCH 2/2] Update migrations/54-60/new-deprecations.md Co-authored-by: Martina Scholz <64533137+LadySolveig@users.noreply.github.com> --- migrations/54-60/new-deprecations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/54-60/new-deprecations.md b/migrations/54-60/new-deprecations.md index deadd471..19901380 100644 --- a/migrations/54-60/new-deprecations.md +++ b/migrations/54-60/new-deprecations.md @@ -15,4 +15,4 @@ All the new deprecations that should be aware of and what you should now be usin ### `Joomla\CMS\Http` is deprecated -The whole `Joomla\CMS\Http` package is deprecated in Joomla 6.0 and will be removed in 7.0. Please use the Joomla Framework `Joomla\Http` package instead. The Framework package is an almost complete drop-in replacement. You only have to pay attention when accessing the data from the `Response` object. Don't read from the (magic) attributes, but use the PSR-7 methods instead. +The whole `Joomla\CMS\Http` package is deprecated in Joomla 6.0 and will be removed in 8.0. Please use the Joomla Framework `Joomla\Http` package instead. The Framework package is an almost complete drop-in replacement. You only have to pay attention when accessing the data from the `Response` object. Don't read from the (magic) attributes, but use the PSR-7 methods instead.