Skip to content

Commit

Permalink
Update tests and docs to use PostgreSQL 15.4 (#4157)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Dumas <simon.dumas@epfl.ch>
  • Loading branch information
imsdu and Simon Dumas authored Aug 14, 2023
1 parent f16eef7 commit 1fc066c
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 @@ -12,7 +12,7 @@ class PostgresServiceDependencySpec extends DoobieScalaTestFixture with Matchers

"fetch its service name and version" in {
new PostgresServiceDependency(xas).serviceDescription.accepted shouldEqual
ServiceDescription(Name.unsafe("postgres"), "15.3")
ServiceDescription(Name.unsafe("postgres"), "15.4")
}
}

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

class PostgresContainer(user: String, password: String)
extends GenericContainer[PostgresContainer](DockerImageName.parse("library/postgres:15.3")) {
extends GenericContainer[PostgresContainer](DockerImageName.parse("library/postgres:15.4")) {
addEnv("POSTGRES_USER", user)
addEnv("POSTGRES_PASSWORD", password)
addExposedPort(5432)
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.5.0",
"dependencies": {
"blazegraph": "2.1.6-RC",
"postgresql": "15.3",
"postgresql": "15.4",
"elasticsearch": "8.8.1",
"remoteStorage": "1.8.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
memory: 512M

postgres:
image: library/postgres:15.3
image: library/postgres:15.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ $ curl http://localhost/v1/version | jq
"dependencies": {
"blazegraph": "2.1.6-SNAPSHOT",
"elasticsearch": "8.8.0",
"postgres": "15.3"
"postgres": "15.4"
},
"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 @@ -99,7 +99,7 @@ services:
- ./config:/config

postgres:
image: library/postgres:15.3
image: library/postgres:15.4
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
Expand Down

0 comments on commit 1fc066c

Please sign in to comment.