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 @@ -5,15 +5,15 @@ FROM library/kong:2.8.1 AS kong
FROM axllent/mailpit:v1.30.2 AS mailpit
FROM postgrest/postgrest:v16.2 AS postgrest
FROM supabase/postgres-meta:v0.99.0 AS pgmeta
FROM supabase/studio:2026.08.24-sha-8ec45b2 AS studio
FROM supabase/studio:2026.08.31-sha-2c76bb3 AS studio

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 service catalog with the bumped pins

When an unlinked project uses the managed TypeScript stack, its defaults come from packages/stack/src/ServiceCatalog.ts, which still contains the previous Studio, Edge Runtime, Realtime, Storage, and Analytics versions. Consequently, this commit updates the legacy Dockerfile-backed stack while the managed stack continues launching the old images. Run packages/stack's pnpm sync:versions and include the generated catalog changes; the repository workflow only performs that update automatically for Dependabot-authored PRs.

Useful? React with 👍 / 👎.

FROM darthsim/imgproxy:v3.8.0 AS imgproxy
FROM supabase/edge-runtime:v1.74.3 AS edgeruntime
FROM supabase/edge-runtime:v1.75.0 AS edgeruntime
FROM timberio/vector:0.53.0-alpine AS vector
FROM supabase/supavisor:2.9.12 AS supavisor
FROM supabase/gotrue:v2.196.0 AS gotrue
FROM supabase/realtime:v2.130.0 AS realtime
FROM supabase/storage-api:v1.72.1 AS storage
FROM supabase/logflare:1.50.6 AS logflare
FROM supabase/realtime:v2.132.0 AS realtime
FROM supabase/storage-api:v1.72.4 AS storage
FROM supabase/logflare:1.50.7 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/ServiceCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const SERVICE_CATALOG = {
"edge-runtime": {
name: "edge-runtime",
configKey: "edgeRuntime",
defaultVersion: "v1.74.3",
defaultVersion: "v1.75.0",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "edge-runtime" },
Expand All @@ -205,7 +205,7 @@ export const SERVICE_CATALOG = {
realtime: {
name: "realtime",
configKey: "realtime",
defaultVersion: "v2.130.0",
defaultVersion: "v2.132.0",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "realtime" },
Expand All @@ -217,7 +217,7 @@ export const SERVICE_CATALOG = {
storage: {
name: "storage",
configKey: "storage",
defaultVersion: "v1.72.1",
defaultVersion: "v1.72.4",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "storage" },
Expand Down Expand Up @@ -265,7 +265,7 @@ export const SERVICE_CATALOG = {
studio: {
name: "studio",
configKey: "studio",
defaultVersion: "2026.08.24-sha-8ec45b2",
defaultVersion: "2026.08.31-sha-2c76bb3",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "studio" },
Expand All @@ -277,7 +277,7 @@ export const SERVICE_CATALOG = {
analytics: {
name: "analytics",
configKey: "analytics",
defaultVersion: "v1.50.6",
defaultVersion: "v1.50.7",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "analytics" },
Expand Down
Loading