Skip to content
Merged
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 @@ -57,7 +57,7 @@ class ParameterStoreConfigDataLoaderIntegrationTests {

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SSM).withReuse(true);
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SSM).withReuse(true);

@BeforeAll
static void beforeAll() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class SecretsManagerConfigDataLoaderIntegrationTests {

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SECRETSMANAGER).withReuse(true);
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SECRETSMANAGER).withReuse(true);

@BeforeAll
static void beforeAll() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class SnsTemplateIntegrationTest {

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SNS).withReuse(true);
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SNS).withReuse(true);

@Test
void send_validTextMessage_usesTopicChannel_auto_create() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class S3ResourceIntegrationTests {

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(Service.S3).withReuse(true);
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(Service.S3).withReuse(true);

private static S3Client client;

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

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(LocalStackContainer.Service.S3)
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(LocalStackContainer.Service.S3)
.withReuse(true);

private static S3Client client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class MailSendingApplication {
* logs in debug mode.
*/
private static final LocalStackContainer localStack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:0.14.0")).withEnv(Collections.singletonMap("DEBUG", "1"))
DockerImageName.parse("localstack/localstack:0.14.2")).withEnv(Collections.singletonMap("DEBUG", "1"))
.withServices(SES);

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public SpringSNSSample(SnsTemplate snsTemplate, SnsClient snsClient) {

public static void main(String[] args) {
Testcontainers.exposeHostPorts(8080);
localStack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SNS);
localStack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SNS);
localStack.start();
System.setProperty("spring.cloud.aws.sns.region", localStack.getRegion());
System.setProperty("spring.cloud.aws.sns.endpoint", localStack.getEndpointOverride(SNS).toString());
Expand Down