From eb0fedf161de1bc1ffa22eea552c0a609bd1dcad Mon Sep 17 00:00:00 2001 From: Dag-Inge Aas <284996+dagingaa@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:07:02 +0200 Subject: [PATCH] Update GoTrue Image to avoid signup link generation bug GoTrue version 2.145.0 has a bug where generating a signup link will fail with "user_not_found", which was fixed in 2.146.0 (https://github.com/supabase/auth/pull/1514). Since 2.145.0 is locked in the CLI, we can't get the bug fix out. This PR updates the image to 2.149.0 which is the most recent version as of 2024-04-22 so the signup link generation works again. --- internal/utils/misc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/misc.go b/internal/utils/misc.go index 4b49cae59..f0d678d04 100644 --- a/internal/utils/misc.go +++ b/internal/utils/misc.go @@ -40,7 +40,7 @@ const ( VectorImage = "timberio/vector:0.28.1-alpine" PgbouncerImage = "bitnami/pgbouncer:1.20.1-debian-11-r39" PgProveImage = "supabase/pg_prove:3.36" - GotrueImage = "supabase/gotrue:v2.145.0" + GotrueImage = "supabase/gotrue:v2.149.0" RealtimeImage = "supabase/realtime:v2.28.23" StorageImage = "supabase/storage-api:v1.0.6" LogflareImage = "supabase/logflare:1.4.0"