summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Miller <marco.miller@ericsson.com>2020-12-14 13:46:11 -0500
committerMarco Miller <marco.miller@ericsson.com>2020-12-17 15:46:16 -0500
commit273eca432c1c4995b95a4e82eb5f9da05939cda7 (patch)
tree5450a94c0a496e4b9d0b6ea5e5d23d991002fa7b
parent36d4fbe4ae7dd9b4c6076afe9dbb16905900bcd0 (diff)
Upgrade testcontainers to 1.15.1
According to [1], "focuses on the stability and compatibility". Includes bug fixes and an update of docker-java to 3.2.7, which gets reflected in this change just as well. This change is currently necessary to successfully execute all the elastic core tests on macOS, with Docker Desktop, locally. [1] https://github.com/testcontainers/testcontainers-java/releases/tag/1.15.1 Change-Id: I9a7c443c69e3d054a6c52451b3aa3cf57a7933d3
-rw-r--r--tools/nongoogle.bzl14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/nongoogle.bzl b/tools/nongoogle.bzl
index 08d492764e..19d4f54724 100644
--- a/tools/nongoogle.bzl
+++ b/tools/nongoogle.bzl
@@ -149,21 +149,21 @@ def declare_nongoogle_deps():
sha1 = "dc13ae4faca6df981fc7aeb5a522d9db446d5d50",
)
- DOCKER_JAVA_VERS = "3.2.5"
+ DOCKER_JAVA_VERS = "3.2.7"
maven_jar(
name = "docker-java-api",
artifact = "com.github.docker-java:docker-java-api:" + DOCKER_JAVA_VERS,
- sha1 = "8fe5c5e39f940ce58620e77cedc0a2a52d76f9d8",
+ sha1 = "81408fc988c229ea11354fee9902c47842343f04",
)
maven_jar(
name = "docker-java-transport",
artifact = "com.github.docker-java:docker-java-transport:" + DOCKER_JAVA_VERS,
- sha1 = "27af0ee7ebc2f5672e23ea64769497b5d55ce3ac",
+ sha1 = "315903a129f530422747efc163dd255f0fa2555e",
)
- # https://github.com/docker-java/docker-java/blob/3.2.5/pom.xml#L61
+ # https://github.com/docker-java/docker-java/blob/3.2.7/pom.xml#L61
# <=> DOCKER_JAVA_VERS
maven_jar(
name = "jackson-annotations",
@@ -171,18 +171,18 @@ def declare_nongoogle_deps():
sha1 = "0f63b3b1da563767d04d2e4d3fc1ae0cdeffebe7",
)
- TESTCONTAINERS_VERSION = "1.15.0"
+ TESTCONTAINERS_VERSION = "1.15.1"
maven_jar(
name = "testcontainers",
artifact = "org.testcontainers:testcontainers:" + TESTCONTAINERS_VERSION,
- sha1 = "b627535b444d88e7b14953bb953d80d9b7b3bd76",
+ sha1 = "91e6dfab8f141f77c6a0dd147a94bd186993a22c",
)
maven_jar(
name = "testcontainers-elasticsearch",
artifact = "org.testcontainers:elasticsearch:" + TESTCONTAINERS_VERSION,
- sha1 = "2bd79fd915e5c7bcf9b5d86cd8e0b7a0fff4b8ce",
+ sha1 = "6b778a270b7529fcb9b7a6f62f3ae9d38544ce2f",
)
maven_jar(