Skip to content

Releases: hibernate/hibernate-orm

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.

5th bug-fix release for 5.0

03 Dec 05:03
Compare
Choose a tag to compare

The 5th bug-fix release for Hibernate ORM 5.0. This release and the upcoming 5.0.6 release have been done on an accelerated time-box of 2 weeks (from the normal 4 weeks for bug-fix releases) due to US holidays.

The complete list of changes can be found here (or here for people without a Hibernate Jira account).

For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/

For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.

Fourth bug-fix release for 5.0

18 Nov 19:52
Compare
Choose a tag to compare

The fourth bug-fix release for Hibernate ORM 5.0

There are 52 issues resolved in this release. 20 of those came out of the recent Jira cleanup. Initially that initiative pulled in roughly 750 issues. To date, 66 of those have been resolved - fixed or verified as out-of-date, unable-to-reproduce, etc. An additional 14 have been more properly reclassified as feature or enhancement requests rather than bugs. The really cool part is the amount of community help we have gotten in making that happen! Thanks to everyone responding, verifying and even fixing alot of these bugs!

The complete list of changes can be found here. People without a Hibernate Jira account will not be able to access the previous link and can access the changelog in GitHub; the issue I reported with Atlassian has been resolved and is ready for deployment into our hosted environment, I just do not know when that will happen.

For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/

For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.

Third bug-fix release for 5.0

28 Oct 17:08
Compare
Choose a tag to compare

http://in.relation.to/2015/10/28/hibernate-orm-503-final-release/

Bug

* [HHH-1400] - formula-based property leads to generation of invalid SQL with subselect fetches
* [HHH-9074] - HQL Query with boolean and @Convert
* [HHH-9374] - EntityGraph applied to subquery when using collection function
* [HHH-9784] - scroll() and iterate() methods do not support provided HQLQueryPlan
* [HHH-10104] - Using JPA 2.1 schema generation together with hbm2ddl runs into deadlock with MySQL
* [HHH-10169] - Hibernate ignores foreign-key name in hbm <joined-subclass>
* [HHH-10170] - Reuse JAXBContext instance (Slow mapping initialization) - port HHH-10065 fix to 5.0 branch
* [HHH-10172] - Throw MappingException when entity/component class defines multiple matching getters by stem name
* [HHH-10174] - Incorrect splitting of string using dot as separator
* [HHH-10180] - hbm2ddl tools cannot generate create/update script not modifying the database
* [HHH-10188] - "stored" is a reserved keyword in MySQL 5.7
* [HHH-10189] - NPE in InformationExtractorJdbcDatabaseMetaDataImpl
* [HHH-10193] - NameQualifierSupport for Hypersonic should be catalog
* [HHH-10194] - Change NameQualifierSupport for Hypersonic from CATALOG to SCHEMA
* [HHH-10195] - QueryHintSQLServer2012Test is wrong
* [HHH-10196] - DefaultGeneratedValueTest fails on MySQL
* [HHH-10197] - SchemaManagementException when performing SchemaUpdate
* [HHH-10206] - Primary key not created for a Set after loading from XML mapping file
* [HHH-10207] - Constraint name not considered for a Set while loading from XML mapping file
* [HHH-10217] - ModelBinder fails to bind version property when generated="always"

Task

* [HHH-10137] - Upgrade to/support Jandex 2.0
* [HHH-10153] - Upgrade to Gradle 2.7

Improvement

* [HHH-10087] - Support prepending of locks
* [HHH-10190] - org.hibernate.engine.spi.ActionQueue#executeActions() optimization

Second bug-fix release for 5.0

30 Sep 20:31
Compare
Choose a tag to compare

The complete list of changes can be found here.

For information on consuming the release into your build via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/.

For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.