4.2.16.Final release

This commit is contained in:
Gail Badner 2014-10-30 16:29:00 +01:00
parent 89d4fa9948
commit b24450147b
2 changed files with 23 additions and 1 deletions

View File

@ -51,7 +51,7 @@ subprojects { subProject ->
defaultTasks 'build'
group = 'org.hibernate'
version = '4.2.16-SNAPSHOT'
version = '4.2.16.Final'
// The OSGi manifest exported package versions need to be only the numerical release -- no "SNAPSHOT" or "Final"
exportPackageVersion = version.replaceAll("-SNAPSHOT", "");

View File

@ -5,6 +5,28 @@ match the actual issue resolution (i.e. a bug might not be a bug). Please
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.
Changes in version 4.2.16 (2014.10.30)
------------------------------------------------------------------------------------------------------------------------
**Sub-task
[HHH-9387] - Default table name for @ElementCollection uses owning entity class name
[HHH-9389] - Default join column name (FK) for @ElementCollection uses owning entity class name
[HHH-9390] - Default join column name (FK) for @ManyToMany uses owning entity primary table name
** Bug
[HHH-9305] - HQL FromElement is not reused in some cases resulting in an additional join
[HHH-9312] - Database connection leak with JTA transaction tracking and background thread not releasing database connection
[HHH-9327] - NamingStrategy regression (reverts HHH-9280)
[HHH-9369] - @Formula of enum type results in ClassCastException
[HHH-9455] - Hibernate triggers unnecessary select count query that imposes negative effect on performance.
[HHH-9461] - Cannot enable NamingStrategyDelegator implementations using entity manager
** Deprecation
[HHH-7079] - Deprecate NamingStrategy
** Improvement
[HHH-9388] - Create more flexible way to generate table and column names
Changes in version 4.2.15 (2014.07.16)
------------------------------------------------------------------------------------------------------------------------