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
8 changes: 4 additions & 4 deletions apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ FROM supabase/studio:2026.08.24-sha-8ec45b2 AS studio
FROM darthsim/imgproxy:v3.8.0 AS imgproxy
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/supavisor:2.9.12 AS supavisor

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 Update the pooler assertion for the synchronized version

When the Sync Stack Service Versions workflow processes this Dockerfile change, it runs pnpm sync:versions and commits only packages/stack/src/ServiceCatalog.ts, changing DEFAULT_VERSIONS.pooler to 2.9.12; however, packages/stack/src/versions.unit.test.ts:117 still expects ghcr.io/supabase/supavisor:2.9.7. The stack unit suite will therefore fail after the workflow's generated follow-up commit, so update that assertion as part of this bump.

Useful? React with 👍 / 👎.

FROM supabase/gotrue:v2.196.0 AS gotrue
FROM supabase/realtime:v2.129.9 AS realtime
FROM supabase/storage-api:v1.71.0 AS storage
FROM supabase/logflare:1.50.6 AS logflare
FROM supabase/realtime:v2.130.0 AS realtime
FROM supabase/storage-api:v1.72.1 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
8 changes: 4 additions & 4 deletions packages/stack/src/ServiceCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const SERVICE_CATALOG = {
realtime: {
name: "realtime",
configKey: "realtime",
defaultVersion: "v2.129.9",
defaultVersion: "v2.130.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.71.0",
defaultVersion: "v1.72.1",
runtimeSupport: "docker-only",
artifact: {
docker: { repository: "storage" },
Expand Down Expand Up @@ -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 All @@ -301,7 +301,7 @@ export const SERVICE_CATALOG = {
pooler: {
name: "pooler",
configKey: "pooler",
defaultVersion: "2.9.7",
defaultVersion: "2.9.12",
runtimeSupport: "docker-only",
artifact: {
docker: { registry: SUPABASE_GHCR_REGISTRY, repository: "supavisor" },
Expand Down
Loading