diff --git a/apps/cli-go/pkg/config/templates/Dockerfile b/apps/cli-go/pkg/config/templates/Dockerfile index 6b9c671d1d..5a908fb62c 100644 --- a/apps/cli-go/pkg/config/templates/Dockerfile +++ b/apps/cli-go/pkg/config/templates/Dockerfile @@ -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 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 diff --git a/packages/stack/src/versions.ts b/packages/stack/src/versions.ts index be3d7f5687..096662449c 100644 --- a/packages/stack/src/versions.ts +++ b/packages/stack/src/versions.ts @@ -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;