Issues
- Remove use of @AutomaticFeature in GraalVM moduleHHH-15555Resolved issue: HHH-15555Sanne Grinovero
- Move Jenkinsfile timeout around shell commandHHH-15538Resolved issue: HHH-15538Christian Beikov
- Deprecate SharedSessionContractImplementor#getTransactionStartTimestamp() and CacheTransactionSynchronization#getCurrentTransactionStartTimestamp()HHH-15536Resolved issue: HHH-15536Andrea Boriero
- Missing use of SqlStringGenerationContext in MapBinder#getFromAndWhereFormulaHHH-15523Resolved issue: HHH-15523Christian Beikov
- Hibernate.isInitialized method not working for Envers CollectionsHHH-15522Resolved issue: HHH-15522Fabricio Gregorio
- ValueGeneration on @OneToOne leads to boot errorHHH-15520Resolved issue: HHH-15520Andrea Boriero
- Backport Session#getReference(Object) to branch 5.6HHH-15508Resolved issue: HHH-15508Yoann Rodière
- Getter of loaded entity returns null when using bytecode enhancement on entity whose field is defined both in mapped superclass and concrete entityHHH-15505Resolved issue: HHH-15505Yoann Rodière
- PropertyAccessException on OneToOne mapping after migration to Hibernate 5.6HHH-15235Resolved issue: HHH-15235Andrea Boriero
- Cannot change MetadataProvider implementation because JPAXMLOverriddenMetadataProvider is final and precisely expected by a cast operatorHHH-15216Resolved issue: HHH-15216Réda Housni Alaoui
- onFlushDirty() invoked on parent entity in a @OneToOne relationship when no table columns are changedHHH-15045Resolved issue: HHH-15045Andrea Boriero
- byNaturalId API creates unparseable query (AND keyword instead of WHERE)HHH-14943Resolved issue: HHH-14943Andrea Boriero
12 of 12
Remove use of @AutomaticFeature in GraalVM module
Fixed
Description
Details
Assignee
Sanne GrinoveroSanne GrinoveroReporter
Sanne GrinoveroSanne GrinoveroFix versions
Priority
Major
Details
Details
Assignee
Sanne Grinovero
Sanne GrinoveroReporter
Sanne Grinovero
Sanne GrinoveroFix versions
Priority
Created September 27, 2022 at 9:22 AM
Updated September 27, 2022 at 10:48 AM
Resolved September 27, 2022 at 10:48 AM
Activity
Show:
The annotation
com.oracle.svm.core.annotate.AutomaticFeature
is deprecated, and the GraalVM team recommends not enabling such features automatically, but rather have the user opt-in explicitly, or list the feature among the native-image parameters in the metadata.This also serves to align with what we already did in ORM 6 via : as the graal-sdk doesn’t expose this annotation.
However this is not a backport of , as the new API is not compatible with JDK8.
We will still rely on the existing svm artifact to compile our hibernate-graalvm extension, but we’ll do so expecting it to be replaced by the graal-sdk artifact at runtime - so this needs a little care to be runtime compatible with both libraries to allow for the transition.