Skip to content

Upgrade to Hibernate ORM 5.6.0.Beta1 #944

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Hibernate Reactive has been tested with:
- Db2 11.5
- CockroachDB 21.1
- MS SQL Server 2019
- [Hibernate ORM][] 5.5.5.Final
- [Hibernate ORM][] 5.6.0.Beta1
- [Vert.x Reactive PostgreSQL Client](https://vertx.io/docs/vertx-pg-client/java/) 4.1.2
- [Vert.x Reactive MySQL Client](https://vertx.io/docs/vertx-mysql-client/java/) 4.1.2
- [Vert.x Reactive Db2 Client](https://vertx.io/docs/vertx-db2-client/java/) 4.1.2
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ version = projectVersion
// ./gradlew clean build -PhibernateOrmVersion=5.5.1-SNAPSHOT
ext {
if ( !project.hasProperty('hibernateOrmVersion') ) {
hibernateOrmVersion = '5.5.5.Final'
hibernateOrmVersion = '5.6.0.Beta1'
}
// For ORM, we need a parsed version (to get the family, ...)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ implementation of JPA. If you've never used JPA before, that's OK, but you
might need to refer to the following sources of information at some points
in this text:

- the http://hibernate.org/orm/documentation/5.5/[documentation for Hibernate ORM],
- the http://hibernate.org/orm/documentation/5.6/[documentation for Hibernate ORM],
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link is currently broken but I'll get it sorted quickly.

- the https://jcp.org/aboutJava/communityprocess/mrel/jsr338/index.html[JPA 2.2 specification], or
- https://www.manning.com/books/java-persistence-with-hibernate-second-edition[Java Persistence with Hibernate],
the latest edition of the book originally titled _Hibernate in Action_.
Expand Down