This commit is contained in:
Andrea Boriero 2020-11-16 17:40:11 +00:00 committed by Sanne Grinovero
parent bc8e38a9a8
commit 64be512b7d
2 changed files with 17 additions and 1 deletions

View File

@ -3,6 +3,22 @@ Hibernate 5 Changelog
Note: Please refer to JIRA to learn more about each issue.
Changes in 5.3.20.Final (November 16th, 2020)
------------------------------------------------------------------------------------------------------------------------
https://hibernate.atlassian.net/projects/HHH/versions/31894/tab/release-report-all-issues
** Bug
* [HHH-14257] - An Entity A with a map collection having as index an Embeddable with a an association to the Entity A fails with a NPE
** Task
* [HHH-14225] - CVE-2020-25638 Potential for SQL injection on use_sql_comments logging enabled
* [HHH-14324] - Add .gradletasknamecache to .gitignore
** Improvement
* [HHH-14325] - Add Query hint for specifying "query spaces" for native queries
Changes in 5.3.19.Final (November 10th, 2020)
------------------------------------------------------------------------------------------------------------------------

View File

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