Branch: refs/heads/main
Home: https://github.com/hibernate/hibernate-orm
Commit: f55c017f59a1662a9d3554a82af39a7c5242f8b3
https://github.com/hibernate/hibernate-orm/commit/f55c017f59a1662a9d3554a...
Author: norbert_wirges <norbert.wirges(a)werum.com>
Date: 2023-07-20 (Thu, 20 Jul 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/engine/internal/Cascade.java
Log Message:
-----------
HHH-16907 moved if from inside private method to around
This improves performance of cascadeLogicalOneToOneOrphanRemoval
handling, because entity fields are only read by reflection if the field
is actually a 1:1 relation (before the change, this was done every time
for every field)
Branch: refs/heads/6.2
Home: https://github.com/hibernate/hibernate-orm
Commit: 52471562593e087d2469cb585dcd6ba27610292b
https://github.com/hibernate/hibernate-orm/commit/52471562593e087d2469cb5...
Author: Gavin King <gavin(a)hibernate.org>
Date: 2023-07-20 (Thu, 20 Jul 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/mapping/KeyValue.java
Log Message:
-----------
HHH-16912 return null from deprecated method instead of producing a CCE
This is a band-aid over an error occurring in Liquibase. But it seems to
me that Liquibase itself should be updated to use the new APIs.
(cherry picked from commit 7c378847cbf635527d651c7c0711b5a55216b88a)
Branch: refs/heads/main
Home: https://github.com/hibernate/hibernate-orm
Commit: 7c378847cbf635527d651c7c0711b5a55216b88a
https://github.com/hibernate/hibernate-orm/commit/7c378847cbf635527d651c7...
Author: Gavin King <gavin(a)hibernate.org>
Date: 2023-07-20 (Thu, 20 Jul 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/mapping/KeyValue.java
Log Message:
-----------
HHH-16912 return null from deprecated method instead of producing a CCE
This is a band-aid over an error occurring in Liquibase. But it seems to
me that Liquibase itself should be updated to use the new APIs.