From b1bfca15334795629007ceca2d30403671c6aa9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 03:47:07 +0000 Subject: [PATCH] Bump org.hibernate.orm:hibernate-core from 6.2.29-SNAPSHOT to 6.6.0.CR2 Bumps [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) from 6.2.29-SNAPSHOT to 6.6.0.CR2. - [Release notes](https://github.com/hibernate/hibernate-orm/releases) - [Changelog](https://github.com/hibernate/hibernate-orm/blob/main/changelog.txt) - [Commits](https://github.com/hibernate/hibernate-orm/commits/6.6.0.CR2) --- updated-dependencies: - dependency-name: org.hibernate.orm:hibernate-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- basic/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/basic/build.gradle b/basic/build.gradle index 7a9f9bd..717ddee 100644 --- a/basic/build.gradle +++ b/basic/build.gradle @@ -21,11 +21,11 @@ dependencies { def orm = project.findProperty("orm") if ( "6.4" == orm ) { - testImplementation 'org.hibernate.orm:hibernate-core:6.4.8.Final' + testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.CR2' testImplementation 'org.hibernate.orm:hibernate-testing:6.4.8.Final' } else if ( "6.2" == orm ) { - testImplementation 'org.hibernate.orm:hibernate-core:6.2.29-SNAPSHOT' + testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.CR2' testImplementation 'org.hibernate.orm:hibernate-testing:6.2.29-SNAPSHOT' } else if ( "5.6" == orm ) { @@ -33,11 +33,11 @@ dependencies { testImplementation 'org.hibernate:hibernate-testing-jakarta:5.6.15.Final' } else if ( "perf" == orm || orm == null ) { - testImplementation 'org.hibernate.orm:hibernate-core:6.6.0-perf' + testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.CR2' testImplementation 'org.hibernate.orm:hibernate-testing:6.6.0-perf' } else { - testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.CR1' + testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.CR2' testImplementation 'org.hibernate.orm:hibernate-testing:6.6.0.CR1' }