-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Upgrade to Hibernate ORM 5.4.25.Final #13607
Conversation
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.
Looks good overall. Added a minor comment about a method name though.
@@ -195,6 +205,14 @@ public Properties getPuProperties() { | |||
public void setPuProperties(Properties puProperties) { | |||
this.puProperties = puProperties; | |||
} | |||
|
|||
public boolean isEnversIsPresent() { |
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.
Minor nitpicking but this method name looks very weird. The boolean should be called enversPresent
and the method isEnversPresent
.
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.
👍 fixed and rebased.
…nitDescriptorBuildItem
There is no particular Quarkus issue fixed by this upgrade, but it's a requirement for the upcoming Hibernate Reactive upgrade.
The changes in the Envers capability are required, as otherwise Envers will NPE at boot - this is a consequence of an optimisation in ORM (which we can improve on in the next upgrade as the NPE clearly is not ideal) but I believe it goes into a good direction: to be able to remove the XML parsers as dependencies in the next round.