Skip to content
Draft
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
6 changes: 3 additions & 3 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ includes:


env:
ATLAS_POSTGRES_DB_URI: "postgres:17-alpine"
TEST_DB_URL: "docker://postgres:17-alpine"
ATLAS_POSTGRES_DB_URI: "postgres:18-alpine"
TEST_DB_URL: "docker://postgres:18-alpine"
TEST_DB_CONTAINER_EXPIRY: "20" # in minutes
TEST_FGA_URL: "localhost:8080"
ENV: config
Expand Down Expand Up @@ -327,7 +327,7 @@ tasks:
desc: runs and outputs results of created go tests
aliases: ["go:test:psql", "test:psql"]
env:
TEST_DB_URL: "docker://postgres:17-alpine"
TEST_DB_URL: "docker://postgres:18-alpine"
GOFLAGS: "{{.GO_INLINE_FLAG}}"
cmds:
- go test -v ./... -tags test
Expand Down
2 changes: 1 addition & 1 deletion db/atlas.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data "remote_dir" "migrations" {
}

docker "postgres" "dev" {
image = "postgres:17"
image = "postgres:18"
schema = "public"
baseline = file("baseline/extensions.sql")
}
Expand Down
2 changes: 1 addition & 1 deletion internal/entdb/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var postgresExtensions = []string{

const (
// defaultDBTestImage is the default docker image to use for testing
defaultDBTestImage = "docker://postgres:17-alpine"
defaultDBTestImage = "docker://postgres:18-alpine"
)

type client struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/gala/test_helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
// defaultTestImage is the default docker image for test databases
defaultTestImage = "docker://postgres:17-alpine"
defaultTestImage = "docker://postgres:18-alpine"
// defaultTestQueueName is the default queue name for gala tests
defaultTestQueueName = "gala_test"
// defaultTestWorkerCount is the default worker count for gala tests
Expand Down