Skip to content
Closed
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 apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ FROM supabase/edge-runtime:v1.74.3 AS edgeruntime
FROM timberio/vector:0.53.0-alpine AS vector
FROM supabase/supavisor:2.9.7 AS supavisor
FROM supabase/gotrue:v2.195.0 AS gotrue
FROM supabase/realtime:v2.123.1 AS realtime
FROM supabase/storage-api:v1.68.1 AS storage
FROM supabase/logflare:1.49.2 AS logflare
FROM supabase/realtime:v2.123.5 AS realtime
FROM supabase/storage-api:v1.68.7 AS storage
FROM supabase/logflare:1.50.0 AS logflare
Comment on lines +14 to +16

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 the stack default versions with these image bumps

When the TypeScript stack path is used, it does not read this Dockerfile at runtime: packages/stack/src/StackPreparation.ts pulls images from DEFAULT_VERSIONS, and packages/stack/scripts/sync-versions-from-dockerfile.ts exists specifically to copy this Dockerfile manifest into packages/stack/src/versions.ts. This commit bumps Realtime/Storage/Logflare here but leaves DEFAULT_VERSIONS at 2.123.1, 1.68.1, and 1.49.2, so the Go CLI and the programmatic/TS stack now start different service versions. Please update/sync packages/stack/src/versions.ts in the same change.

Useful? React with 👍 / 👎.

# 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
6 changes: 3 additions & 3 deletions packages/stack/src/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ export const DEFAULT_VERSIONS: VersionManifest = {
postgrest: "14.16",
auth: "2.195.0",
"edge-runtime": "1.74.3",
realtime: "2.123.1",
storage: "1.68.1",
realtime: "2.123.5",
storage: "1.68.7",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
pgmeta: "0.96.6",
studio: "2026.08.03-sha-022b374",
analytics: "1.49.2",
analytics: "1.50.0",
vector: "0.53.0-alpine",
pooler: "2.9.7",
} as const;
Expand Down
Loading