-
Notifications
You must be signed in to change notification settings - Fork 566
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
[4.x] Upgrades Hibernate to version 6.3.1.Final #7742
Merged
ljnelson
merged 4 commits into
helidon-io:main
from
ljnelson:4.x-upgrade-hibernate-to-6.3.1.Final
Oct 10, 2023
Merged
[4.x] Upgrades Hibernate to version 6.3.1.Final #7742
ljnelson
merged 4 commits into
helidon-io:main
from
ljnelson:4.x-upgrade-hibernate-to-6.3.1.Final
Oct 10, 2023
Conversation
This file contains 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
ljnelson
added
dependencies
Pull requests that update a dependency file
4.x
Version 4.x
labels
Oct 6, 2023
oracle-contributor-agreement
bot
added
the
OCA Verified
All contributors have signed the Oracle Contributor Agreement.
label
Oct 6, 2023
Hibernate 6.2.7 changes the way column ordering is performed so I will have to change all the various tests etc. to specify columns in their DDL. |
See #7448 |
barchetta
reviewed
Oct 9, 2023
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
…neration Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
…edback Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
ljnelson
force-pushed
the
4.x-upgrade-hibernate-to-6.3.1.Final
branch
from
October 9, 2023 16:22
c3652d9
to
07e9ee4
Compare
…cations/mp/pom.xml Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
barchetta
approved these changes
Oct 10, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
dalexandrov
pushed a commit
to dalexandrov/helidon
that referenced
this pull request
Oct 17, 2023
* Upgrades Hibernate to version 6.3.1.Final Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
4.x
Version 4.x
dependencies
Pull requests that update a dependency file
OCA Verified
All contributors have signed the Oracle Contributor Agreement.
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.
This PR upgrades Hibernate to verison 6.3.1.Final and adjusts certain
hibernate.properties
files found in integration tests to comply with Hibernate's ongoing series of settings removals.Documentation impact: Hibernate 6.3.x has (somewhat oddly) removed support for the
none
bytecode provider, so any instances that end users have ofhibernate.properties
must remove any lines that resemble the following:This may have an impact on native image.
More specifics: the
none
bytecode provider still exists, but throws an exception when its "reflection optimizer" is accessed. There used to be a guard in the Hibernate source code that would not attempt to access the reflection optimizer if thenone
bytecode provider was selected, but that guard was removed, so any use of thenone
bytecode provider will result in an exception.