Skip to content

Commit 9535396

Browse files
chore: upgraded deps
Signed-off-by: K Siva Prasad Reddy <[email protected]>
1 parent 45367bd commit 9535396

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

catalog-service/src/test/java/com/sivalabs/bookstore/catalog/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ public class ContainersConfig {
1111
@Bean
1212
@ServiceConnection
1313
PostgreSQLContainer<?> postgresContainer() {
14-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17-alpine"));
14+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:18-alpine"));
1515
}
1616
}

deployment/docker-compose/infra.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'spring-boot-microservices-course'
22
services:
33
catalog-db:
4-
image: postgres:17-alpine
4+
image: postgres:18-alpine
55
container_name: catalog-db
66
environment:
77
- POSTGRES_USER=postgres
@@ -20,7 +20,7 @@ services:
2020
memory: 500m
2121

2222
orders-db:
23-
image: postgres:17-alpine
23+
image: postgres:18-alpine
2424
container_name: orders-db
2525
environment:
2626
- POSTGRES_USER=postgres
@@ -58,7 +58,7 @@ services:
5858
memory: 500m
5959

6060
notifications-db:
61-
image: postgres:17-alpine
61+
image: postgres:18-alpine
6262
container_name: notifications-db
6363
environment:
6464
- POSTGRES_USER=postgres

notification-service/src/test/java/com/sivalabs/bookstore/notifications/ContainersConfig.java

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

2020
@Bean

order-service/src/test/java/com/sivalabs/bookstore/orders/ContainersConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ WireMockContainer wiremockServer() {
3030
@Bean
3131
@ServiceConnection
3232
PostgreSQLContainer<?> postgresContainer() {
33-
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:17-alpine"));
33+
return new PostgreSQLContainer<>(DockerImageName.parse("postgres:18-alpine"));
3434
}
3535

3636
@Bean

renovate.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:recommended",
5-
"schedule:earlyMondays"
4+
"config:recommended"
65
]
76
}

0 commit comments

Comments
 (0)