Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:4.5.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.9.1"))
.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:4.5.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.9.1"))
.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:4.5.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.9.1"))
.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:4.5.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.9.1"))
.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:4.5.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.9.1"))
.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