Skip to content

Commit

Permalink
TODOTICKET Upgrade to Hibernate ORM 6.2.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Oct 6, 2022
1 parent e6724bb commit 36b88b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Expand Up @@ -275,11 +275,14 @@ public static class IndexedEntity
extends IndexedEntitySuperClass {
public static final String INDEX = "IndexedEntity";

// "containedEntityList" is not listed here,
// because collection properties are initialized eagerly
// (even if the collection themselves are initialized lazily).
// See HHH-15473 / https://github.com/hibernate/hibernate-orm/pull/5252
private static final String[] LAZY_PROPERTY_NAMES = new String[] {
"mappedSuperClassText",
"entitySuperClassText",
"notIndexedText",
"containedEntityList",
"text1",
"text2",
"primitiveInteger",
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Expand Up @@ -277,9 +277,10 @@
<version.org.jboss.jandex>2.4.2.Final</version.org.jboss.jandex>
<version.org.hibernate.commons.annotations>${version.org.hibernate.commons.annotations.orm6}</version.org.hibernate.commons.annotations>
<version.net.bytebuddy>${version.net.bytebuddy.orm6}</version.net.bytebuddy>
<version.io.smallrye.jandex>3.0.0</version.io.smallrye.jandex>

<!-- >>> ORM 6 / Jakarta Persistence -->
<version.org.hibernate.orm>6.1.2.Final</version.org.hibernate.orm>
<version.org.hibernate.orm>6.2.0-SNAPSHOT</version.org.hibernate.orm>
<javadoc.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/javadocs/</javadoc.org.hibernate.orm.url>
<documentation.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/userguide/html_single/Hibernate_User_Guide.html</documentation.org.hibernate.orm.url>
<!-- These version must be kept in sync with the version of the dependency in Hibernate ORM 6.
Expand All @@ -288,7 +289,7 @@
when the versions start diverging, thanks to the maven-enforcer-plugin
and to our own explicit dependencies in the relevant artifacts.
-->
<version.org.hibernate.commons.annotations.orm6>6.0.3.Final</version.org.hibernate.commons.annotations.orm6>
<version.org.hibernate.commons.annotations.orm6>6.0.4.Final</version.org.hibernate.commons.annotations.orm6>
<version.jakarta.persistence>3.0.0</version.jakarta.persistence>
<version.jakarta.enterprise>3.0.1</version.jakarta.enterprise>
<version.jakarta.xml.bind>3.0.1</version.jakarta.xml.bind>
Expand Down

0 comments on commit 36b88b9

Please sign in to comment.