Upgrade elasticsearch-rest-client to 6.5.4

There are no specific changes that we need. This is just to keep
up-to-date with the latest release. See the release notes [1] for
details.

[1] https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-6.5.4.html

Upgrade the V6_5 test version accordingly in ElasticContainer.

Change-Id: Ifa420a55c519e738887771fefcd8f3ba6150508a
This commit is contained in:
David Pursehouse
2018-12-20 19:39:09 +09:00
committed by Marco Miller
parent d7b29fffc6
commit 4330c4a636
2 changed files with 3 additions and 3 deletions

View File

@@ -896,8 +896,8 @@ maven_jar(
# and httpasyncclient as necessary.
maven_jar(
name = "elasticsearch-rest-client",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:6.5.3",
sha1 = "ac8df46fce1c01b61cbf1f84186bf910d12b577e",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:6.5.4",
sha1 = "552175b06e34df96f114d1c8aaa908e535c8f1be",
)
JACKSON_VERSION = "2.9.8"

View File

@@ -45,7 +45,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V6_4:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.4.3";
case V6_5:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.3";
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.4";
case V7_0:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:7.0.0-alpha1";
}