Skip to content

Commit

Permalink
[v4.6.15] Added mention about removed Symfony packs
Browse files Browse the repository at this point in the history
  • Loading branch information
mnocon committed Dec 13, 2024
1 parent 800daf9 commit b503218
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/update_and_migration/from_3.3/update_from_3.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,18 @@ Adjust the web server configuration to prevent direct access to the `index.php`

See [the updated Apache and nginx template files](https://github.com/ibexa/post-install/pull/70/files) for more information.

### Removed `symfony/serializer-pack` dependency

This release no longer directly requires the `symfony/serializer-pack` Composer dependency, which can remove some dependencies from your project during the update process.

If you rely on them in your project and need to continue using them, run the following command before updating Ibexa packages:

Check failure on line 521 in docs/update_and_migration/from_3.3/update_from_3.3.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/update_and_migration/from_3.3/update_from_3.3.md#L521

[Ibexa.VariablesGlobal] Use global variable '[[= product_name_base =]]' instead of 'Ibexa'
Raw output
{"message": "[Ibexa.VariablesGlobal] Use global variable '[[= product_name_base =]]' instead of 'Ibexa'", "location": {"path": "docs/update_and_migration/from_3.3/update_from_3.3.md", "range": {"start": {"line": 521, "column": 112}}}, "severity": "ERROR"}

``` bash
composer require symfony/serializer-pack
```

and verify that Symfony Flex installs the versions you were using before.


## Finish the update

Expand Down
14 changes: 14 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 @@ -231,3 +231,17 @@ php bin/console ibexa:migrations:migrate --file=2024_07_25_07_00_non_translatabl
Adjust the web server configuration to prevent direct access to the `index.php` file when using URLs consisting of multiple path segments.

See [the updated Apache and nginx template files](https://github.com/ibexa/post-install/pull/70/files) for more information.

## v4.6.15

### Removed `symfony/orm-pack` and `symfony/serializer-pack` dependencies

This release no longer directly requires the `symfony/orm-pack` and `symfony/serializer-pack` Composer dependencies, which can remove some dependencies from your project during the update process.

If you rely on them in your project and need to continue using them, run the following command before updating Ibexa packages:

Check failure on line 241 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#L241

[Ibexa.VariablesGlobal] Use global variable '[[= product_name_base =]]' instead of 'Ibexa'
Raw output
{"message": "[Ibexa.VariablesGlobal] Use global variable '[[= product_name_base =]]' instead of 'Ibexa'", "location": {"path": "docs/update_and_migration/from_4.6/update_from_4.6.md", "range": {"start": {"line": 241, "column": 112}}}, "severity": "ERROR"}

``` bash
composer require symfony/serializer-pack symfony/orm-pack
```

and verify that Symfony Flex installs the versions you were using before.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ extra:
latest_tag_4_3: '4.3.5'
latest_tag_4_4: '4.4.4'
latest_tag_4_5: '4.5.7'
latest_tag_4_6: '4.6.14'
latest_tag_4_6: '4.6.15'

symfony_doc: 'https://symfony.com/doc/5.4'
user_doc: 'https://doc.ibexa.co/projects/userguide/en/master'
Expand Down

0 comments on commit b503218

Please sign in to comment.