2.x.x release notes
2.2.0.RELEASE
- 
added message codes for admin menu items
- 
of the entity management section
 - 
of a group of entities (defaults to the module name)
 - 
of a single entity type
 
 - 
 - 
EntityQuery Language allows specifying an order by clause or a
Sortspecifier - 
OptionIterableBuildercan return a sorted specification by implementing theisSorted()method- 
if the
OptionGeneratorhas no explicit sorting parameter set, it now only sorts if the configuredOptionIterableBuilderis not sorted - 
if you specify option values using an EQL statement, the sort specifier of your
EntityQuerywill be taken into account 
 - 
 - 
EntityQuery filtering now supports a basic and advanced mode to support the use of configured property filters and the use of eql statements
 
2.1.0.RELEASE
- 
improve the ability to customize page titles and layouts
- 
all entity views now set a page (sub) title if a matching message code returns a non-empty string
- 
there is a default title for all views except the list view
 
 - 
 - 
list views now also publish an
EntityPageStructureRenderedEvent 
 - 
 - 
select option controls now support
SelectFormElementConfigurationto render more advanced bootstrap-select controls - 
added ILIKE operator to the EntityQuery Language for case insensitive matching on String columns
- 
an
EntityQueryConditionTranslatorattribute can be registered on entity properties to ensure regular equal and like lookups are always converted to the case insensitive equivalent 
 - 
 
2.0.0.RELEASE
This release has a lot of breaking changes compared with the previous release. The code has been heavily rewritten and optimized. The public API modified accordingly with a focus on simplification and future extensibility.
- 
requires Across 2.0.0+
 - 
massive overhaul of the
EntitiesConfigurationBuildersystem - removed theand()concatenating of builder calls - 
massive overhaul of
EntityViewFactory,EntityViewProcessorand the default administration controllers- 
nested builder consumers are used instead - this greatly simplified the class hierarchy involved
 - 
externalized the entire
ViewElementinfrastructure to BootstrapUiModule - 
if BootstrapUiModule is not present, default views will not be created
 
 - 
 - 
compatibility update with Spring 4.2 which replaces
CrudInvokerwithRepositoryInvokerfrom spring-data-commons. - 
principal names on
Auditableentities are now pretty printed using theSecurityPrincipalLabelResolverStrategyfrom the SpringSecurityModule - 
EntityModule now supports deleting of entities
 - 
the
EntityModelof anEntityConfigurationcan now be customized using theEntityConfigurerbuilders - 
extension of the EntityQuery infrastructure
- 
addition of the EntityQuery Language (EQL) providing SQL-like syntax for building an
EntityQuery - 
provide a default EQL-based filter for list views
 
 - 
 - 
addition of the entity browser in the Developer tools section of AdminWebModule
- 
allows seeing all registered entities along with their attributes, properties, views and associations
 - 
the entity browser is only activate if development mode is active
 
 - 
 - 
streamlined the message code hierarchy for view rendering, see appendix for details
 - 
a list view can now have a default predicate assigned using an EQL statement
- 
this can be used to ensure a list result always has a default filter applied
 
 - 
 - 
default entity views support transactions, allowing multiple processors to modify data in a single transaction
- 
transactions are enabled by default for state modifying HTTP methods of all form views (create, update, delete and custom form views)
 
 - 
 - 
option controls (select, multi-checkbox) can be easily customized through a number of attributes
- 
making it easier to specify the option values that can be selected
 
 -