Skip to content

Commit e0bcd8c

Browse files
committed
Upgrade to Elasticsearch 9.2.3.
See #712
1 parent a166fbd commit e0bcd8c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

elasticsearch/example/src/test/java/example/springdata/elasticsearch/conference/ElasticsearchOperationsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2021 the original author or authors.
2+
* Copyright 2026 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -53,7 +53,7 @@ class ElasticsearchOperationsTest {
5353
private static final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
5454
@Container //
5555
private static final ElasticsearchContainer container = new ElasticsearchContainer(
56-
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:8.7.0")) //
56+
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:9.2.3")) //
5757
.withPassword("foobar") //
5858
.withReuse(true);
5959

elasticsearch/reactive/src/test/java/example/springdata/elasticsearch/conference/ReactiveElasticsearchOperationsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2021 the original author or authors.
2+
* Copyright 2026 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@ class ReactiveElasticsearchOperationsTest {
5454

5555
@Container //
5656
private static final ElasticsearchContainer container = new ElasticsearchContainer(
57-
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:9.0.3")) //
57+
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:9.2.3")) //
5858
.withPassword("foobar") //
5959
.withReuse(true);
6060

elasticsearch/reactive/src/test/java/example/springdata/elasticsearch/conference/ReactiveElasticsearchRepositoryTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* Copyright 2019-2021 the original author or authors.
2+
* Copyright 2026 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* https://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -50,7 +50,7 @@ class ReactiveElasticsearchRepositoryTest {
5050

5151
@Container //
5252
private static final ElasticsearchContainer container = new ElasticsearchContainer(
53-
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:9.0.3")) //
53+
DockerImageName.parse("docker.elastic.co/elasticsearch/elasticsearch:9.2.3")) //
5454
.withPassword("foobar") //
5555
.withReuse(true);
5656

0 commit comments

Comments
 (0)