Skip to content
Open
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
12 changes: 6 additions & 6 deletions apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ FROM supabase/postgres:17.6.1.143 AS pg
# Append to ServiceImages when adding new dependencies below
FROM library/kong:2.8.1 AS kong
FROM axllent/mailpit:v1.30.2 AS mailpit
FROM postgrest/postgrest:v14.14 AS postgrest
FROM postgrest/postgrest:v14.15 AS postgrest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Sync TS stack defaults with bumped Dockerfile images

The Dockerfile is the source read by packages/stack/scripts/sync-versions-from-dockerfile.ts (dockerfilePath -> packages/stack/src/versions.ts), but the committed DEFAULT_VERSIONS still pins postgrest/auth/realtime/storage/studio/analytics to the previous tags. Because .github/workflows/sync-stack-service-versions.yml only auto-commits that sync for dependabot-authored PRs, this branch can land with the Go stack pulling the bumped images while the TS stack continues using the old defaults; please commit the stack version sync alongside these bumps.

Useful? React with 👍 / 👎.

FROM supabase/postgres-meta:v0.96.6 AS pgmeta
FROM supabase/studio:2026.07.07-sha-a6a04f2 AS studio
FROM supabase/studio:2026.07.13-sha-b5ada96 AS studio
FROM darthsim/imgproxy:v3.8.0 AS imgproxy
FROM supabase/edge-runtime:v1.74.2 AS edgeruntime
FROM timberio/vector:0.53.0-alpine AS vector
FROM supabase/supavisor:2.9.7 AS supavisor
FROM supabase/gotrue:v2.192.0 AS gotrue
FROM supabase/realtime:v2.112.10 AS realtime
FROM supabase/storage-api:v1.66.2 AS storage
FROM supabase/logflare:1.47.0 AS logflare
FROM supabase/gotrue:v2.193.0 AS gotrue
FROM supabase/realtime:v2.113.4 AS realtime
FROM supabase/storage-api:v1.66.4 AS storage
FROM supabase/logflare:1.47.1 AS logflare
# Append to JobImages when adding new dependencies below
FROM supabase/pgadmin-schema-diff:cli-0.0.5 AS differ
FROM supabase/migra:3.0.1663481299 AS migra
Expand Down
12 changes: 6 additions & 6 deletions packages/stack/src/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ export interface VersionManifest {

export const DEFAULT_VERSIONS: VersionManifest = {
postgres: "17.6.1.143",
postgrest: "14.14",
auth: "2.192.0",
postgrest: "14.15",
auth: "2.193.0",
"edge-runtime": "1.74.2",
realtime: "2.112.10",
storage: "1.66.2",
realtime: "2.113.4",
storage: "1.66.4",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
pgmeta: "0.96.6",
studio: "2026.07.07-sha-a6a04f2",
analytics: "1.47.0",
studio: "2026.07.13-sha-b5ada96",
analytics: "1.47.1",
vector: "0.53.0-alpine",
pooler: "2.9.7",
} as const;
Expand Down
Loading