Add support for Elasticsearch version 7.7.*

Upgrade elasticsearch-rest-client to 7.7.0.

Add V7_7 to the version manager, and use this in all the V7 tests.

Change-Id: I406ccf0bc29f38ccce8ab74f5742342bc50251d2
This commit is contained in:
Marco Miller
2020-05-13 15:20:03 -04:00
parent ef3b545aa6
commit 3d852f8c53
10 changed files with 18 additions and 9 deletions

View File

@@ -27,7 +27,8 @@ public enum ElasticVersion {
V7_3("7.3.*"),
V7_4("7.4.*"),
V7_5("7.5.*"),
V7_6("7.6.*");
V7_6("7.6.*"),
V7_7("7.7.*");
private final String version;
private final Pattern pattern;