Upgrade elasticsearch-rest-client to 6.6.1

According to the release notes [1] there are no REST client specific
fixes. This upgrade is only to keep up-to-date with the latest version.

Also update the test container to use this version for the 6.6 tests.

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

Change-Id: Ie17d0402e0f7b6c02da6875cf2f765ba2f2ad7ec
This commit is contained in:
David Pursehouse 2019-02-20 19:08:58 +09:00
parent d9d86731d9
commit e238e4ebe1
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.6.0",
sha1 = "f0ce1ea819fedde731511b440b025e4fb5a2f5f7",
artifact = "org.elasticsearch.client:elasticsearch-rest-client:6.6.1",
sha1 = "dc1c9284ffca28cd169fae2776c3956e90b76c00",
)
JACKSON_VERSION = "2.9.8"

View File

@ -47,7 +47,7 @@ public class ElasticContainer extends ElasticsearchContainer {
case V6_5:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.5.4";
case V6_6:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.0";
return "docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.1";
case V7_0:
return "docker.elastic.co/elasticsearch/elasticsearch-oss:7.0.0-beta1";
}