From 9f77816a1d0c1b1afb37e5e3b05867df94b89f67 Mon Sep 17 00:00:00 2001 From: Stavros Date: Tue, 14 Apr 2026 13:26:55 +0300 Subject: [PATCH] feat: add organization migration note --- internal/bootstrap/app_bootstrap.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/bootstrap/app_bootstrap.go b/internal/bootstrap/app_bootstrap.go index 12e4f7f..56a4d1a 100644 --- a/internal/bootstrap/app_bootstrap.go +++ b/internal/bootstrap/app_bootstrap.go @@ -44,6 +44,8 @@ func NewBootstrapApp(config config.Config) *BootstrapApp { } func (app *BootstrapApp) Setup() error { + tlog.App.Warn().Msg("Tinyauth is moving to an organization! All versions after v5.0.7 will be released under ghcr.io/tinyauthapp/tinyauth. Existing images will continue to work but new features and updates (including security ones) will only be released under the new image path.") + // get app url appUrl, err := url.Parse(app.config.AppURL)