Skip to content

Commit

Permalink
Update to Postgres 16.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Dumas committed Nov 15, 2024
1 parent 169fdbb commit 636e62c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PostgresServiceDependencySpec extends CatsEffectSpec with DoobieScalaTestF
"PostgresServiceDependency" should {

"fetch its service name and version" in {
new PostgresServiceDependency(xas).serviceDescription.accepted shouldEqual ServiceDescription("postgres", "16.4")
new PostgresServiceDependency(xas).serviceDescription.accepted shouldEqual ServiceDescription("postgres", "16.5")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import scala.concurrent.duration.DurationInt
import scala.jdk.DurationConverters.ScalaDurationOps

class PostgresContainer(user: String, password: String, database: String)
extends GenericContainer[PostgresContainer](DockerImageName.parse("library/postgres:16.4")) {
extends GenericContainer[PostgresContainer](DockerImageName.parse("library/postgres:16.5")) {
addEnv("POSTGRES_USER", user)
addEnv("POSTGRES_PASSWORD", password)
addEnv("POSTGRES_DB222", database)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/paradox/docs/delta/api/assets/version.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"delta": "1.10.0",
"dependencies": {
"blazegraph": "2.1.6-RC-21-jre",
"postgresql": "16.4",
"postgresql": "16.5",
"elasticsearch": "8.15.1"
},
"plugins": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
memory: 512M

postgres:
image: library/postgres:16.4
image: library/postgres:16.5
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/paradox/docs/running-nexus/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ $ curl http://localhost/v1/version | jq
"dependencies": {
"blazegraph": "2.1.6-SNAPSHOT",
"elasticsearch": "8.15.1",
"postgres": "16.4"
"postgres": "16.5"
},
"environment": "dev",
"plugins": {
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ services:
- ./config:/config

postgres:
image: library/postgres:16.4
image: library/postgres:16.5
ports:
- 5432:5432
environment:
Expand Down

0 comments on commit 636e62c

Please sign in to comment.