Skip to content

Commit

Permalink
feat: upgrade to pg 17
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Nov 18, 2024
1 parent 728f665 commit 676f8ce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
postgresqldb:
container_name: postgresqldb
image: pgvector/pgvector:pg16
image: pgvector/pgvector:pg17
extra_hosts: [ 'host.docker.internal:host-gateway' ]
restart: always
environment:
Expand Down
6 changes: 3 additions & 3 deletions rag/rag-langchain4j-AllMiniLmL6V2-llm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.example.ai</groupId>
Expand All @@ -16,7 +16,7 @@

<properties>
<java.version>21</java.version>
<langchain4j.version>0.35.0</langchain4j.version>
<langchain4j.version>0.36.0</langchain4j.version>
<langchain4j.springboot.version>0.36.0</langchain4j.springboot.version>
<spotless.version>2.43.0</spotless.version>
</properties>
Expand Down Expand Up @@ -126,7 +126,7 @@
<configuration>
<java>
<palantirJavaFormat>
<version>2.47.0</version>
<version>2.50.0</version>
</palantirJavaFormat>
<importOrder />
<removeUnusedImports />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ public interface ContainersConfig {

@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer =
new PostgreSQLContainer<>(DockerImageName.parse("pgvector/pgvector:pg16"));
new PostgreSQLContainer<>(DockerImageName.parse("pgvector/pgvector:pg17"));
}

0 comments on commit 676f8ce

Please sign in to comment.