diff --git a/Jenkinsfile b/Jenkinsfile index 7a426a68a4e..a14a906e392 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -255,7 +255,7 @@ stage('Configure') { new LocalElasticsearchBuildEnvironment(version: '8.14.3', condition: TestCondition.ON_DEMAND), new LocalElasticsearchBuildEnvironment(version: '8.15.4', condition: TestCondition.ON_DEMAND), new LocalElasticsearchBuildEnvironment(version: '8.16.1', condition: TestCondition.ON_DEMAND), - new LocalElasticsearchBuildEnvironment(version: '8.17.0', condition: TestCondition.BEFORE_MERGE, isDefault: true), + new LocalElasticsearchBuildEnvironment(version: '8.17.1', condition: TestCondition.BEFORE_MERGE, isDefault: true), // IMPORTANT: Make sure to update the documentation for any newly supported Elasticsearch versions // See version.org.elasticsearch.compatible.expected.text // and version.org.elasticsearch.compatible.regularly-tested.text in POMs. diff --git a/build/container/search-backend/elastic.Dockerfile b/build/container/search-backend/elastic.Dockerfile index 5bfb2fa924c..f15fae5d92e 100644 --- a/build/container/search-backend/elastic.Dockerfile +++ b/build/container/search-backend/elastic.Dockerfile @@ -5,4 +5,4 @@ # * update `version.org.elasticsearch.latest` property in a POM file. # * update the tags for 'elasticsearch-current' and 'elasticsearch-next' builds in ci/dependency-update/Jenkinsfile # -FROM docker.io/elastic/elasticsearch:8.17.0 +FROM docker.io/elastic/elasticsearch:8.17.1 diff --git a/ci/dependency-update/Jenkinsfile b/ci/dependency-update/Jenkinsfile index 68585fc2e0b..1c9fa87f4cf 100644 --- a/ci/dependency-update/Jenkinsfile +++ b/ci/dependency-update/Jenkinsfile @@ -52,7 +52,8 @@ Map settings() { updateProperties: [], onlyRunTestDependingOn: ['hibernate-search-backend-elasticsearch'], // We want to use the snapshot version of an image from the ES registry since that's where they are publishing their snapshots. - additionalMavenArgs: '-Dtest.lucene.skip=true -Dtest.elasticsearch.run.elastic.image.name=docker.elastic.co/elasticsearch/elasticsearch -Dtest.elasticsearch.run.elastic.image.tag=8.17.1-SNAPSHOT', // This job won't change the versions in the pom. We are passing the latest Elasticsearch version through an additional maven argument `-D` + additionalMavenArgs: '-Dtest.lucene.skip=true -Dtest.elasticsearch.run.elastic.image.name=docker.elastic.co/elasticsearch/elasticsearch -Dtest.elasticsearch.run.elastic.image.tag=8.17.2-SNAPSHOT', + // This job won't change the versions in the pom. We are passing the latest Elasticsearch version through an additional maven argument `-D` skipSourceModifiedCheck: true ] // Targets the next major/minor release of the of Elasticsearch diff --git a/pom.xml b/pom.xml index cfc0e1b6da1..416fd2af541 100644 --- a/pom.xml +++ b/pom.xml @@ -381,7 +381,7 @@ - 8.17.0 + 8.17.1 elastic