Skip to content

Commit 2f46e11

Browse files
committed
4.6.27: Update doc for dropped unused guzzle dependencies (#2995)
* Added update section for 4.6.27 * Update docs/update_and_migration/from_4.6/update_from_4.6.md
1 parent a99e93a commit 2f46e11

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

docs/update_and_migration/from_4.6/update_from_4.6.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,31 @@ Run the provided SQL upgrade script to add the missing indexes to your database:
452452

453453
No additional steps needed.
454454

455+
## v4.6.27
456+
457+
### Removed Composer dependencies
458+
459+
The following unused Composer dependencies have been removed from `ibexa/core`:
460+
461+
- `guzzlehttp/guzzle`
462+
- `php-http/guzzle6-adapter`
463+
464+
If your project uses Guzzle directly, you should add these dependencies to your project's `composer.json` file.
465+
466+
To check if you need to add these dependencies, run:
467+
468+
```bash
469+
composer why guzzlehttp/guzzle
470+
composer why php-http/guzzle6-adapter
471+
```
472+
473+
If only the `ibexa/core` entry appears in the output, check your codebase to determine if you use Guzzle directly.
474+
If you do, add the required dependencies to your project:
475+
476+
```bash
477+
composer require guzzlehttp/guzzle:^6.5 php-http/guzzle6-adapter:^2.0
478+
```
479+
455480
<!-- End of update instructions -->
456481

457482
[[% include 'snippets/update/notify_support.md' %]]

0 commit comments

Comments
 (0)