Skip to content

Commit 69d6887

Browse files
committed
7.0 releases
1 parent 068072b commit 69d6887

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

ci/release/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pipeline {
6161
label 'Worker&&Containers'
6262
}
6363
tools {
64-
jdk 'OpenJDK 11 Latest'
64+
jdk 'OpenJDK 17 Latest'
6565
}
6666
options {
6767
buildDiscarder logRotator(daysToKeepStr: '30', numToKeepStr: '10')

hibernate-core/src/main/java/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,6 @@ private void insertMappedSuperclasses(LinkedHashSet<ClassDetails> original, Link
234234
if ( clazz.hasDirectAnnotationUsage( Entity.class ) ) {
235235
throw new MappingException( "Only classes (not interfaces) may be mapped as @Entity : " + clazz.getName() );
236236
}
237-
// if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
238-
// throw new MappingException( "Only classes (not interfaces) may be mapped as @MappedSuperclass : " + clazz.getName() );
239-
// }
240237
}
241238
if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
242239
if ( debug ) {

migration-guide.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ must be explicitly set to true.
182182
[[hbm-transform]]
183183
== hbm.xml Transformation
184184

185-
Previous versions of Hibernate performed transformations of `hbm.xml` files (with `` enabled)
185+
Previous versions of Hibernate performed transformations of `hbm.xml` files (with `hibernate.transform_hbm_xml.enabled=true`)
186186
one file at a time. This is now done across the entire set of `hbm.xml` files at once.
187187
While most users will never see this change, it might impact integrations which tie-in to
188188
XML processing.

0 commit comments

Comments
 (0)