Skip to content

Commit d3ebaa2

Browse files
chore(deps) : upgrade postgres container to latest version
1 parent 9b7fdb3 commit d3ebaa2

File tree

32 files changed

+33
-33
lines changed

32 files changed

+33
-33
lines changed

batch-boot-jpa-sample/src/test/java/com/example/bootbatchjpa/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

boot-api-archunit-sample/src/test/java/com/example/archunit/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

boot-chaos-monkey/src/test/java/com/example/choasmonkey/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class ContainerConfig {
1414
@ServiceConnection
1515
@RestartScope
1616
PostgreSQLContainer<?> postgreSQLContainer() {
17-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
17+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
1818
}
1919
}

boot-rabbitmq-thymeleaf/src/test/java/com/poc/boot/rabbitmq/common/ContainerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ RabbitMQContainer rabbitMQContainer() {
2121
@Bean
2222
@ServiceConnection
2323
PostgreSQLContainer<?> postgreSQLContainer() {
24-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
24+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
2525
}
2626
}

boot-rest-docs-sample/src/test/java/com/example/restdocs/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
1616
}
1717
}

graphql/boot-graphql-querydsl/src/test/java/com/example/graphql/querydsl/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine")).withReuse(true);
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine")).withReuse(true);
1616
}
1717
}

graphql/boot-graphql-webflux/src/test/java/com/example/graphql/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

graphql/boot-graphql-webmvc/src/test/java/com/example/graphql/common/TestContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ public interface TestContainersConfig {
88

99
@ServiceConnection
1010
PostgreSQLContainer<?> postgreSQLContainer =
11-
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
11+
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1212
}

httpClients/boot-http-proxy/src/test/java/com/example/rest/proxy/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class ContainersConfig {
1414
@ServiceConnection
1515
@RestartScope
1616
PostgreSQLContainer<?> postgresContainer() {
17-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
17+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1818
}
1919
}

httpClients/boot-rest-template/src/test/java/com/example/rest/template/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgresContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

jpa/boot-data-envers/src/test/java/com/example/envers/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

jpa/boot-data-multipledatasources/src/test/java/com/example/multipledatasources/common/ContainersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ MySQLContainer<?> mySQLContainer() {
2222

2323
@Bean
2424
PostgreSQLContainer<?> postgreSQLContainer() {
25-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
25+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
2626
}
2727

2828
@Bean

jpa/boot-hibernate2ndlevelcache-sample/src/test/java/com/example/hibernatecache/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class ContainersConfig {
1616
@Bean
1717
@ServiceConnection
1818
PostgreSQLContainer<?> postgreSQLContainer() {
19-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
19+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
2020
}
2121

2222
@Bean

jpa/boot-jndi-sample/src/test/java/com/example/jndi/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class ContainersConfig {
99

1010
private static final PostgreSQLContainer<?> postgreSQLContainer =
11-
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
11+
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1212

1313
static {
1414
postgreSQLContainer.start();

jpa/boot-jpa-jooq-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
MYSQL: mysql:8.0.33
195195
MARIADB: mariadb:10.11
196196
-->
197-
<containerImage>postgres:17.4-alpine</containerImage>
197+
<containerImage>postgres:17.5-alpine</containerImage>
198198
</database>
199199
<liquibase>
200200
<changeLogPath>db.changelog-master.yaml</changeLogPath>

jpa/boot-jpa-jooq-sample/src/test/java/com/example/learning/common/SQLContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class SQLContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

jpa/boot-jpa-locks/src/test/java/com/example/locks/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

jpa/keyset-pagination/blaze-persistence/src/test/java/com/example/keysetpagination/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
1616
}
1717
}

jpa/keyset-pagination/boot-data-window-pagination/src/test/java/com/example/keysetpagination/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

jpa/multitenancy/multidatasource-multitenancy/src/test/java/com/example/multitenancy/common/ContainersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class ContainersConfiguration {
1212

1313
@Bean
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717

1818
@Bean

jpa/multitenancy/multitenancy-db/src/test/java/com/example/multitenancy/db/common/DBContainerInitializer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ public class DBContainerInitializer
1111
implements ApplicationContextInitializer<ConfigurableApplicationContext> {
1212

1313
private static final PostgreSQLContainer<?> POSTGRE_SQL_CONTAINER =
14-
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
14+
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1515

1616
private static final PostgreSQLContainer<?> POSTGRE_SQL_CONTAINER_1 =
17-
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
17+
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1818

1919
static {
2020
Startables.deepStart(POSTGRE_SQL_CONTAINER, POSTGRE_SQL_CONTAINER_1).join();

jpa/multitenancy/partition/src/test/java/com/example/multitenancy/partition/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
1616
}
1717
}

jpa/multitenancy/schema/src/test/java/com/example/multitenancy/schema/config/TestContainersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class TestContainersConfiguration {
1414
@ServiceConnection
1515
@RestartScope
1616
PostgreSQLContainer<?> postgreSQLContainer() {
17-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
17+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1818
}
1919
}

r2dbc/boot-jooq-r2dbc-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
MYSQL: mysql:8.0.33
217217
MARIADB: mariadb:10.11
218218
&ndash;&gt;
219-
<containerImage>postgres:17.4-alpine</containerImage>
219+
<containerImage>postgres:17.5-alpine</containerImage>
220220
</database>
221221
<flyway>
222222
&lt;!&ndash;

r2dbc/boot-jooq-r2dbc-sample/src/test/java/com/example/jooq/r2dbc/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

r2dbc/boot-r2dbc-json-column/src/test/java/com/example/learning/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class ContainerConfig {
1414
@Bean
1515
@ServiceConnection
1616
PostgreSQLContainer<?> postgreSQLContainer() {
17-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine")).withReuse(true);
17+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine")).withReuse(true);
1818
}
1919

2020
@Bean

r2dbc/boot-r2dbc-notify-listen/src/test/java/com/example/demo/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class ContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"))
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"))
1616
.withCommand("postgres -c wal_level=logical"); // Enable logical decoding for NOTIFY/LISTEN;
1717
}
1818
}

r2dbc/boot-r2dbc-reactive-cache/src/test/java/com/example/cache/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class ContainersConfig {
1313
@Bean
1414
@ServiceConnection
1515
PostgreSQLContainer<?> postgreSQLContainer() {
16-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
16+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1717
}
1818

1919
@Bean

r2dbc/boot-r2dbc-sample/src/test/java/com/example/bootr2dbc/common/ContainerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainerConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17.5-alpine"));
1616
}
1717
}

scheduler/boot-scheduler-jobrunr/src/test/java/com/example/jobrunr/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

scheduler/boot-scheduler-quartz/src/test/java/com/scheduler/quartz/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class ContainersConfig {
1313
@Bean
1414
@ServiceConnection
1515
PostgreSQLContainer<?> postgreSQLContainer() {
16-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
16+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1717
}
1818

1919
@Bean

scheduler/boot-scheduler-shedlock/src/test/java/com/learning/shedlock/common/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ public class ContainersConfig {
1212
@Bean
1313
@ServiceConnection
1414
PostgreSQLContainer<?> postgreSQLContainer() {
15-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.4-alpine"));
15+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.5-alpine"));
1616
}
1717
}

0 commit comments

Comments
 (0)