From 5104c4b7f3b99e8a78236053ac26aa59ed82f301 Mon Sep 17 00:00:00 2001 From: Gail Badner Date: Thu, 26 Mar 2020 22:15:06 -0700 Subject: [PATCH] 5.4.13 --- changelog.txt | 32 ++++++++++++++++++++++++++++++++ gradle/base-information.gradle | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 9d96a63c5e..d812af7995 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,38 @@ Hibernate 5 Changelog Note: Please refer to JIRA to learn more about each issue. +Changes in 5.4.13.Final (March 26, 2020) +------------------------------------------------------------------------------------------------------------------------ + +https://hibernate.atlassian.net/projects/HHH/versions/31829/tab/release-report-done + +** Bug + * [HHH-13322] - Sequence increment is not correctly determined + * [HHH-13619] - size() does not work properly as select expression + * [HHH-13711] - H2 dialect not accurate for drop table since version 1.4.200 + * [HHH-13870] - Gradle plugin causes compile task to be always out of date + * [HHH-13875] - Optional one-to-one does not always join the associated entity table when querying + * [HHH-13876] - Fix an obvious bug in StandardStack implementation + * [HHH-13891] - ProxyFactory should not be built if any ID or property getter/setter methods are final + * [HHH-13910] - MySQL57Dialect selected by automatic dialect resolution when using MySQL 8.0 database + +** New Feature + * [HHH-13799] - JPA Criteria API support for Hibernate Spatial + +** Task + * [HHH-13874] - Deprecate relevant methods that are supposed to be removed in v6.0 + +** Improvement + * [HHH-13103] - Allow Hibernate Types to get access to the current configuration properties using constructor injection + * [HHH-13853] - Pass the merged Integration settings and Persistence Unit properties to buildBootstrapServiceRegistry + * [HHH-13855] - Remove unnecessary declaration of JtaManager in HibernatePersistenceProviderAdaptor + * [HHH-13872] - Make the Java Stream close the underlying ScrollableResultsIterator upon calling a terminal operation + * [HHH-13873] - IdTableHelper can skip opening a connection when there's no statements to execute + * [HHH-13878] - Increase the scope of some methods to make them accessible outside of Hibernate ORM + * [HHH-13879] - Slow query log should use System#nanoTime not System#currentTimeMillis + * [HHH-13897] - ResultSetProcessingContextImpl: no need to clear collections before discarding the reference to them + + Changes in 5.4.12.Final (February 13, 2020) ------------------------------------------------------------------------------------------------------------------------ diff --git a/gradle/base-information.gradle b/gradle/base-information.gradle index ea01514f87..66ba5ec004 100644 --- a/gradle/base-information.gradle +++ b/gradle/base-information.gradle @@ -8,7 +8,7 @@ apply plugin: 'base' ext { - ormVersion = new HibernateVersion( '5.4.13-SNAPSHOT', project ) + ormVersion = new HibernateVersion( '5.4.13.Final', project ) baselineJavaVersion = '1.8' jpaVersion = new JpaVersion('2.2') }