Skip to content

Commit 5fe5311

Browse files
Update localstack/localstack Docker tag to v4.3.0
1 parent 3604278 commit 5fe5311

5 files changed

+5
-5
lines changed

src/test/java/de/rieckpil/courses/AbstractIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public abstract class AbstractIntegrationTest {
4848
.withPassword("s3cret");
4949

5050
static LocalStackContainer localStack =
51-
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.1.1"))
51+
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.3.0"))
5252
.withServices(SQS);
5353

5454
// can be removed with version 0.12.17 as LocalStack now has multi-region support

src/test/java/de/rieckpil/courses/ApplicationIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class ApplicationIT {
4040

4141
@Container
4242
static LocalStackContainer localStack =
43-
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.1.1"))
43+
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.3.0"))
4444
.withServices(SQS);
4545

4646
// can be removed with version 0.12.17 as LocalStack now has multi-region support

src/test/java/de/rieckpil/courses/book/management/BookSynchronizationListenerIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class BookSynchronizationListenerIT {
5252
.withPassword("s3cret");
5353

5454
static LocalStackContainer localStack =
55-
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.1.1"))
55+
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.3.0"))
5656
.withServices(SQS);
5757
// can be removed with version 0.12.17 as LocalStack now has multi-region support
5858
// https://docs.localstack.cloud/localstack/configuration/#deprecated

src/test/java/de/rieckpil/courses/book/management/BookSynchronizationListenerSliceNewTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class BookSynchronizationListenerSliceNewTest {
3434

3535
@Container
3636
static LocalStackContainer localStack =
37-
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.1.1"))
37+
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.3.0"))
3838
.withServices(LocalStackContainer.Service.SQS)
3939
.withLogConsumer(new Slf4jLogConsumer(LOG));
4040

src/test/java/de/rieckpil/courses/book/management/BookSynchronizationListenerSliceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class BookSynchronizationListenerSliceTest {
5151

5252
@Container
5353
static LocalStackContainer localStack =
54-
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.1.1"))
54+
new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.3.0"))
5555
.withServices(LocalStackContainer.Service.SQS)
5656
// can be removed with version 0.12.17 as LocalStack now has multi-region support
5757
// https://docs.localstack.cloud/localstack/configuration/#deprecated

0 commit comments

Comments
 (0)