File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
extensions/hibernate-orm/deployment/src/main/java/io/quarkus/hibernate/orm/deployment Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,13 @@ void setupLogFilters(BuildProducer<LogCleanupFilterBuildItem> filters) {
31
31
filters .produce (new LogCleanupFilterBuildItem ("org.hibernate.orm.incubating" ,
32
32
"HHH90006001" ));
33
33
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
+
34
41
//This "deprecation" warning isn't practical for the specific Quarkus needs, as it reminds users they don't need
35
42
//to set the 'hibernate.dialect' property, however it's being set by Quarkus buildsteps so they can't avoid it.
36
43
//Ignore for now, perhaps remove it upstream however this may make sense for other Hibernate users.
Original file line number Diff line number Diff line change 71
71
<jacoco .version>0.8.12</jacoco .version>
72
72
<kubernetes-client .version>6.13.1</kubernetes-client .version> <!-- Please check with Java Operator SDK team before updating -->
73
73
<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 -->
75
75
<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 -->
77
77
<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 -->
79
79
<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>
81
81
82
82
<!-- Make sure to check compatibility between these 2 gRPC components before upgrade -->
83
83
<grpc .version>1.65.1</grpc .version> <!-- when updating, verify if com.google.auth should not be updated too -->
You can’t perform that action at this time.
0 commit comments