-
Notifications
You must be signed in to change notification settings - Fork 90
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
Add initial support for hibernate-orm:hibernate-core:6.5.0.Final #479
Add initial support for hibernate-orm:hibernate-core:6.5.0.Final #479
Conversation
3e7e7ae
to
ee8d745
Compare
Hibernate 6.5 has been released (hibernate-orm:6.5.0.Final )- will update the PR with new version. |
Move over and adapt tests from hibernate 6.2 to generate metadata via generate-metadata script. Fixed compilation issues and removed no longer supported dialects. Updated metadata generation to include Logger setup. Updated metadata filter to ignore hibernate internal code generation facilities.
the bytecode provider property is no longer supported so we need to bypass the default implementation to avoid failures with bytebuddy.
ee8d745
to
2c24c98
Compare
@@ -0,0 +1,2 @@ | |||
hibernate.bytecode.provider=none |
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.
Can this file be deleted since these properties are not read in this version of hibernate?
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.
yeah, sorry - overlooked that one
Tested with Petclinic, Spring Boot |
What does this PR do?
Move over and adapt tests from hibernate 6.2 to generate metadata via
generate-metadata.sh
script.Fixed compilation issues and removed no longer supported dialects.
Updated metadata generation to include Logger setup.
Updated metadata filter to ignore hibernate internal code generation facilities.
Checklist before merging
A: Given the metadata already resides in this repository I think it's fine to adapt for newer versions of the target library.
A: Actually I copied existing tests form this repository to a new directory and modified them so they run with the updated version of the library.
A: Well those are copies of existing tests in the very same repository & license.