Built-in data table, column, filter, action and exporter types are now marked as "final".
This promotes the usage of getParent() method instead of PHP inheritance.
The extensions (not type extensions!) were a mechanisms copied from Symfony Form component. Their main purpose was to provide a way to load type and type extension classes manually. In most cases, that would be used only outside the framework, which is out of scope of this bundle.
Everything related with extensions is now completely removed. Every type and type extension class defined in the container is now passed directly to the registry classes.
- [Feature] French translation (Kreyu#53)
- [Feature] Doctrine ORM expression transformers with built-in
lower,upperandtrimoptions (Kreyu#50) - [Feature] Filter handler events
- [Docs] New documentation, written using VitePress
- [Feature] Integration with AssetMapper (Kreyu#42)
- [Feature] Data table events
- [Feature] Column
priorityoption to allow setting order of columns - [Feature] Column
visibleoption to allow setting visibility of columns - [Feature] Column
personalizableoption to allow excluding the column from personalization - [Feature] More verbose filter type form-related options such as
form_type,operator_form_type - [Feature] Ability to set hydration mode of the Doctrine ORM proxy query
- [Feature] Data table builder's
setSearchHandlermethod for easier search definition - [Feature] The
CollectionColumnTypedefault separator changed', '(with space after comma) instead of',' - [Feature] Ability to create
ExportDatawith exporter name string - [Feature] Ability to provide property path in the
SortingColumnData. The data table ensures valid property path is given (backwards compatible) - [Feature] The Doctrine ORM
EntityFilterTypeno longer requiresform_options.choice_valueoption as the identifier field name will be retrieved from Doctrine class metadata by default - [Feature] The
DateColumnTypethat works exactly likeDateTimeColumnType, but with date-only format by default - [Breaking change] The data table type persistence subject options are removed in favor of subject provider options (see more)
- [Breaking change] Optimized exporting process - introduces breaking changes (see more)
- [Breaking change] The
DataTableBuildermethods to add columns, filters, actions and exporters has changed definition - thetypeargument is now nullable to prepare for future implementation of type guessers - [Bugfix] Fixed a bug in personalization form where changing the column visibility resulted in an exception
- [Bugfix] The
CollectionColumnTypenow renders without spaces around separator - [Bugfix] Default export data is now properly used within the export form
Internally, the columns, filters and exporters are now utilizing the builder pattern similar to data tables. Please note that this is a breaking change for applications using internal bundle classes!
For a list of all breaking changes and deprecations, see the upgrade guide.
- [Feature] Batch actions (see more)
- [Feature] Improved DX with row actions (see more)
- [Feature] Actions
visibleoption (see more) - [Feature] NumberColumnType with optional Intl integration (see more)
- [Feature] MoneyColumnType with optional Intl integration (see more)
Internally, the actions are now utilizing the builder pattern similar to data tables. Please note that this is a breaking change for applications using internal bundle classes!