Hello everyone, we have released Hibernate Reactive 1.0.0.CR6!

Here’s a summary of the most important changes:

  • #829 Upgrade to Hibernate ORM 5.5.0.Final (but still compatible with the latest 5.4)

  • #799 Upgrade to Vert.x 4.1.0

  • #811 A bugfix about the session not getting closed in case of exception in some cases

You can find a complete list of changes on the Hibernate Reactive issue tracker.

Thank you!

Upgrade to Vert.x 4.1.0

Because of the new version, there are some changes to the configuration properties. A description of all (the properties for tuning the Vert.x pool are available in the documentation.

But here’s a list of the ones that have changed from 4.0:

  • hibernate.vertx.pool.connect_timeout: the maximum time to wait when requesting a pooled connection, in milliseconds

  • hibernate.vertx.pool.idle_timeout: the maximum time a connection may sit idle, in milliseconds

  • hibernate.vertx.pool.cleaner_period: a new property, set the Vert.x connection pool cleaner period, in milliseconds

Because of this upgrade, Hibernate Reactive is not compatible with Vert.x 4.0 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.

JBang

If you are familiar with JBang, you can now see a list of Hibernate Reactive examples with:

jbang alias list hibernate/hibernate-reactive

if you have Docker installed on your machine, you can try:

jbang testcase@hibernate/hibernate-reactive

Feedback, issues, ideas?

To get in touch, use the following channels:


Back to top