Skip to content

Commit

Permalink
chore(deps) : upgrade localstack version to latest (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Dec 1, 2023
1 parent 60fd10e commit 4dbcc1d
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class LocalStackConfig {
static {
localStackContainer =
new LocalStackContainer(
DockerImageName.parse("localstack/localstack").withTag("2.3.2"))
DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withServices(CLOUDWATCH)
.withExposedPorts(4566);
localStackContainer.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Slf4j
public class LocalStackConfig {
protected static final LocalStackContainer LOCAL_STACK_CONTAINER =
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.0"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withCopyFileToContainer(
MountableFile.forHostPath(".localstack/"),
"/etc/localstack/init/ready.d/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class LocalStackConfig {

@Container
static LocalStackContainer localStackContainer =
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.0.1"));
new LocalStackContainer(DockerImageName.parse("localstack/localstack:3.0.2"));

static {
localStackContainer.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class LocalStackConfig {
System.setProperty("com.amazonaws.sdk.disableCbor", "true");
localStackContainer =
new LocalStackContainer(
DockerImageName.parse("localstack/localstack").withTag("2.3.2"))
DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withEnv("EAGER_SERVICE_LOADING", "1")
.withServices(KINESIS)
.withExposedPorts(4566);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ApplicationIntegrationTest {

@Container
static LocalStackContainer localstack = new LocalStackContainer(
DockerImageName.parse("localstack/localstack:3.0.0"))
DockerImageName.parse("localstack/localstack:3.0.2"))
.withNetwork(network)
.withEnv("LOCALSTACK_HOST", "localhost.localstack.cloud")
.withEnv("LAMBDA_DOCKER_NETWORK", ((Network.NetworkImpl) network).getName())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class TestApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> sqlContainer() {
return new PostgreSQLContainer<>("postgres:16.0-alpine");
return new PostgreSQLContainer<>("postgres:16.1-alpine");
}

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class LocalStackContainerConfig {

@Container
private static final LocalStackContainer localStackContainer =
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("2.3.2"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withCopyFileToContainer(
MountableFile.forHostPath("localstack/"),
"/etc/localstack/init/ready.d/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PostgreSQLContainer<?> postgresContainer() {
}

static final LocalStackContainer LOCALSTACKCONTAINER =
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.1"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withCopyFileToContainer(
MountableFile.forHostPath(".localstack/"),
"/etc/localstack/init/ready.d/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class TestApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> sqlContainer() {
return new PostgreSQLContainer<>("postgres:16.0-alpine");
return new PostgreSQLContainer<>("postgres:16.1-alpine");
}

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class LocalStackContainerConfig {

@Container
private static final LocalStackContainer localStackContainer =
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("2.3.2"))
new LocalStackContainer(DockerImageName.parse("localstack/localstack").withTag("3.0.2"))
.withCopyFileToContainer(
MountableFile.forHostPath("localstack/"),
"/etc/localstack/init/ready.d/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class LocalStackConfig {

static final LocalStackContainer localStackContainer =
new LocalStackContainer(
DockerImageName.parse("localstack/localstack").withTag("2.3.2"));
DockerImageName.parse("localstack/localstack").withTag("3.0.2"));

static {
localStackContainer.start();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ public class TestcontainersConfig {
@Bean
@ServiceConnection
public PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>("postgres:16.0-alpine");
return new PostgreSQLContainer<>("postgres:16.1-alpine");
}

static final LocalStackContainer localStackContainer =
new LocalStackContainer(
DockerImageName.parse("localstack/localstack").withTag("2.3.2"));
DockerImageName.parse("localstack/localstack").withTag("3.0.2"));

static {
localStackContainer.start();
Expand Down

0 comments on commit 4dbcc1d

Please sign in to comment.