39
I Use This!
Activity Not Available

News

Posted over 3 years ago by Yoann Rodière
We just published the first stable release of Hibernate Search 6: version 6.0.0.Final. With more than 900 tickets addressed over the course of 20 alphas and betas, Hibernate Search 6 really is a major release, and it shows. The most obvious ... [More] changes: an overhauled API better suited to working with Elasticsearch (but that still works perfectly with embedded Lucene), and upgrades from Lucene 5 to 8 and from Elasticsearch 5.6 to 7. But it doesn’t stop there: a safer and more concise Search DSL, easier mapping, more powerful bridges, smarter automatic indexing, nested documents, …​ Getting started with Hibernate Search 6 If you want to dive right into the new, shiny Hibernate Search 6, a good... [Less]
Posted over 3 years ago by Guillaume Smet
As of now, you are probably aware of the Jakarta EE 9 effort that aims to provide new foundations for EE innovation. Jakarta EE 9 is an iterative release on top of EE 8 with the main purpose of renaming all the javax. packages to the jakarta. ... [More] packages. For a while, we will provide equivalent Hibernate Validator versions for both EE 8 and EE 9: Hibernate Validator 6.x will keep the javax. packages while Hibernate Validator 7.x moved to the jakarta. packages. Full transition in the Java ecosystem will take months if not years given how many libraries depend on the javax.* packages, that’s why... [Less]
Posted over 3 years ago by Gavin King
For the first time in years, we have a new toplevel subproject here at hibernate.org! Reactive programming and relational databases Reactive programming lets us take advantage of non-blocking IO to reduce resource usage in our programs. For a ... [More] long time, non-blocking IO was something that just wasn’t an option for programs which interact with relational databases, since data access APIs like JDBC and ODBC were designed around a fundamentally synchronous, blocking paradigm. That’s changed quite recently, with initiatives like the Vert.x client APIs for PostgreSQL, MySQL, Db2, and SQL Server, along with other similar projects. Thus, it’s now possible for a Java program to interact with a relational database in... [Less]
Posted over 3 years ago by Jan Schatteman
Today, we published a new maintenance release of Hibernate ORM 5.4: 5.4.25.Final. What’s new This release introduces a few minor improvements as well as bug fixes. See below for the complete list of changes. Bugfixes You can find the full ... [More] list of changes in this version here (or, for people without a Hibernate Jira account, here). Note https://hibernate.atlassian.net/browse/HHH-14350: javax.persistence.lock.timeout is now defined as "seconds" in the SQL for MariaDB. This change may affect users that upgrade to this version. Getting 5.4.25.Final All details are available and up to date on the dedicated page on hibernate.org. Feedback, issues, ideas? To get in touch, use the usual channels: hibernate tag on Stack Overflow (usage questions) User... [Less]
Posted over 3 years ago by Yoann Rodière
We just published a second candidate release for Hibernate Search 6.0: version 6.0.0.CR2. This release mainly brings a workaround for applications hanging on startup with Spring Boot 2.3+, type parameters for type bridges and property bridges, and ... [More] an alternative, URI-based configuration for target Elasticsearch hosts. It also includes an upgrade to Lucene 8.7.0, Elasticsearch 7.10.0 and Hibernate ORM 5.4.24.Final. Getting started with Hibernate Search 6 If you want to dive right into the new, shiny Hibernate Search 6, a good starting point is the getting started guide included in the reference documentation. If you want to migrate an application based on Hibernate Search 5, be aware that Hibernate Search 6 APIs... [Less]
Posted over 3 years ago by Yoann Rodière
We just published two bugfix releases for Hibernate Search: 5.11.7.Final and 5.10.10.Final. The only significant change in these versions is the upgrade to Hibernate ORM version 5.4.24.Final and 5.3.20.Final, respectively, in order to fix ... [More] CVE-2020-25638. What’s new For a full list of changes since the previous release, please see the release notes: 5.11.24.Final 5.10.20.Final How to get these releases All details are available and up to date on the dedicated page on hibernate.org: 5.11 5.10 Feedback, issues, ideas? To get in touch, use the following channels: hibernate-search tag on Stackoverflow (usage questions) User forum (usage questions, general feedback) Issue tracker (bug reports, feature requests) Mailing list (development-related discussions)... [Less]
Posted over 3 years ago by Sanne Grinovero
A new version of Hibernate ORM is available today: 5.4.24.Final, we recommend upgrading your applications. Security Update This release introduces a security fix relating to CVE-2020-25638. The flaw has been present in Hibernate ORM since ... [More] many years, so many older versions are affected. An upgrade is recommended, but if you are using a very old version which makes it difficult to upgrade to the latest supported versions (series 5.4 and 5.3 at time of writing this), you can disable SQL comments by setting: hibernate.use_sql_comments=false This property also happens to be disabled by default, so unless you had it enabled explicitly you are not affected. If you’re running... [Less]
Posted over 3 years ago by Yoann Rodière
We just published two bugfix releases for Hibernate Search: 5.11.7.Final and 5.10.10.Final. The only significant change in these versions is the upgrade to Hibernate ORM version 5.4.24.Final and 5.3.20.Final, respectively, in order to fix ... [More] CVE-2020-25638. What’s new For a full list of changes since the previous release, please see the release notes: 5.11.7.Final 5.10.10.Final How to get these releases All details are available and up to date on the dedicated page on hibernate.org: 5.11 5.10 Feedback, issues, ideas? To get in touch, use the following channels: hibernate-search tag on Stackoverflow (usage questions) User forum (usage questions, general feedback) Issue tracker (bug reports, feature requests) Mailing list (development-related discussions)... [Less]
Posted over 3 years ago by Yoann Rodière
We just published a bugfix release for Hibernate Search: 5.11.6.Final. This release mainly upgrades Hibernate Search to the latest compatible Hibernate ORM version and fixes one issue with Spring Boot 2.4.0 / Spring Framework 5.3. What’s new ... [More] HSEARCH-4085: Upgrade to Hibernate Annotations 5.1.2.Final HSEARCH-4087: Upgrade to Hibernate ORM 5.4.23.Final HSEARCH-4107: Creating a FullTextSession from an EntityManager created by Spring Boot 2.4.0 / Spring Framework 5.3 used to fail with a ClassCastException. This is no longer the case. More information here. For a full list of changes since the previous release, please see the release notes. How to get these releases All details are available and up to date on the dedicated page on hibernate.org. Feedback, issues, ideas? To get... [Less]
Posted over 3 years ago by Andrea Boriero
Today, we published a new maintenance release of Hibernate ORM 5.3: 5.3.20.Final. Security Update This release introduces a security fix relating to https://access.redhat.com/security/cve/CVE-2020-25638 . The flaw has been present in ... [More] Hibernate ORM since many years, so many older versions are affected. An upgrade is recommended, but if you are using a very old version which makes it difficult to upgrade to the latest supported versions (series 5.4 and 5.3 at time of writing this), you can disable SQL comments by setting: hibernate.use_sql_comments=false This also is the default, so if you did not set the use_sql_comments at all you are not affected. Bugfixes and Improvements In addition to the... [Less]