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] 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' %]]