From d42ded27e331066dee0fd8b736a93ff17923e085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 20:53:24 +0200 Subject: [PATCH 1/8] Update mailer.go --- mailer/mailer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailer/mailer.go b/mailer/mailer.go index b8e421309..7ee84c88e 100644 --- a/mailer/mailer.go +++ b/mailer/mailer.go @@ -6,7 +6,7 @@ import ( "github.com/netlify/gotrue/conf" "github.com/netlify/gotrue/models" - "github.com/netlify/mailme" + "github.com/MalinYamato/mailme" "github.com/sirupsen/logrus" ) From 84962c0fe50ecc4ef2f2de12ae24b0045f2258c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 20:54:04 +0200 Subject: [PATCH 2/8] Update template.go --- mailer/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailer/template.go b/mailer/template.go index 88c02fdfd..4853fcde5 100644 --- a/mailer/template.go +++ b/mailer/template.go @@ -4,7 +4,7 @@ import ( "github.com/badoux/checkmail" "github.com/netlify/gotrue/conf" "github.com/netlify/gotrue/models" - "github.com/netlify/mailme" + "github.com/NakinYamato/mailme" ) // TemplateMailer will send mail and use templates from the site for easy mail styling From 177729cd4e0c952ab301079abaefea2628a0eeec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 20:54:44 +0200 Subject: [PATCH 3/8] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 07a563fc1..fd2099264 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( github.com/imdario/mergo v0.0.0-20160216103600-3e95a51e0639 github.com/joho/godotenv v1.3.0 github.com/kelseyhightower/envconfig v1.4.0 - github.com/netlify/mailme v1.1.1 + github.com/MalinYamato/mailme v1.1.1 github.com/opentracing/opentracing-go v1.1.0 github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/pkg/errors v0.9.1 From 8fb8dc121285ba562078df0c716c103f249eebea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 21:06:40 +0200 Subject: [PATCH 4/8] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index fd2099264..01d909fe6 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/netlify/gotrue +module github.com/MalinYamato/gotrue require ( github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.0 From 094b22f0f401649073d42458316b22821ef1c3ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 21:22:43 +0200 Subject: [PATCH 5/8] Update go.mod --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index 01d909fe6..192da995a 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,7 @@ module github.com/MalinYamato/gotrue +replace github.com/netlify/gotrue => /path/to/MalinYamato/gotrue + require ( github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.0 github.com/badoux/checkmail v0.0.0-20170203135005-d0a759655d62 From dca8652f495ae30e878a9465c6b7c84b4a66806c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 21:28:30 +0200 Subject: [PATCH 6/8] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 192da995a..4f1e0dd7d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/MalinYamato/gotrue -replace github.com/netlify/gotrue => /path/to/MalinYamato/gotrue +replace github.com/netlify/gotrue => github.com/MalinYamato/gotrue require ( github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.0 From f7f456b501c609943dbba81eaa9bd62fac88cb0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 21:44:20 +0200 Subject: [PATCH 7/8] Update template.go --- mailer/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailer/template.go b/mailer/template.go index 4853fcde5..56401a796 100644 --- a/mailer/template.go +++ b/mailer/template.go @@ -4,7 +4,7 @@ import ( "github.com/badoux/checkmail" "github.com/netlify/gotrue/conf" "github.com/netlify/gotrue/models" - "github.com/NakinYamato/mailme" + "github.com/MalinYamato/mailme" ) // TemplateMailer will send mail and use templates from the site for easy mail styling From 507c202b400b466897757da26c31c573fff7209c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malin=20Yamato=20L=C3=A4=C3=A4kk=C3=B6?= Date: Wed, 25 Oct 2023 21:52:05 +0200 Subject: [PATCH 8/8] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 4f1e0dd7d..60691b5ce 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/MalinYamato/gotrue -replace github.com/netlify/gotrue => github.com/MalinYamato/gotrue +replace github.com/netlify/gotrue => github.com/MalinYamato/gotrue debug require ( github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.0