-
-
Notifications
You must be signed in to change notification settings - Fork 101
Upgrade Hibernate ORM to 7.1.0.Final #2410
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest Hibernate Gradle plugin requires at list JVM 22. This downgrade won't affect the released artifact.
@@ -527,313 +544,313 @@ | |||
// covariance | |||
|
|||
@Override | |||
public ReactiveQuerySqmImpl<R> applyGraph(RootGraph graph, GraphSemantic semantic) { | |||
public ReactiveSqmQueryImpl<R> applyGraph(RootGraph graph, GraphSemantic semantic) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods Note
Method ReactiveSqmQueryImpl.applyGraph(..) could be confused with overloaded method , since dispatch depends on static types.
applyGraph
Error loading related location
Loading super.setHibernateLockMode( lockMode ); | ||
return this; | ||
} | ||
|
||
@Override | ||
public ReactiveQuerySqmImpl<R> setTimeout(int timeout) { | ||
public ReactiveSqmQueryImpl<R> setTimeout(int timeout) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods Note
Method ReactiveSqmQueryImpl.setTimeout(..) could be confused with overloaded method , since dispatch depends on static types.
SqmQueryImpl.setTimeout
Error loading related location
Loading
...java/org/hibernate/reactive/query/sqm/mutation/internal/cte/ReactiveCteMutationStrategy.java
Fixed
Show fixed
Hide fixed
...java/org/hibernate/reactive/query/sqm/mutation/internal/cte/ReactiveCteMutationStrategy.java
Fixed
Show fixed
Hide fixed
final TemporaryTableSessionUidColumn sessionUidColumn = temporaryTable.getSessionUidColumn(); | ||
final SharedSessionContractImplementor session = executionContext.getSession(); | ||
final JdbcCoordinator jdbcCoordinator = session.getJdbcCoordinator(); | ||
PreparedStatement preparedStatement = null; |
Check notice
Code scanning / CodeQL
Unread local variable Note
Variable 'PreparedStatement preparedStatement' is never read.
...tive/query/sqm/mutation/internal/temptable/ReactiveGlobalTemporaryTableMutationStrategy.java
Fixed
Show fixed
Hide fixed
...ctive/query/sqm/mutation/internal/temptable/ReactiveLocalTemporaryTableMutationStrategy.java
Fixed
Show fixed
Hide fixed
...ctive/query/sqm/mutation/internal/temptable/ReactiveLocalTemporaryTableMutationStrategy.java
Fixed
Show fixed
Hide fixed
.../reactive/query/sqm/mutation/internal/temptable/ReactivePersistentTableMutationStrategy.java
Fixed
Show fixed
Hide fixed
.../reactive/query/sqm/mutation/internal/temptable/ReactivePersistentTableMutationStrategy.java
Fixed
Show fixed
Hide fixed
And realign the Hibernate Gradle plugin to the same version
f036525
to
f9c0464
Compare
76935e7
to
4c8b0c4
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix #2408
Port the PRs that we have already applied to the 3.1 branch