Skip to content

Commit

Permalink
Upgrade to Hibernate ORM 6.6.0.CR2, Reactive 2.4.0.CR1, Search 7.2.0.CR1
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Aug 1, 2024
1 parent d129e01 commit 4d0983b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ void setupLogFilters(BuildProducer<LogCleanupFilterBuildItem> filters) {
filters.produce(new LogCleanupFilterBuildItem("org.hibernate.orm.incubating",
"HHH90006001"));

// Silence DB connection info logging because:
// 1. We don't implement the retrieval of information in QuarkusConnectionProvider
// 2. It's currently being logged even at static init when there is no connection
// See https://hibernate.atlassian.net/browse/HHH-18454
filters.produce(new LogCleanupFilterBuildItem("org.hibernate.orm.connections.pooling",
"HHH10001005"));

//This "deprecation" warning isn't practical for the specific Quarkus needs, as it reminds users they don't need
//to set the 'hibernate.dialect' property, however it's being set by Quarkus buildsteps so they can't avoid it.
//Ignore for now, perhaps remove it upstream however this may make sense for other Hibernate users.
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@
<jacoco.version>0.8.12</jacoco.version>
<kubernetes-client.version>6.13.1</kubernetes-client.version> <!-- Please check with Java Operator SDK team before updating -->
<rest-assured.version>5.5.0</rest-assured.version>
<hibernate-orm.version>6.6.0.CR1</hibernate-orm.version> <!-- WARNING when updating, also align the versions below -->
<hibernate-orm.version>6.6.0.CR2</hibernate-orm.version> <!-- WARNING when updating, also align the versions below -->
<antlr.version>4.13.0</antlr.version> <!-- version controlled by Hibernate ORM's needs -->
<bytebuddy.version>1.14.15</bytebuddy.version> <!-- version controlled by Hibernate ORM's needs -->
<bytebuddy.version>1.14.18</bytebuddy.version> <!-- version controlled by Hibernate ORM's needs -->
<hibernate-commons-annotations.version>7.0.1.Final</hibernate-commons-annotations.version> <!-- version controlled by Hibernate ORM's needs -->
<hibernate-reactive.version>2.3.1.Final</hibernate-reactive.version> <!-- highly sensitive to Hibernate ORM upgrades -->
<hibernate-reactive.version>2.4.0.CR1</hibernate-reactive.version> <!-- highly sensitive to Hibernate ORM upgrades -->
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
<hibernate-search.version>7.2.0.Alpha2</hibernate-search.version>
<hibernate-search.version>7.2.0.CR1</hibernate-search.version>

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

0 comments on commit 4d0983b

Please sign in to comment.