-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Comparing changes
Open a pull request
base repository: hibernate/hibernate-orm
base: 7.2.4
head repository: hibernate/hibernate-orm
compare: 7.2.5
- 12 commits
- 37 files changed
- 4 contributors
Commits on Feb 8, 2026
-
Configuration menu - View commit details
-
Copy full SHA for bd359a7 - Browse repository at this point
Copy the full SHA bd359a7View commit details
Commits on Feb 17, 2026
-
introduce DetachedObjectException
and remove obsolete code relating to reassociation from lock() and refresh() also remove code for reattaching proxies during flush
Configuration menu - View commit details
-
Copy full SHA for fa5a004 - Browse repository at this point
Copy the full SHA fa5a004View commit details
Commits on Feb 18, 2026
-
Configuration menu - View commit details
-
Copy full SHA for e0a8251 - Browse repository at this point
Copy the full SHA e0a8251View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c5e335 - Browse repository at this point
Copy the full SHA 2c5e335View commit details
Commits on Feb 20, 2026
-
HHH-20130 fix bug in imported vs qualified type logic in Processor
This appears to be a very ancient bug. If another type with the same name is imported, we have to qualify the type name, even if it is in the same package or in java.lang.
Configuration menu - View commit details
-
Copy full SHA for 7114315 - Browse repository at this point
Copy the full SHA 7114315View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27fc137 - Browse repository at this point
Copy the full SHA 27fc137View commit details -
HHH-20151 Metamodel geneartor: allow implicit repositories for Panach…
…e Next Fixes quarkusio/quarkus#50178
Configuration menu - View commit details
-
Copy full SHA for 10c9e44 - Browse repository at this point
Copy the full SHA 10c9e44View commit details -
HHH-20163 Metamodel generator: do not visit nested types twice
I added the indexQueryInterfaces method before the elements were recursively visited to find nested entities. I did not realise we were visiting nested types twice: once with the primaryEntity set (by indexQueryInterfaces) and the second time without it, causing issues with nested repositories losing their primaryEntity in Quarkus Panache. I'm now removing indexQueryInterfaces in favour of the upstream recursion, adapted for keeping track of implicit primaryEntity.
Configuration menu - View commit details
-
Copy full SHA for 484505a - Browse repository at this point
Copy the full SHA 484505aView commit details -
HHH-20164 Metamodel processor: Fixed bug with missing catch clause for …
…@delete queries This only happens in Quarkus Panache when we have an implicit JD repository with a @delete query method, because jakartaDataRepository is not set, but it should not matter, because this method is only defined by JD for repositories, so I don't think it makes any sense for it to be false. The result was code like this: @OverRide public long deleteByTitle(String title) { var _builder = session.getCriteriaBuilder(); var _query = _builder.createCriteriaDelete(Panache2Book.class); var _entity = _query.from(Panache2Book.class); _query.where( title==null ? _entity.get(Panache2Book_.title).isNull() : _builder.equal(_entity.get(Panache2Book_.title), title) ); try { return session.createMutationQuery(_query).executeUpdate(); } Note the missing catch. This is because the catch is conditional on jakartaDataRepository while the try is not conditional.
Configuration menu - View commit details
-
Copy full SHA for e03b94e - Browse repository at this point
Copy the full SHA e03b94eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b926de - Browse repository at this point
Copy the full SHA 7b926deView commit details
Commits on Feb 22, 2026
-
Configuration menu - View commit details
-
Copy full SHA for dc2faf6 - Browse repository at this point
Copy the full SHA dc2faf6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23f1ea4 - Browse repository at this point
Copy the full SHA 23f1ea4View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 7.2.4...7.2.5