This commit is contained in:
Andrea Boriero 2020-05-18 15:35:37 +01:00
parent b7f120d98c
commit 4e77fe06c8
2 changed files with 28 additions and 1 deletions

View File

@ -3,6 +3,33 @@ Hibernate 5 Changelog
Note: Please refer to JIRA to learn more about each issue. Note: Please refer to JIRA to learn more about each issue.
Changes in 5.4.16.Final (May 18, 2020)
------------------------------------------------------------------------------------------------------------------------
https://hibernate.atlassian.net/projects/HHH/versions/31851/tab/release-report-done
** Bug
* [HHH-13179] - Unionsubclass 2nd level caching no longer works for XML mappings in 5.3 and 5.4
* [HHH-13936] - No auto transaction joining from SessionImpl.doFlush
* [HHH-14004] - Enhanced Proxies are never loaded from 2LC
** New Feature
* [HHH-14019] - Allow customizing the Database target in the Schema Management tool
* [HHH-14024] - Allow the creation of a different QueryPlan
* [HHH-14025] - Add getter for update statements in query translator
* [HHH-14027] - Allow the creation of a different QueryLoader
* [HHH-14028] - Hibernate Reactive needs access to some private methods for support of reactive queries
** Task
* [HHH-13997] - Add methods to SessionImpl and StatefulPersistenceContext; make Loader#registerNonExists protected
* [HHH-14012] - Upgrade to Hibernate Validator 6.1.5.Final
** Improvement
* [HHH-13996] - Update documentation for HANA Cloud
* [HHH-14026] - Change scope for SessionImple#verifyImmutableEntityUpdate
* [HHH-14029] - Small optimisation in firing of PostLoadEventListener(s)
Changes in 5.4.15.Final (April 30, 2020) Changes in 5.4.15.Final (April 30, 2020)
------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@
apply plugin: 'base' apply plugin: 'base'
ext { ext {
ormVersion = new HibernateVersion( '5.4.16-SNAPSHOT', project ) ormVersion = new HibernateVersion( '5.4.16.Final', project )
baselineJavaVersion = '1.8' baselineJavaVersion = '1.8'
jpaVersion = new JpaVersion('2.2') jpaVersion = new JpaVersion('2.2')
} }