Skip to content

Commit 3c22c56

Browse files
authored
Upgrade Localstack to 2.3.2 (#949)
Closes #947
1 parent 4e81e22 commit 3c22c56

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

spring-cloud-aws-autoconfigure/src/test/java/io/awspring/cloud/autoconfigure/config/parameterstore/ParameterStoreConfigDataLoaderIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ParameterStoreConfigDataLoaderIntegrationTests {
6969

7070
@Container
7171
static LocalStackContainer localstack = new LocalStackContainer(
72-
DockerImageName.parse("localstack/localstack:1.4.0")).withReuse(true);
72+
DockerImageName.parse("localstack/localstack:2.3.2")).withReuse(true);
7373

7474
@BeforeAll
7575
static void beforeAll() {

spring-cloud-aws-autoconfigure/src/test/java/io/awspring/cloud/autoconfigure/config/secretsmanager/SecretsManagerConfigDataLoaderIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class SecretsManagerConfigDataLoaderIntegrationTests {
7474

7575
@Container
7676
static LocalStackContainer localstack = new LocalStackContainer(
77-
DockerImageName.parse("localstack/localstack:1.4.0")).withReuse(true);
77+
DockerImageName.parse("localstack/localstack:2.3.2")).withReuse(true);
7878

7979
@TempDir
8080
static Path tokenTempDir;

spring-cloud-aws-autoconfigure/src/test/java/io/awspring/cloud/autoconfigure/metrics/CloudWatchExportAutoConfigurationIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class CloudWatchExportAutoConfigurationIntegrationTests {
5353

5454
@Container
5555
static LocalStackContainer localstack = new LocalStackContainer(
56-
DockerImageName.parse("localstack/localstack:1.4.0"));
56+
DockerImageName.parse("localstack/localstack:2.3.2"));
5757

5858
@DynamicPropertySource
5959
static void registerProperties(DynamicPropertyRegistry registry) {

spring-cloud-aws-autoconfigure/src/test/java/io/awspring/cloud/autoconfigure/sqs/SqsAutoConfigurationIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class SqsAutoConfigurationIntegrationTest {
6060

6161
@Container
6262
static LocalStackContainer localstack = new LocalStackContainer(
63-
DockerImageName.parse("localstack/localstack:1.4.0"));
63+
DockerImageName.parse("localstack/localstack:2.3.2"));
6464

6565
@SuppressWarnings("unchecked")
6666
@Test

spring-cloud-aws-dynamodb/src/test/java/io/awspring/cloud/dynamodb/DynamoDbTemplateIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class DynamoDbTemplateIntegrationTest {
6060

6161
@Container
6262
static LocalStackContainer localstack = new LocalStackContainer(
63-
DockerImageName.parse("localstack/localstack:1.4.0")).withServices(DYNAMODB).withReuse(true);
63+
DockerImageName.parse("localstack/localstack:2.3.2")).withServices(DYNAMODB).withReuse(true);
6464

6565
@BeforeAll
6666
public static void createTable() {

spring-cloud-aws-s3-parent/spring-cloud-aws-s3-cross-region-client/src/test/java/io/awspring/cloud/s3/crossregion/CrossRegionS3ClientIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class CrossRegionS3ClientIntegrationTests {
4545

4646
@Container
4747
static LocalStackContainer localstack = new LocalStackContainer(
48-
DockerImageName.parse("localstack/localstack:1.4.0"));
48+
DockerImageName.parse("localstack/localstack:2.3.2"));
4949

5050
private static S3Client client;
5151

spring-cloud-aws-s3-parent/spring-cloud-aws-s3/src/test/java/io/awspring/cloud/s3/S3PathMatchingResourcePatternResolverTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class S3PathMatchingResourcePatternResolverTests {
4141

4242
@Container
4343
static LocalStackContainer localstack = new LocalStackContainer(
44-
DockerImageName.parse("localstack/localstack:1.4.0")).withReuse(true);
44+
DockerImageName.parse("localstack/localstack:2.3.2")).withReuse(true);
4545

4646
private static ResourcePatternResolver resourceLoader;
4747

spring-cloud-aws-s3-parent/spring-cloud-aws-s3/src/test/java/io/awspring/cloud/s3/S3ResourceIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class S3ResourceIntegrationTests {
6969

7070
@Container
7171
static LocalStackContainer localstack = new LocalStackContainer(
72-
DockerImageName.parse("localstack/localstack:1.4.0")).withReuse(true);
72+
DockerImageName.parse("localstack/localstack:2.3.2")).withReuse(true);
7373

7474
private static S3Client client;
7575
private static S3AsyncClient asyncClient;

spring-cloud-aws-s3-parent/spring-cloud-aws-s3/src/test/java/io/awspring/cloud/s3/S3TemplateIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class S3TemplateIntegrationTests {
6969

7070
@Container
7171
static LocalStackContainer localstack = new LocalStackContainer(
72-
DockerImageName.parse("localstack/localstack:1.4.0")).withReuse(true);
72+
DockerImageName.parse("localstack/localstack:2.3.2")).withReuse(true);
7373

7474
private static S3Client client;
7575

spring-cloud-aws-samples/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.8"
33
services:
44
localstack:
55
container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
6-
image: localstack/localstack:1.3.1
6+
image: localstack/localstack:2.3.2
77
ports:
88
- "127.0.0.1:4566:4566" # LocalStack Gateway
99
- "127.0.0.1:4510-4559:4510-4559" # external services port range

0 commit comments

Comments
 (0)