File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
extensions/hibernate-orm/deployment/src
main/java/io/quarkus/hibernate/orm/deployment
test/java/io/quarkus/hibernate/orm Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 99
99
<classmate .version>1.5.1</classmate .version>
100
100
<!-- When updating, align bytebuddy.version to Hibernate needs as well (just below),
101
101
as well as hibernate-orm.version-for-documentation in docs/pom.xml -->
102
- <hibernate-orm .version>6.2.9 .Final</hibernate-orm .version>
102
+ <hibernate-orm .version>6.2.11 .Final</hibernate-orm .version>
103
103
<bytebuddy .version>1.14.7</bytebuddy .version> <!-- Version controlled by Hibernate ORM's needs -->
104
104
<hibernate-commons-annotations .version>6.0.6.Final</hibernate-commons-annotations .version> <!-- version controlled by Hibernate ORM -->
105
- <hibernate-reactive .version>2.0.5 .Final</hibernate-reactive .version>
105
+ <hibernate-reactive .version>2.0.6 .Final</hibernate-reactive .version>
106
106
<hibernate-validator .version>8.0.1.Final</hibernate-validator .version>
107
107
<!-- When updating, align hibernate-search.version-for-documentation in docs/pom.xml -->
108
108
<hibernate-search .version>6.2.2.Final</hibernate-search .version>
Original file line number Diff line number Diff line change @@ -32,5 +32,13 @@ void setupLogFilters(BuildProducer<LogCleanupFilterBuildItem> filters) {
32
32
"HHH90006001" ));
33
33
// https://hibernate.atlassian.net/browse/HHH-16546
34
34
filters .produce (new LogCleanupFilterBuildItem ("org.hibernate.tuple.entity.EntityMetamodel" , "HHH000157" ));
35
+
36
+ //This "deprecation" warning isn't practical for the specific Quarkus needs, as it reminds users they don't need
37
+ //to set the 'hibernate.dialect' property, however it's being set by Quarkus buildsteps so they can't avoid it.
38
+ //Ignore for now, perhaps remove it upstream however this may make sense for other Hibernate users.
39
+ //Wondering if we should have the Quarkus build differentiate between an explicitly set vs an inferred Dialect
40
+ //property (we have a custom DialectFactory already so this could be trivial), however even in this case ORM
41
+ //can't guess things since there is no connection, so even if we did so, this message wouldn't be applicable.
42
+ filters .produce (new LogCleanupFilterBuildItem ("org.hibernate.orm.deprecation" , "HHH90000025" ));
35
43
}
36
44
}
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ private static void ignoreInternalAnnotations(Set<DotName> annotationSet) {
90
90
annotationSet .removeIf (name -> name .toString ().equals ("org.hibernate.Incubating" ));
91
91
annotationSet .removeIf (name -> name .toString ().equals ("org.hibernate.Internal" ));
92
92
annotationSet .removeIf (name -> name .toString ().equals ("org.hibernate.Remove" ));
93
+ annotationSet .removeIf (name -> name .toString ().equals ("org.hibernate.service.JavaServiceLoadable" ));
93
94
}
94
95
95
96
@ Test
You can’t perform that action at this time.
0 commit comments