Skip to content

Commit e362bf6

Browse files
Upgrade Localstack to 0.14.2 (#350)
1 parent a0b3141 commit e362bf6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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
@@ -57,7 +57,7 @@ class ParameterStoreConfigDataLoaderIntegrationTests {
5757

5858
@Container
5959
static LocalStackContainer localstack = new LocalStackContainer(
60-
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SSM).withReuse(true);
60+
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SSM).withReuse(true);
6161

6262
@BeforeAll
6363
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
@@ -56,7 +56,7 @@ class SecretsManagerConfigDataLoaderIntegrationTests {
5656

5757
@Container
5858
static LocalStackContainer localstack = new LocalStackContainer(
59-
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SECRETSMANAGER).withReuse(true);
59+
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SECRETSMANAGER).withReuse(true);
6060

6161
@BeforeAll
6262
static void beforeAll() {

spring-cloud-aws-autoconfigure/src/test/java/io/awspring/cloud/autoconfigure/sns/it/SnsTemplateIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class SnsTemplateIntegrationTest {
4646

4747
@Container
4848
static LocalStackContainer localstack = new LocalStackContainer(
49-
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(SNS).withReuse(true);
49+
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(SNS).withReuse(true);
5050

5151
@Test
5252
void send_validTextMessage_usesTopicChannel_auto_create() {

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
@@ -55,7 +55,7 @@ class S3ResourceIntegrationTests {
5555

5656
@Container
5757
static LocalStackContainer localstack = new LocalStackContainer(
58-
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(Service.S3).withReuse(true);
58+
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(Service.S3).withReuse(true);
5959

6060
private static S3Client client;
6161

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
@@ -56,7 +56,7 @@ class S3TemplateIntegrationTests {
5656

5757
@Container
5858
static LocalStackContainer localstack = new LocalStackContainer(
59-
DockerImageName.parse("localstack/localstack:0.14.0")).withServices(LocalStackContainer.Service.S3)
59+
DockerImageName.parse("localstack/localstack:0.14.2")).withServices(LocalStackContainer.Service.S3)
6060
.withReuse(true);
6161

6262
private static S3Client client;

spring-cloud-aws-samples/spring-cloud-aws-ses-sample/src/main/java/io/awspring/cloud/samples/ses/MailSendingApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class MailSendingApplication {
5252
* logs in debug mode.
5353
*/
5454
private static final LocalStackContainer localStack = new LocalStackContainer(
55-
DockerImageName.parse("localstack/localstack:0.14.0")).withEnv(Collections.singletonMap("DEBUG", "1"))
55+
DockerImageName.parse("localstack/localstack:0.14.2")).withEnv(Collections.singletonMap("DEBUG", "1"))
5656
.withServices(SES);
5757

5858
public static void main(String[] args) {

spring-cloud-aws-samples/spring-cloud-aws-sns-sample/src/main/java/io/awspring/cloud/sns/sample/SpringSNSSample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public SpringSNSSample(SnsTemplate snsTemplate, SnsClient snsClient) {
4747

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

0 commit comments

Comments
 (0)