Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/update_and_migration/from_4.6/update_from_4.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,31 @@

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.

Check warning on line 473 in docs/update_and_migration/from_4.6/update_from_4.6.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/update_and_migration/from_4.6/update_from_4.6.md#L473

[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.
Raw output
{"message": "[Ibexa.EOLWhitespace] Remove whitespace characters from the end of the line.", "location": {"path": "docs/update_and_migration/from_4.6/update_from_4.6.md", "range": {"start": {"line": 473, "column": 115}}}, "severity": "WARNING"}
If you do, add the required dependencies to your project:

```bash
composer require guzzlehttp/guzzle:^6.5 php-http/guzzle6-adapter:^2.0
```

<!-- End of update instructions -->

[[% include 'snippets/update/notify_support.md' %]]
Expand Down