From 29e241527af502bc427139ae07d29a789c51d9da Mon Sep 17 00:00:00 2001 From: Terry Sutton Date: Wed, 19 Feb 2025 07:07:48 -0330 Subject: [PATCH] fix: bump studio to 20250219-7101314 (#3161) * Bump studio version * fix: update studio health check * Update constants.go --------- Co-authored-by: Han Qiao --- internal/start/start.go | 2 +- pkg/config/constants.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/start/start.go b/internal/start/start.go index bd9ca0b9b..aae4520d5 100644 --- a/internal/start/start.go +++ b/internal/start/start.go @@ -991,7 +991,7 @@ EOF "HOSTNAME=0.0.0.0", }, Healthcheck: &container.HealthConfig{ - Test: []string{"CMD-SHELL", `node --eval="fetch('http://127.0.0.1:3000/api/profile').then((r) => {if (!r.ok) throw new Error(r.status)})"`}, + Test: []string{"CMD-SHELL", `node --eval="fetch('http://127.0.0.1:3000/api/platform/profile').then((r) => {if (!r.ok) throw new Error(r.status)})"`}, Interval: 10 * time.Second, Timeout: 2 * time.Second, Retries: 3, diff --git a/pkg/config/constants.go b/pkg/config/constants.go index 8683d1b68..2106499a3 100644 --- a/pkg/config/constants.go +++ b/pkg/config/constants.go @@ -10,7 +10,7 @@ const ( inbucketImage = "inbucket/inbucket:3.0.3" postgrestImage = "postgrest/postgrest:v12.2.0" pgmetaImage = "supabase/postgres-meta:v0.84.2" - studioImage = "supabase/studio:20250113-83c9420" + studioImage = "supabase/studio:20250219-7101314" imageProxyImage = "darthsim/imgproxy:v3.8.0" edgeRuntimeImage = "supabase/edge-runtime:v1.67.2" vectorImage = "timberio/vector:0.28.1-alpine"