Skip to content

Commit aca375f

Browse files
authored
[v4.6.15] Added mention about removed Symfony packs (#2579)
* [v4.6.15] Added mention about removed Symfony packs * [v4.6.15] Update `latest_tag_4_6`
1 parent 800daf9 commit aca375f

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

docs/update_and_migration/from_3.3/update_from_3.3.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,18 @@ Adjust the web server configuration to prevent direct access to the `index.php`
514514

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

517+
### Removed `symfony/serializer-pack` dependency
518+
519+
This release no longer directly requires the `symfony/serializer-pack` Composer dependency, which can remove some dependencies from your project during the update process.
520+
521+
If you rely on them in your project, for example by using Symfony's `ObjectNormalizer` to create your own REST endpoints, run the following command before updating [[= product_name_base =]] packages:
522+
523+
``` bash
524+
composer require symfony/serializer-pack
525+
```
526+
527+
Then, verify that Symfony Flex installed the versions you were using before.
528+
517529

518530
## Finish the update
519531

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,17 @@ php bin/console ibexa:migrations:migrate --file=2024_07_25_07_00_non_translatabl
231231
Adjust the web server configuration to prevent direct access to the `index.php` file when using URLs consisting of multiple path segments.
232232

233233
See [the updated Apache and nginx template files](https://github.com/ibexa/post-install/pull/70/files) for more information.
234+
235+
## v4.6.15
236+
237+
### Removed `symfony/orm-pack` and `symfony/serializer-pack` dependencies
238+
239+
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.
240+
241+
If you rely on them in your project, for example by using Symfony's `ObjectNormalizer` to create your own REST endpoints, run the following command before updating [[= product_name_base =]] packages:
242+
243+
``` bash
244+
composer require symfony/serializer-pack symfony/orm-pack
245+
```
246+
247+
Then, verify that Symfony Flex installed the versions you were using before.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ extra:
929929
latest_tag_4_3: '4.3.5'
930930
latest_tag_4_4: '4.4.4'
931931
latest_tag_4_5: '4.5.7'
932-
latest_tag_4_6: '4.6.14'
932+
latest_tag_4_6: '4.6.15'
933933

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

0 commit comments

Comments
 (0)