Skip to content

Releases: hibernate/hibernate-orm

Hibernate ORM 6.2.19.Final

10 Jan 11:56
Compare
Choose a tag to compare

Hibernate ORM 6.2.19.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.19.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.19.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.18.Final

05 Jan 16:04
Compare
Choose a tag to compare

Hibernate ORM 6.2.18.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.18.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.18.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.17.Final

19 Dec 14:42
Compare
Choose a tag to compare

Hibernate ORM 6.2.17.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.17.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.17.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.16.Final

15 Dec 18:56
Compare
Choose a tag to compare

Hibernate ORM 6.2.16.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.16.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.16.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.15.Final

05 Dec 14:50
Compare
Choose a tag to compare

Hibernate ORM 6.2.15.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.15.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.15.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.14.Final

01 Dec 17:28
Compare
Choose a tag to compare

Hibernate ORM 6.2.14.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.14.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.14.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.13.Final

11 Oct 16:57
Compare
Choose a tag to compare

Hibernate ORM 6.2.13.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.13.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.13.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.12.Final

06 Oct 01:26
Compare
Choose a tag to compare

Hibernate ORM 6.2.12.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.12.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.12.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 6.2.11.Final

05 Oct 00:03
Compare
Choose a tag to compare

Hibernate ORM 6.2.11.Final released

Today, we published a new maintenance release of Hibernate ORM 6.2: 6.2.11.Final.

What's new

This release introduces a few minor improvements as well as bug fixes.

You can find the full list of 6.2.11.Final changes here.

Conclusion

For additional details, see:

See also the following resources related to supported APIs:

Visit the website for details on getting in touch with us.

Hibernate ORM 5.2.0

02 Jun 13:24
Compare
Choose a tag to compare

5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done.

Many of the changes in 5.2.0 have important ramifications in terms of both usage and extension. Be sure to read the 5.2 Migration Guide for details.

Below is a discussion of the major changes.

Java 8 baseline

5.2 moves to Java 8 as its baseline. This means:

  • The hibernate-java8 module has been removed, and that functionality has been moved into hibernate-core.
  • Native support for Java 8 date/time types as Query parameters.
  • Support for streaming (java.util.stream.Stream) query results.
  • Support for java.util.Optional as return from methods that may return null.
  • Leveraging Java 8 "default methods" when introducing new methods to extension points.

Consolidating JPA support into hibernate-core.

That effectively means that the hibernate-entitymanager module no longer exists. Its functionality being consumed into hibernate-core.

JCache support

Support for using any JCache-compliant cache impl as a second-level caching provider.

Session-level batch size support

Support has been added for specifying a batch size for write operations per Session.