@@ -4,6 +4,82 @@ Hibernate 5 Changelog
4
4
Note: Please refer to JIRA to learn more about each issue.
5
5
6
6
7
+ Changes in 5.3.11.Final (August 15th, 2019)
8
+ ------------------------------------------------------------------------------------------------------------------------
9
+
10
+ https://hibernate.atlassian.net/projects/HHH/versions/31770/tab/release-report-all-issues
11
+
12
+ ** Bug
13
+ * [HHH-13357] - OffsetTimeTest fails using TimeAsTimestampRemappingH2Dialect in non-GMT European time zones
14
+ * [HHH-13379] - Regression of Instant serialization
15
+ * [HHH-13424] - Table nullability should not depend on JpaCompliance.isJpaCacheComplianceEnabled()
16
+ * [HHH-13455] - Enabling Enhancement as a Proxy causes IllegalStateException when using Javassist
17
+ * [HHH-13459] - Unit test lock up when they run on PostgreSQL
18
+ * [HHH-13460] - FetchGraphTest is failing on MariaDB
19
+ * [HHH-13466] - ClassCastException when changing a Collection association to a Set if @PreUpdate listener exists
20
+ * [HHH-13492] - OptimisticLockException after locking, refreshing, and updating an entity
21
+ * [HHH-13505] - NullPointerException thrown by StatisticsImpl#getCacheRegionStatistics
22
+ * [HHH-13514] - Calling the wrong method inside SessionDelegatorBaseImpl#createStoredProcedureQuery
23
+ * [HHH-13544] - Restore logged warning on jdbc code mapping issue in NationalizedTypeMappings
24
+ * [HHH-13550] - Fix Oracle failure for test added by HHH-13424
25
+ * [HHH-13554] - QueryAndSQLTest.testNativeQueryWithFormulaAttributeWithoutAlias() fails on Oracle, MSSQL, Sybase, DB2, MariaDB
26
+ * [HHH-13555] - FetchGraphTest, MergeProxyTest and ProxyDeletionTest fail due to ConstraintViolationException
27
+ * [HHH-13556] - Tests doing dynamic fetch scrolling a collection fail on DB2
28
+ * [HHH-13557] - LocalTimeTest#writeThenNativeRead and OffsetTimeTest#writeThenNativeRead tests are failing on SQL Server
29
+ * [HHH-13558] - InstantTest, LocalDateTimeTest, OffsetDateTimeTest, ZonedDateTimeTest failing on Sybase for year 1600
30
+ * [HHH-13569] - org.hibernate.test.annotations.embedded.EmbeddedTest failures on Sybase
31
+ * [HHH-13570] - Test failures due to Sybase not supporting UPDATE statement with WITH(NOWAIT)
32
+ * [HHH-13571] - Test failures due to cross joined table out of scope of a subsequent JOIN on Sybase
33
+ * [HHH-13573] - Test failure due to Sybase not supporting cascade delete on foreign key definitions
34
+ * [HHH-13574] - SybaseASE does not support PARTITION BY
35
+ * [HHH-13577] - LockTest.testContendedPessimisticLock and StatementIsClosedAfterALockExceptionTest.testStatementIsClosed tests fail on Sybase
36
+
37
+ ** New Feature
38
+ * [HHH-11147] - Allow enhanced entities to be returned in a completely uninitialized state
39
+
40
+ ** Task
41
+ * [HHH-13026] - Documentation: fixing link to Infinispan documentation section regarding Hibernate 2LC
42
+ * [HHH-13416] - Unguarded debug message being rendered in org.hibernate.engine.internal.Collections.processReachableCollection
43
+ * [HHH-13513] - Partial revert of string interning introduced by HHH-3924
44
+ * [HHH-13520] - Deprecate mutators on SqlStatementLogger
45
+ * [HHH-13525] - Make test SessionDelegatorBaseImplTest more resilient to previously existing alias definition
46
+ * [HHH-13526] - Optimise ResourceRegistryStandardImpl#release
47
+ * [HHH-13527] - Performance regression in org.hibernate.stat.internal.StatisticsImpl
48
+ * [HHH-13528] - Invoke afterStatements only at the end of releasing all statements for a batch
49
+ * [HHH-13529] - Performance regression in org.hibernate.engine.spi.SessionFactoryImplementor#getDialect
50
+ * [HHH-13531] - Some more opportunities to reuse the constants pool in AliasConstantsHelper
51
+ * [HHH-13534] - AbstractLoadPlanBasedLoader never needs a List of AfterLoadAction
52
+
53
+ ** Improvement
54
+ * [HHH-11032] - Improve performance of PersistentBag.equalsSnapshot
55
+ * [HHH-13442] - CollectionType#getCollection() method improvements
56
+ * [HHH-13444] - Remove ignored EntityMode field from CollectionKey
57
+ * [HHH-13447] - Minimize number of EventListenerRegistry lookups within a Session use
58
+ * [HHH-13448] - Avoid retrieving PRE_LOAD and POST_LOAD Event listeners within the inner loops of TwoPhaseLoad
59
+ * [HHH-13450] - Do not compute the full role name of a collection unless necessary
60
+ * [HHH-13451] - Logging typo in CascadingActions causing significant allocations
61
+ * [HHH-13452] - Missing log level guard on formatting in DefaultPersistEventListener#entityIsDeleted
62
+ * [HHH-13453] - Optimise CascadingActions for the most likely case
63
+ * [HHH-13458] - Update Hibernate's custom IdentityMap to better match its use
64
+ * [HHH-13462] - Introduce a fastpath for SessionImpl#fireLoad to be used by internal loops
65
+ * [HHH-13467] - Make average BatchFetchQueue consume less memory
66
+ * [HHH-13471] - Avoid invoking delayedAfterCompletion() multiple times from the same SessionImpl method
67
+ * [HHH-13475] - SessionImpl#applyQuerySettingsAndHints should not rely on defensive copies to just read properties
68
+ * [HHH-13476] - Micro-optimisations of TwoPhaseLoad#getOverridingEager
69
+ * [HHH-13477] - Make heavily invoked method final: EventListenerGroupImpl#listeners()
70
+ * [HHH-13478] - Various low hanging fruits identified by CPU flame graphs
71
+ * [HHH-13494] - LobTypeMappings should not use a Bounded ConcurrentHashmap
72
+ * [HHH-13495] - NationalizedTypeMappings should not use a Bounded ConcurrentHashmap
73
+ * [HHH-13508] - Reuse alias names generated by BasicLoader#generateSuffixes
74
+ * [HHH-13511] - Remove old org.hibernate.loader.DefaultEntityAliases#intern
75
+ * [HHH-13512] - Avoid allocating an array in org.hibernate.internal.util.StringHelper#unquote(String[], Dialect) if there are no changes to be applied
76
+ * [HHH-13521] - Avoid excessive validation of enabled filters
77
+ * [HHH-13522] - Optimise LoadQueryInfluencers by making maps lazily initialized
78
+ * [HHH-13523] - StatementPreparerImpl should not need to retrieve the JDBCService as often
79
+ * [HHH-13524] - Remove unused fields xref,unassociatedResultSets from JdbcCoordinatorImpl
80
+
81
+
82
+
7
83
Changes in 5.3.10.final (April 19th, 2019)
8
84
------------------------------------------------------------------------------------------------------------------------
9
85
0 commit comments