From 05358c63b064e1570fcf5ea52fa339c67b1a35e7 Mon Sep 17 00:00:00 2001 From: Lakshan Perera Date: Mon, 5 Feb 2024 15:47:09 +1100 Subject: [PATCH] fix: show edge-runtime & deno version on start --- internal/functions/serve/templates/main.ts | 2 +- internal/utils/misc.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/functions/serve/templates/main.ts b/internal/functions/serve/templates/main.ts index 0b19bcad1..307da33c1 100644 --- a/internal/functions/serve/templates/main.ts +++ b/internal/functions/serve/templates/main.ts @@ -182,7 +182,7 @@ serve(async (req: Request) => { }, { onListen: () => { console.log( - `Serving functions on http://127.0.0.1:${HOST_PORT}/functions/v1/`, + `Serving functions on http://127.0.0.1:${HOST_PORT}/functions/v1/\nUsing ${Deno.version.deno}`, ); }, }); diff --git a/internal/utils/misc.go b/internal/utils/misc.go index 5d92f44ba..d38b8e52c 100644 --- a/internal/utils/misc.go +++ b/internal/utils/misc.go @@ -34,7 +34,7 @@ const ( PgmetaImage = "supabase/postgres-meta:v0.75.0" StudioImage = "supabase/studio:20240101-8e4a094" ImageProxyImage = "darthsim/imgproxy:v3.8.0" - EdgeRuntimeImage = "supabase/edge-runtime:v1.33.0" + EdgeRuntimeImage = "supabase/edge-runtime:v1.33.5" VectorImage = "timberio/vector:0.28.1-alpine" PgbouncerImage = "bitnami/pgbouncer:1.20.1-debian-11-r39" PgProveImage = "supabase/pg_prove:3.36"