Hibernate Reactive 1.0.0.CR4 is out now!
It contains several important changes:
Thank you!
Upgrade to Hibernate ORM 5.4.31.Final
It’s now possible to use Hibernate Reactive with both Hibernate ORM 5.4 and Hibernate ORM 5.5.
The only drawback is that Hibernate Reactive won’t work with versions of Hibernate ORM older than 5.4.31.Final.
Reactive close
Nothing changes for applications using withSession
(our reccomended approach).
For everyone else, it’s important to update the code
and to chain correctly operations following a Session#close
.
The signature of Mutiny.Session#close
is now:
Uni<Void> close();
and for Stage.Session#close
:
CompletionStage<Void> close();
Because of this, the reactive session doesn’t implement the
interface Autoclosable
anymore.
How can I get it?
All details are available on the Hibernate Reactive website releases page.
If you are new to Hibernate Reactive, the the official documentation is a good place to start.
Feedback, issues, ideas?
To get in touch, use the following channels:
-
hibernate-reactive tag on Stackoverflow (usage questions)
-
User forum or the hibernate-user stream on Zulip (usage questions, general feedback)
-
Issue tracker (bug reports, feature requests)
-
Mailing list or the hibernate-reactive-dev stream on Zulip (development-related discussions)