diff --git a/Jenkinsfile b/Jenkinsfile
index 0406d7f8e..8a62b99f0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -80,7 +80,7 @@ pipeline {
}
}
}
- stage("test: baseline (hibernate 6.5 snapshots)") {
+ stage("test: baseline (hibernate 6.6)") {
agent {
label 'data'
}
@@ -94,50 +94,7 @@ pipeline {
script {
docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-65-snapshots " +
- "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
- "ci/test.sh"
- }
- }
- }
- }
- }
- stage("test: baseline (hibernate 6.6 preview)") {
- agent {
- label 'data'
- }
- options { timeout(time: 30, unit: 'MINUTES')}
- environment {
- ARTIFACTORY = credentials("${p['artifactory.credentials']}")
- DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
- DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
- TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
- }
- steps {
- script {
- docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-66 " +
- "JENKINS_USER_NAME=${p['jenkins.user.name']} " +
- "ci/test.sh"
- }
- }
- }
- }
- stage("test: baseline (hibernate 6.6 snapshots)") {
- agent {
- label 'data'
- }
- options { timeout(time: 30, unit: 'MINUTES')}
- environment {
- ARTIFACTORY = credentials("${p['artifactory.credentials']}")
- DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
- TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.jpa.support.ProxyImageNameSubstitutor'
- }
- steps {
- script {
- docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
- docker.image(p['docker.java.next.image']).inside(p['docker.java.inside.docker']) {
- sh "PROFILE=all-dbs,hibernate-66-snapshots " +
+ sh "PROFILE=all-dbs,hibernate-66 " +
"JENKINS_USER_NAME=${p['jenkins.user.name']} " +
"ci/test.sh"
}
diff --git a/pom.xml b/pom.xml
index 9ec5eb094..0f195adc0 100755
--- a/pom.xml
+++ b/pom.xml
@@ -31,10 +31,9 @@
3.0.4
4.0.2
6.5.0.Final
- 6.2.28.Final
- 6.5.3-SNAPSHOT
- 6.6.0.CR1
- 6.6.0-SNAPSHOT
+ 6.2.30.Final
+ 6.6.0.Final
+ 6.6.1-SNAPSHOT
7.0.0.Beta1
7.0.0-SNAPSHOT
2.7.1
@@ -66,21 +65,6 @@
${hibernate-62}
-
- hibernate-65-snapshots
-
- ${hibernate-65-snapshots}
-
-
-
- sonatype-oss
- https://oss.sonatype.org/content/repositories/snapshots
-
- false
-
-
-
-
hibernate-66
diff --git a/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureNullHandlingIntegrationTests.java b/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureNullHandlingIntegrationTests.java
index bf52ffc66..565779574 100644
--- a/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureNullHandlingIntegrationTests.java
+++ b/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureNullHandlingIntegrationTests.java
@@ -132,7 +132,7 @@ class PostgresStoredProcedureNullHandlingIntegrationTests {
void countUuid(UUID this_uuid);
@Procedure("countByLocalDate")
- void countLocalDate(@Temporal Date localDate);
+ void countLocalDate(@Temporal Date this_local_date);
}
@EnableJpaRepositories(considerNestedRepositories = true,