From e9a79fd0c80ba3911663ea69bcc72b7296b69874 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Fri, 8 Nov 2024 09:20:02 +0100 Subject: [PATCH 1/2] HSEARCH-5267 Upgrade to Hibernate ORM 6.6.3.Final --- build/parents/build/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/parents/build/pom.xml b/build/parents/build/pom.xml index 245dd10ac20..a84d6cfd445 100644 --- a/build/parents/build/pom.xml +++ b/build/parents/build/pom.xml @@ -93,7 +93,7 @@ NOTE: when Hibernate ORM updates Byte Buddy, make sure to check Jenkinsfile to see if `net.bytebuddy.experimental` property can be removed. --> - 6.6.1.Final + 6.6.3.Final https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/javadocs/ 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 From 91a33139606bb2d9eea8e1446ec0a14b88abda89 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Thu, 21 Nov 2024 18:57:49 +0100 Subject: [PATCH 2/2] HSEARCH-5267 Do not use "net.bytebuddy.experimental=true" on JDK 23 build --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f7a91e8b811..9556accfa6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -204,7 +204,7 @@ stage('Configure') { // Make sure to remove that argument as soon as possible // -- generally that requires upgrading bytebuddy in Hibernate ORM after the JDK goes GA. new JdkBuildEnvironment(version: '23', testCompilerTool: 'OpenJDK 23 Latest', - testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true', + testLauncherArgs: '--enable-preview', condition: TestCondition.AFTER_MERGE), new JdkBuildEnvironment(version: '24', testCompilerTool: 'OpenJDK 24 Latest', testLauncherArgs: '--enable-preview -Dnet.bytebuddy.experimental=true',