6.0.0.Alpha4

This commit is contained in:
Steve Ebersole 2019-12-20 06:53:47 -06:00
parent 99d4201730
commit a3e04f1d6c
2 changed files with 23 additions and 2 deletions

View File

@ -3,6 +3,27 @@ Hibernate 5 Changelog
Note: Please refer to JIRA to learn more about each issue.
Changes in 6.0.0.Alpha4 (December 20, 2019)
------------------------------------------------------------------------------------------------------------------------
https://hibernate.atlassian.net/projects/HHH/versions/31817
** Bug
* [HHH-13777] - UnsupportedOperationException is thrown for MappedSuperclass if the id is declared on subclasses
** Task
* [HHH-13746] - Implement Load by Multiple Ids using SQL AST
* [HHH-13763] - Update all load-by-key handling to use SQL AST
* [HHH-13778] - `@OrderBy` handling using SQL AST
** Improvement
* [HHH-13718] - secondary tables support
* [HHH-13769] - Avoid unnecessary joins
Changes in 5.4.10.Final (December 05, 2019)
------------------------------------------------------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@
apply plugin: 'base'
ext {
ormVersion = new HibernateVersion( '6.0.0-SNAPSHOT', project )
ormVersion = new HibernateVersion( '6.0.0.Alpha4', project )
baselineJavaVersion = '1.8'
jpaVersion = new JpaVersion('2.2')
}
@ -18,7 +18,7 @@ version = project.ormVersion.fullName
class JpaVersion {
/** The *normal* name (1.0, 2.0, ..) */
final String name;
final String name
final String osgiName