Skip to content

Commit 235f0a7

Browse files
yrodieregsmet
authored andcommitted
Upgrade to Hibernate ORM 6.6.0.CR2, Reactive 2.4.0.CR1, Search 7.2.0.CR1
1 parent c4915a8 commit 235f0a7

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

extensions/hibernate-orm/deployment/src/main/java/io/quarkus/hibernate/orm/deployment/HibernateLogFilterBuildStep.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ void setupLogFilters(BuildProducer<LogCleanupFilterBuildItem> filters) {
3131
filters.produce(new LogCleanupFilterBuildItem("org.hibernate.orm.incubating",
3232
"HHH90006001"));
3333

34+
// Silence DB connection info logging because:
35+
// 1. We don't implement the retrieval of information in QuarkusConnectionProvider
36+
// 2. It's currently being logged even at static init when there is no connection
37+
// See https://hibernate.atlassian.net/browse/HHH-18454
38+
filters.produce(new LogCleanupFilterBuildItem("org.hibernate.orm.connections.pooling",
39+
"HHH10001005"));
40+
3441
//This "deprecation" warning isn't practical for the specific Quarkus needs, as it reminds users they don't need
3542
//to set the 'hibernate.dialect' property, however it's being set by Quarkus buildsteps so they can't avoid it.
3643
//Ignore for now, perhaps remove it upstream however this may make sense for other Hibernate users.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
<jacoco.version>0.8.12</jacoco.version>
7272
<kubernetes-client.version>6.13.1</kubernetes-client.version> <!-- Please check with Java Operator SDK team before updating -->
7373
<rest-assured.version>5.5.0</rest-assured.version>
74-
<hibernate-orm.version>6.6.0.CR1</hibernate-orm.version> <!-- WARNING when updating, also align the versions below -->
74+
<hibernate-orm.version>6.6.0.CR2</hibernate-orm.version> <!-- WARNING when updating, also align the versions below -->
7575
<antlr.version>4.13.0</antlr.version> <!-- version controlled by Hibernate ORM's needs -->
76-
<bytebuddy.version>1.14.15</bytebuddy.version> <!-- version controlled by Hibernate ORM's needs -->
76+
<bytebuddy.version>1.14.18</bytebuddy.version> <!-- version controlled by Hibernate ORM's needs -->
7777
<hibernate-commons-annotations.version>7.0.1.Final</hibernate-commons-annotations.version> <!-- version controlled by Hibernate ORM's needs -->
78-
<hibernate-reactive.version>2.3.1.Final</hibernate-reactive.version> <!-- highly sensitive to Hibernate ORM upgrades -->
78+
<hibernate-reactive.version>2.4.0.CR1</hibernate-reactive.version> <!-- highly sensitive to Hibernate ORM upgrades -->
7979
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
80-
<hibernate-search.version>7.2.0.Alpha2</hibernate-search.version>
80+
<hibernate-search.version>7.2.0.CR1</hibernate-search.version>
8181

8282
<!-- Make sure to check compatibility between these 2 gRPC components before upgrade -->
8383
<grpc.version>1.65.1</grpc.version> <!-- when updating, verify if com.google.auth should not be updated too -->

0 commit comments

Comments
 (0)