Skip to content

Commit f116a88

Browse files
SanneDavideD
authored andcommitted
Upgrade to Hibernate ORM 6.2.0.CR3
1 parent 56d41ef commit f116a88

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Hibernate Reactive has been tested with:
3737
- CockroachDB 22.1
3838
- MS SQL Server 2019
3939
- Oracle 21.3
40-
- [Hibernate ORM][] 5.6.14.Final
40+
- [Hibernate ORM][] 6.2.0.CR3
4141
- [Vert.x Reactive PostgreSQL Client](https://vertx.io/docs/vertx-pg-client/java/) 4.3.8
4242
- [Vert.x Reactive MySQL Client](https://vertx.io/docs/vertx-mysql-client/java/) 4.3.8
4343
- [Vert.x Reactive Db2 Client](https://vertx.io/docs/vertx-db2-client/java/) 4.3.8

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ version = projectVersion
5353
// ./gradlew clean build -PhibernateOrmVersion=5.6.15-SNAPSHOT
5454
ext {
5555
if ( !project.hasProperty('hibernateOrmVersion') ) {
56-
hibernateOrmVersion = '6.2.0-SNAPSHOT'
56+
hibernateOrmVersion = '6.2.0.CR3'
5757
}
5858
// For ORM, we need a parsed version (to get the family, ...)
5959

hibernate-reactive-core/src/main/java/org/hibernate/reactive/provider/impl/ReactiveServiceInitiators.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ private static List<StandardServiceInitiator<?>> buildInitialServiceInitiatorLis
6767
serviceInitiators.add( SqlScriptExtractorInitiator.INSTANCE );
6868

6969
serviceInitiators.add( ReactiveMutationExecutorServiceInitiator.INSTANCE );
70-
serviceInitiators.add( JdbcParameterRendererInitiator.INSTANCE );
7170

7271
// Definitely exclusive to Hibernate Reactive, as it marks the registry as Reactive:
7372
serviceInitiators.add( ReactiveMarkerServiceInitiator.INSTANCE );
@@ -135,6 +134,9 @@ private static List<StandardServiceInitiator<?>> buildInitialServiceInitiatorLis
135134
//Custom for Hibernate Reactive:
136135
serviceInitiators.add( ReactiveSqmMultiTableMutationStrategyProviderInitiator.INSTANCE );
137136

137+
// Default implementation
138+
serviceInitiators.add( JdbcParameterRendererInitiator.INSTANCE );
139+
138140
serviceInitiators.trimToSize();
139141

140142
return unmodifiableList( serviceInitiators );

0 commit comments

Comments
 (0)