Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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", "17.4")
new PostgresServiceDependency(xas).serviceDescription.accepted shouldEqual ServiceDescription("postgres", "17.5")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ElasticSearchContainer(password: String)
}

object ElasticSearchContainer {
val Version = "9.0.0"
val Version = "9.0.1"

private val ElasticSearchUser = "elastic"
private val ElasticSearchPassword = "password"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import software.amazon.awssdk.services.s3.S3AsyncClient

object LocalStackS3 {
val ServiceType = Service.S3
val Version = "4.3"
val Version = "4.4"

def localstackS3(): Resource[IO, LocalStackV2Container] = {

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:17.4")) {
extends GenericContainer[PostgresContainer](DockerImageName.parse("library/postgres:17.5")) {
addEnv("POSTGRES_USER", user)
addEnv("POSTGRES_PASSWORD", password)
addEnv("POSTGRES_DB", database)
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/docs/delta/api/assets/version.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"delta": "1.11.0",
"dependencies": {
"blazegraph": "2.1.6-RC-21-jre",
"postgresql": "17.4",
"elasticsearch": "9.0.0"
"postgresql": "17.5",
"elasticsearch": "9.0.1"
},
"plugins": {
"archive": "1.10.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
memory: 1024M

elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:9.0.0"
image: "docker.elastic.co/elasticsearch/elasticsearch:9.0.1"
environment:
discovery.type: "single-node"
bootstrap.memory_lock: "true"
Expand All @@ -44,7 +44,7 @@ services:
memory: 512M

postgres:
image: library/postgres:17.4
image: library/postgres:17.5
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
Expand Down
14 changes: 7 additions & 7 deletions docs/src/main/paradox/docs/running-nexus/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,18 @@ Example
$ curl http://localhost/v1/version | jq
{
"@context": "https://bluebrain.github.io/nexus/contexts/version.json",
"delta": "1.10.0",
"delta": "1.11.0",
"dependencies": {
"blazegraph": "2.1.6-SNAPSHOT",
"elasticsearch": "9.0.0",
"postgres": "17.4"
"elasticsearch": "9.0.1",
"postgres": "17.5"
},
"environment": "dev",
"plugins": {
"archive": "1.10.0",
"blazegraph": "1.10.0",
"composite-views": "1.10.0",
"elasticsearch": "1.10.0",
"archive": "1.11.0",
"blazegraph": "1.11.0",
"composite-views": "1.11.0",
"elasticsearch": "1.11.0",
"storage": "1.10.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/elasticsearch.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:9.0.0
image: docker.elastic.co/elasticsearch/elasticsearch:9.0.1
environment:
ES_JAVA_OPTS: "-Xmx4G"
discovery.type: "single-node"
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/localstack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
localstack:
image: localstack/localstack:4.3
image: localstack/localstack:4.4
environment:
AWS_ACCESS_KEY_ID: "MY_ACCESS_KEY"
AWS_SECRET_ACCESS_KEY: "CHUTCHUT"
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: library/postgres:17.4
image: library/postgres:17.5
ports:
- 5432:5432
environment:
Expand Down