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
10 changes: 5 additions & 5 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 stack default versions with Dockerfile

This Dockerfile is also the source for packages/stack/scripts/sync-versions-from-dockerfile.ts, but packages/stack/src/versions.ts still pins the old DEFAULT_VERSIONS for postgrest/auth/realtime/studio/analytics, so the TypeScript stack will continue starting and prefetching the older images while the Dockerfile-backed CLI manifest reports the newer ones. Please run pnpm sync:versions in packages/stack and commit the generated DEFAULT_VERSIONS update with this bump.

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/gotrue:v2.193.0 AS gotrue
FROM supabase/realtime:v2.112.13 AS realtime
FROM supabase/storage-api:v1.66.2 AS storage
FROM supabase/logflare:1.47.0 AS logflare
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
10 changes: 5 additions & 5 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",
realtime: "2.112.13",
storage: "1.66.2",
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