Skip to content

Commit

Permalink
Update localstack/localstack Docker tag to v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 3, 2024
1 parent 4792297 commit 19d0337
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public abstract class AbstractIntegrationTest {
.withPassword("s3cret");

static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.2.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0"))
.withServices(SQS);

// can be removed with version 0.12.17 as LocalStack now has multi-region support
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/de/rieckpil/courses/ApplicationIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ApplicationIT {

@Container
static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.2.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0"))
.withServices(SQS);

// can be removed with version 0.12.17 as LocalStack now has multi-region support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class BookSynchronizationListenerIT {
.withPassword("s3cret");

static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.2.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0"))
.withServices(SQS);
// can be removed with version 0.12.17 as LocalStack now has multi-region support
// https://docs.localstack.cloud/localstack/configuration/#deprecated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class BookSynchronizationListenerSliceNewTest {

@Container
static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.2.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0"))
.withServices(LocalStackContainer.Service.SQS)
.withLogConsumer(new Slf4jLogConsumer(LOG));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class BookSynchronizationListenerSliceTest {

@Container
static LocalStackContainer localStack =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.2.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.4.0"))
.withServices(LocalStackContainer.Service.SQS)
// can be removed with version 0.12.17 as LocalStack now has multi-region support
// https://docs.localstack.cloud/localstack/configuration/#deprecated
Expand Down

0 comments on commit 19d0337

Please sign in to comment.