Skip to content

Commit 4aea273

Browse files
committed
5.2.0
1 parent e615d76 commit 4aea273

File tree

2 files changed

+95
-1
lines changed

2 files changed

+95
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ allprojects {
5454
}
5555

5656
ext {
57-
hibernateTargetVersion = '5.2.0-SNAPSHOT'
57+
hibernateTargetVersion = '5.2.0.Final'
5858
expectedGradleVersion = '2.10'
5959
baselineJavaVersion = '1.8'
6060

changelog.txt

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,100 @@ Hibernate 5.0 Changelog
33

44
Note: Please refer to JIRA to learn more about each issue.
55

6+
7+
Changes in 5.2.0.Final (June 1, 2016)
8+
------------------------------------------------------------------------------------------------------------------------
9+
https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done
10+
https://hibernate.atlassian.net/browse/HHH-8507?jql=statusCategory%20%3D%20done%20AND%20project%20%3D%2010031%20AND%20fixVersion%20%3D%2023150%20ORDER%20BY%20priority%20DESC%2C%20key%20ASC
11+
12+
** Bug
13+
* [HHH-6781] - Class level @Where annotation is not enforced on collections of that class
14+
* [HHH-7355] - Hibernate criteria JOIN + additional condition (with clause) don't work with many-to-many association
15+
* [HHH-8507] - SQLServer2005LimitHandler throws "string out of range -1" error
16+
* [HHH-9178] - Querying audited entities with embeddables fails with 'org.hibernate.QueryException: could not resolve property:'
17+
* [HHH-9602] - Schema validation fails when materialized view is involved
18+
* [HHH-9676] - TypeSafeActivator.applyDDL doesn't process composing constraints when @NotNull is present
19+
* [HHH-9894] - Support Informix Boolean Type
20+
* [HHH-9951] - Formula annotation doesn't properly escape keywords/types
21+
* [HHH-10143] - Apache Derby and PostgreSQL - Criteria selectCase with Enum fails without explicit cast
22+
* [HHH-10246] - PropertyNotFoundException with Hibernate Envers when using referencedColumn in @JoinColumn and bidirectional @OneTomany
23+
* [HHH-10287] - Cache keys no longer include the entity type
24+
* [HHH-10290] - org.hibernate.test.cfg.BatchVersionedDataConfigTest does not work properly when hibernate.jdbc.batch_versioned_data is set in environment
25+
* [HHH-10365] - Karaf feature hibernate-envers fails to create EntityManagerFactory
26+
* [HHH-10373] - Sequence generator for idbag ignores generator parameters
27+
* [HHH-10468] - If global "with modified flag" set, you cannot override the value
28+
* [HHH-10476] - Getting an entity with composite ID containing a detached entity fails if PersistenceContext contains a managed copy
29+
* [HHH-10513] - Follow-on locking WARN message logged when query LockMode is NONE
30+
* [HHH-10522] - Invalid reference to naming chapter in user guide
31+
* [HHH-10524] - Invalid reference wrt composite identifiers
32+
* [HHH-10525] - Invalid reference to bytecode enhancement in User Guide
33+
* [HHH-10526] - SchemaCreator does not apply SchemaFilter on foreign keys
34+
* [HHH-10535] - Documentation: hibernate.order_updates configuration property
35+
* [HHH-10587] - Test NationalizedIgnoreCaseTest.testIgnoreCaseCriteria fails on some databases that don't support nString type
36+
* [HHH-10588] - ConnectionsReleaseTest should use H2Dialect
37+
* [HHH-10598] - Oracle JDBC driver can't handle entities with a one-character name in some cases
38+
* [HHH-10601] - Persistence.generateSchema - the output file contains duplicated DDL statements
39+
* [HHH-10605] - HSQLDialect dosn't use "if exists" when dropping sequences
40+
* [HHH-10612] - Check for support of RefCursor in Java 8
41+
* [HHH-10640] - SchemaCreationTest fails on DB2 due to wrong expected statement
42+
* [HHH-10641] - Some tests fail on Oracle due to ORA-00972: identifier is too long
43+
* [HHH-10646] - Lazy fetch not properly handled when annotation in @MappedSuperclass
44+
* [HHH-10649] - When 2LC enabled, flush session and then refresh entity cause dirty read in another session / transaction
45+
* [HHH-10678] - hibernate-mapping's schema is ignored
46+
* [HHH-10684] - No target script generated for update action when using schema-generation
47+
* [HHH-10688] - Document changes from HHH-10056 in User Documentation
48+
* [HHH-10706] - Test case native queries fail with case-sensitive databases dialects.
49+
* [HHH-10708] - Accessing a lazy collection in an enhanced class deletes it afterwards
50+
* [HHH-10718] - Underscore in table name can result in SchemaExtractionException: More than one table found
51+
* [HHH-10734] - Hibernate Envers creates unnecessary audit rows for tables with LOB data
52+
* [HHH-10736] - SQLServer dialect issue with native sql
53+
* [HHH-10754] - Add support for PARTITION keyword in @Formula
54+
* [HHH-10756] - StoredProcedureQuery with OUT param fails with Oracle when using named parameters
55+
* [HHH-10757] - "select new ..." with CAST( NULL AS ...) fails with QuerySyntaxException: unexpected AST node: NULL
56+
* [HHH-10765] - Some links in the user guide are broken
57+
* [HHH-10766] - XML Enum mapping with parameter 'type'
58+
* [HHH-10772] - RuntimeException during releaseStatements causes JDBC connection not to be closed
59+
60+
** New Feature
61+
* [HHH-8070] - Support "in" expression in AuditRelatedId
62+
* [HHH-9339] - java.lang.Optional support
63+
* [HHH-10431] - Session-level configurable batch size support
64+
* [HHH-10669] - Allow to add SF-scoped services through a ServiceContributor
65+
* [HHH-10689] - Fix tests failing when switching to Oracle
66+
* [HHH-10691] - Fix tests failing when switching to PostgreSQL
67+
* [HHH-10696] - Add a new CatalogFilterTest
68+
* [HHH-10762] - Implement left-joins for relation traversion in audit queries
69+
70+
** Task
71+
* [HHH-10664] - Prep 5.2 feature branch
72+
* [HHH-10670] - Remove deprecated ValidTimeAuditStrategy
73+
* [HHH-10760] - Add a getter to org.hibernate.mapping.Index to expose the columnOrderMap
74+
* [HHH-10781] - Remove all slf4j dependencies
75+
76+
** Improvement
77+
* [HHH-9340] - Streams API for query result processing.
78+
* [HHH-9406] - QueryStatistics is useless for really fast queries
79+
* [HHH-9570] - Auto-detect SQL Server 2014 when the major version is 12
80+
* [HHH-9742] - Allow to strictly adhere to JPA disallowance of restricting a fetched join
81+
* [HHH-10049] - References to unmapped classes in from clause should not be allowed with strict JPQL compliance
82+
* [HHH-10052] - documentation about hashcode and equals not up to date
83+
* [HHH-10085] - Remove cast from SearchedCaseExpression and SimpleCaseExpression
84+
* [HHH-10332] - Schema validation: ambiguous table name
85+
* [HHH-10382] - GetterFieldImpl creates unnecessary objects
86+
* [HHH-10674] - SessionFactoryObserver could use a sessionFactoryAboutToClose method
87+
* [HHH-10711] - Null pointers should not be dereferenced
88+
* [HHH-10714] - Add support for @Immutable attribute types
89+
* [HHH-10726] - Support for Java 8 date/time types as Query parameters
90+
* [HHH-10750] - Add stored procedure tests for Oracle, SQL Server, PostgreSQL, and MySQL
91+
* [HHH-10752] - ProcedureCallImpl registers every paremeter twice
92+
* [HHH-10770] - Add support for JCache-compliant 2nd-level cache providers
93+
* [HHH-10780] - Provide a PrimitiveByteArrayTypeDescriptor toString implementation
94+
95+
** Patch
96+
* [HHH-1237] - Escaping : with :: in queries
97+
98+
99+
6100
Changes in 5.1.0.Final (February 10, 2016)
7101
------------------------------------------------------------------------------------------------------------------------
8102
https://hibernate.atlassian.net/projects/HHH/versions/19355

0 commit comments

Comments
 (0)