From 48f31c7d71628ce24f925c18a808ded8aeabcb04 Mon Sep 17 00:00:00 2001 From: Qasim Date: Tue, 19 May 2026 13:30:07 -0400 Subject: [PATCH] TW-5097: fix stale dashboard URLs and AUR release pipeline Update 4 references from dashboard.nylas.com to dashboard-v3.nylas.com and fix AUR git_url from nylas.git to nylas-bin.git to match the pkgbase that GoReleaser auto-generates. Closes #86 --- .goreleaser.yml | 2 +- internal/cli/auth/config.go | 2 +- internal/cli/common/client.go | 4 ++-- internal/cli/setup/wizard_helpers.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index fe32dd5..62dcff5 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -93,7 +93,7 @@ aurs: - "Nylas " license: MIT private_key: "{{ .Env.AUR_SSH_KEY_PATH }}" - git_url: "ssh://aur@aur.archlinux.org/nylas.git" + git_url: "ssh://aur@aur.archlinux.org/nylas-bin.git" disable: "{{ .IsSnapshot }}" depends: - glibc diff --git a/internal/cli/auth/config.go b/internal/cli/auth/config.go index c71989a..241a57f 100644 --- a/internal/cli/auth/config.go +++ b/internal/cli/auth/config.go @@ -164,7 +164,7 @@ The CLI only requires your API Key - Client ID is auto-detected.`, fmt.Printf(" Please add this callback URI manually in the Nylas dashboard:\n") fmt.Printf(" %s\n", callbackResult.RequiredURI) fmt.Println() - fmt.Printf(" Dashboard: https://dashboard.nylas.com/applications\n") + fmt.Printf(" Dashboard: https://dashboard-v3.nylas.com/applications\n") fmt.Printf(" Navigate to: Your App → Settings → Callback URIs → Add URI\n") } else if callbackResult.Created { _, _ = common.Green.Printf(" ✓ Added callback URI: %s\n", callbackResult.RequiredURI) diff --git a/internal/cli/common/client.go b/internal/cli/common/client.go index ab747f6..2b7aaa6 100644 --- a/internal/cli/common/client.go +++ b/internal/cli/common/client.go @@ -79,7 +79,7 @@ func GetNylasClient() (ports.NylasClient, error) { "API key not configured", "Configure with: nylas auth config", "Or use environment variable: export NYLAS_API_KEY=", - "Get your API key from: https://dashboard.nylas.com", + "Get your API key from: https://dashboard-v3.nylas.com", ) } @@ -144,7 +144,7 @@ func GetAPIKey() (string, error) { "API key not configured", "Configure with: nylas auth config", "Or use environment variable: export NYLAS_API_KEY=", - "Get your API key from: https://dashboard.nylas.com", + "Get your API key from: https://dashboard-v3.nylas.com", ) } diff --git a/internal/cli/setup/wizard_helpers.go b/internal/cli/setup/wizard_helpers.go index 35a4462..5a07368 100644 --- a/internal/cli/setup/wizard_helpers.go +++ b/internal/cli/setup/wizard_helpers.go @@ -203,7 +203,7 @@ func printCallbackURIManualInstructions(requiredCallbackURI string, err error) { fmt.Printf(" Please add this callback URI manually in the Nylas dashboard:\n") fmt.Printf(" %s\n", requiredCallbackURI) fmt.Println() - fmt.Printf(" Dashboard: https://dashboard.nylas.com/applications\n") + fmt.Printf(" Dashboard: https://dashboard-v3.nylas.com/applications\n") fmt.Printf(" Navigate to: Your App → Settings → Callback URIs → Add URI\n") }