Skip to content

Commit

Permalink
feat : upgrade all to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 3, 2024
1 parent 69cc9e1 commit 3fc4478
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions r2dbc/boot-r2dbc-reactive-cache/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
postgres:
container_name: postgres_movie_db
image: postgres:16.6-alpine
image: postgres:17.2-alpine
environment:
POSTGRES_USER: appuser
POSTGRES_PASSWORD: secret
Expand All @@ -12,7 +12,7 @@ services:
- local_dev:/var/lib/postgresql/data
redis:
container_name: redis_movie_db
image: redis/redis-stack:latest
image: redis/redis-stack:7.4.0-v1
ports:
- "6379:6379"
- "8001:8001"
Expand Down
2 changes: 1 addition & 1 deletion r2dbc/boot-r2dbc-reactive-cache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<java.version>21</java.version>
<springdoc-openapi.version>2.6.0</springdoc-openapi.version>
<springdoc-openapi.version>2.7.0</springdoc-openapi.version>
<commons-io.version>2.18.0</commons-io.version>

<project.testresult.directory>${project.build.directory}/test-results</project.testresult.directory>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.example.cache;

import com.example.cache.common.ContainersConfig;
import org.springframework.boot.SpringApplication;

public class TestR2dbcCacheApplication {

public static void main(String[] args) {
SpringApplication.from(R2dbcCacheApplication::main)
.with(ContainersConfig.class)
.run(args);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class ContainersConfig {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("16.4-alpine"));
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.2-alpine"));
}

@Bean
Expand Down

0 comments on commit 3fc4478

Please sign in to comment.