diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bbe6d2c..321b6841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [1.10.2-SNAPSHOT] - 2023-12-14 +* Fix: Pin DynamoDB Docker image to 2.1.0 to avoid breaking issue with latest +* ## [1.10.2] - 2023-08-16 * Fix: Creating new tag for publication diff --git a/gradle.properties b/gradle.properties index 2b7738fd..4425ae00 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official GROUP=app.cash.tempest -VERSION_NAME=1.10.2 +VERSION_NAME=1.10.2-SNAPSHOT #org.gradle.jvmargs=-Xmx2024m diff --git a/tempest-testing-docker/src/main/kotlin/app/cash/tempest/testing/DockerDynamoDbServer.kt b/tempest-testing-docker/src/main/kotlin/app/cash/tempest/testing/DockerDynamoDbServer.kt index a2189e8c..a1240a7c 100644 --- a/tempest-testing-docker/src/main/kotlin/app/cash/tempest/testing/DockerDynamoDbServer.kt +++ b/tempest-testing-docker/src/main/kotlin/app/cash/tempest/testing/DockerDynamoDbServer.kt @@ -59,7 +59,7 @@ class DockerDynamoDbServer private constructor( val exposedClientPort = ExposedPort.tcp(8000) val portBindings = Ports() portBindings.bind(exposedClientPort, Ports.Binding.bindPort(port)) - withImage("amazon/dynamodb-local") + withImage("amazon/dynamodb-local:2.1.0") .withName(id) .withExposedPorts(exposedClientPort) .withCmd("-jar", "DynamoDBLocal.jar", "-sharedDb") diff --git a/tempest2-testing-docker/src/main/kotlin/app/cash/tempest2/testing/DockerDynamoDbServer.kt b/tempest2-testing-docker/src/main/kotlin/app/cash/tempest2/testing/DockerDynamoDbServer.kt index d2ee5480..426686a3 100644 --- a/tempest2-testing-docker/src/main/kotlin/app/cash/tempest2/testing/DockerDynamoDbServer.kt +++ b/tempest2-testing-docker/src/main/kotlin/app/cash/tempest2/testing/DockerDynamoDbServer.kt @@ -58,7 +58,7 @@ class DockerDynamoDbServer private constructor( val exposedClientPort = ExposedPort.tcp(8000) val portBindings = Ports() portBindings.bind(exposedClientPort, Ports.Binding.bindPort(port)) - withImage("amazon/dynamodb-local") + withImage("amazon/dynamodb-local:2.1.0") .withName(id) .withExposedPorts(exposedClientPort) .withCmd("-jar", "DynamoDBLocal.jar", "-sharedDb")