5.4.13
This commit is contained in:
parent
e1d2aecef7
commit
5104c4b7f3
|
@ -3,6 +3,38 @@ 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.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)
|
Changes in 5.4.12.Final (February 13, 2020)
|
||||||
------------------------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
apply plugin: 'base'
|
apply plugin: 'base'
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
ormVersion = new HibernateVersion( '5.4.13-SNAPSHOT', project )
|
ormVersion = new HibernateVersion( '5.4.13.Final', project )
|
||||||
baselineJavaVersion = '1.8'
|
baselineJavaVersion = '1.8'
|
||||||
jpaVersion = new JpaVersion('2.2')
|
jpaVersion = new JpaVersion('2.2')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue