From 2094e006eb6662b32b6448fa6c49e5039578a6cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Wed, 17 Dec 2025 13:16:51 +0100 Subject: [PATCH 1/2] Added update section for 4.6.27 --- .../from_4.6/update_from_4.6.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/update_and_migration/from_4.6/update_from_4.6.md b/docs/update_and_migration/from_4.6/update_from_4.6.md index 20f784d620..73044c69bb 100644 --- a/docs/update_and_migration/from_4.6/update_from_4.6.md +++ b/docs/update_and_migration/from_4.6/update_from_4.6.md @@ -452,6 +452,31 @@ Run the provided SQL upgrade script to add the missing indexes to your database: No additional steps needed. +## v4.6.27 + +### Removed Composer dependencies + +The following unused Composer dependencies have been removed from `ibexa/core`: + +- `guzzlehttp/guzzle` +- `php-http/guzzle6-adapter` + +If your project uses Guzzle directly, you should add these dependencies to your project's `composer.json` file. + +To check if you need to add these dependencies, run: + +```bash +composer why guzzlehttp/guzzle +composer why php-http/guzzle6-adapter +``` + +If only the `ibexa/core` entry appears in the output, check your codebase to determine if you use Guzzle directly. +If you do, add the required dependencies to your project: + +```bash +composer require guzzlehttp/guzzle:^6.5 php-http/guzzle6-adapter:^2.0 +``` + [[% include 'snippets/update/notify_support.md' %]] From 4b50ca586150423cff86a3220522a12e5da53455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Noco=C5=84?= Date: Mon, 19 Jan 2026 15:50:49 +0100 Subject: [PATCH 2/2] Update docs/update_and_migration/from_4.6/update_from_4.6.md --- docs/update_and_migration/from_4.6/update_from_4.6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/update_and_migration/from_4.6/update_from_4.6.md b/docs/update_and_migration/from_4.6/update_from_4.6.md index 73044c69bb..3783112fb8 100644 --- a/docs/update_and_migration/from_4.6/update_from_4.6.md +++ b/docs/update_and_migration/from_4.6/update_from_4.6.md @@ -470,7 +470,7 @@ composer why guzzlehttp/guzzle composer why php-http/guzzle6-adapter ``` -If only the `ibexa/core` entry appears in the output, check your codebase to determine if you use Guzzle directly. +If only the `ibexa/core` entry appears in the output, check your codebase to determine if you use Guzzle directly. If you do, add the required dependencies to your project: ```bash