All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.
1.6.1 - 2021-07-17
- [#280] JS will now use the delete field to mark a fragment as deleted instead of not sending the value (@srascar)
- [#284] Back Office Title is correctly submitted as empty string when empty in form request (@srascar)
1.6.0 - 2021-02-15
- [#171] SonataEasyExtendsBundle is now optional, using SonataDoctrineBundle is preferred (@jordisala1991)
- [#171] Using SonataEasyExtendsBundle to add Doctrine mapping information (@jordisala1991)
1.5.0 - 2020-07-16
- [#173] SonataCoreBundle dependencies (@jordisala1991)
- [#173] Support for Symfony < 4.4 (@jordisala1991)
1.4.1 - 2020-03-19
- article fragments reset order bug
1.4.0 - 2020-01-06
- new Twig blocks in
edit_collection_fragment.html.twig
1.3.0 - 2019-12-14
- Added to fragmentList.jquery.js
moveSelectedFragmentOutsideOfForm()
to move selected fragment in tmp dom - Added to fragmentList.jquery.js
cancelFragmentDeletion()
to cancel the fragment deletion
The 'removed' fragments are not removed completely just moved in another dom, which allows the cancellation.
1.2.2 - 2019-11-14
- special chars handling in the "type" field
1.2.1 - 2019-10-14
- Syntax error in template
1.2.0 - 2019-05-28
- Add
|trans()
in the follow twig files:edit_collection_fragment.html.twig
andform.html.twig
to translate the fragment name. - Add Hungarian translations
- Changed
ArticleInterface
,FragmentInterface
andArticleFragmentInterface
to allow null return types.
- Fix deprecation for symfony/config 4.2+
1.1.0 - 2018-12-11
- Added
Article::isValidated()
method
- Fixed
Article::getValidatedAt()
to be able to return null
- In
AbstractArticle
,getValidatedAt(): \DateTimeInterface
becomesgetValidatedAt(): ?\DateTimeInterface
, this is technically a BC-break