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
2 changes: 1 addition & 1 deletion docker/docker-compose-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ services:

postgres:
container_name: postgres
image: postgres:17.2
image: postgres:17.4
shm_size: "2gb"
environment:
POSTGRES_DB: "otel_demo_db"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IndexesMaintenanceTest extends TestBase {
void checkPostgresVersion() {
final String pgVersion = jdbcTemplate.queryForObject("select version();", String.class);
assertThat(pgVersion)
.startsWith("PostgreSQL 17.2");
.startsWith("PostgreSQL 17.4");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

public class PostgresInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {

private static final DockerImageName IMAGE = DockerImageName.parse("postgres:17.2");
private static final DockerImageName IMAGE = DockerImageName.parse("postgres:17.4");
private static final Network NETWORK = Network.newNetwork();
private static final PostgreSQLContainer<?> CONTAINER = new PostgreSQLContainer<>(IMAGE);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IndexesMaintenanceTest extends TestBase {
void checkPostgresVersion() {
final String pgVersion = jdbcTemplate.queryForObject("select version();", String.class);
assertThat(pgVersion)
.startsWith("PostgreSQL 17.2");
.startsWith("PostgreSQL 17.4");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

public class PostgresInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {

private static final DockerImageName IMAGE = DockerImageName.parse("postgres:17.2");
private static final DockerImageName IMAGE = DockerImageName.parse("postgres:17.4");
private static final Network NETWORK = Network.newNetwork();
private static final PostgreSQLContainer<?> CONTAINER = new PostgreSQLContainer<>(IMAGE);

Expand Down