Skip to content

Commit

Permalink
fix: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
J0 committed Apr 9, 2024
1 parent cec3732 commit 5879f67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/utils/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ func LoadConfigFS(fsys afero.Fs) error {
if !strings.HasPrefix(strings.ToLower(Config.Auth.Hook.SendEmail.URI), "http") {
return errors.New("Invalid HTTP hook config: auth.hook.send_email.uri should be a http or https URL")
}
if Config.Auth.Hook.SendSMS.HTTPHookSecrets == "" {
if Config.Auth.Hook.SendEmail.HTTPHookSecrets == "" {
return errors.New("Missing required field in config: auth.hook.send_email.secrets")
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.147.0"
GotrueImage = "supabase/gotrue:v2.147.1"
RealtimeImage = "supabase/realtime:v2.27.5"
StorageImage = "supabase/storage-api:v0.46.4"
LogflareImage = "supabase/logflare:1.4.0"
Expand Down
1 change: 1 addition & 0 deletions internal/utils/templates/init_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ template = "Your code is {{ `{{ .Code }}` }} ."
# Use a custom sms sender
[auth.hook.send_sms]
# enabled = true
# We use host.docker.internal to connect to port 54321 on the host. See: https://docs.docker.com/desktop/networking/
# uri = "http://host.docker.internal:54321/functions/v1/sms_sender"
# Use this secret in the email_sender edge function as well.
# secrets = "v1,whsec_c3VwYWJhc2Vpc3Zlcnlhd2Vzb21lYW5kaWxpa2VpdA=="
Expand Down

0 comments on commit 5879f67

Please sign in to comment.