From 9d4591c80b0aded8ced3422bc674f7d13a2c78db Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 9 Aug 2021 09:39:03 -0700 Subject: [PATCH 1/2] ui: Use new user token command for auth page The `waypoint token new` command has been deprecated in favor of using `waypoint user token`. The authentication page should suggest using the new command instead of the old one. Fixes #2003 --- ui/app/components/login-token/index.hbs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/app/components/login-token/index.hbs b/ui/app/components/login-token/index.hbs index a15e0b950c5..82ba5d0def9 100644 --- a/ui/app/components/login-token/index.hbs +++ b/ui/app/components/login-token/index.hbs @@ -1,10 +1,10 @@
- -
waypoint token new
+ +
waypoint user token
- Read more in our documentation + Read more in our documentation
@@ -23,4 +23,4 @@ class="button button--primary"> {{t 'login.button'}} - \ No newline at end of file + From aa7a99f633118e005a8fbcb7bab4d73afb9aa740 Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Mon, 9 Aug 2021 09:42:47 -0700 Subject: [PATCH 2/2] Add CHANGELOG --- .changelog/2006.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/2006.txt diff --git a/.changelog/2006.txt b/.changelog/2006.txt new file mode 100644 index 00000000000..9eaf6867f46 --- /dev/null +++ b/.changelog/2006.txt @@ -0,0 +1,3 @@ +```release-note:improvement +ui: Update authentication page with new supported `waypoint user token` command. +```