From 5c8116bf99a51b6a9d8a0c409eeea6ab027cf764 Mon Sep 17 00:00:00 2001 From: Will Lo Date: Thu, 30 Apr 2026 10:58:07 -0700 Subject: [PATCH] feat: update sunset notification message and Learn More URL - Update message: 'starting May 15, 2026' instead of 'starting 5/15' - Update Learn More URL to https://aws.amazon.com/blogs/devops/amazon-q-developer-end-of-support-announcement/ --- .../software/aws/toolkits/eclipse/amazonq/util/Constants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/software/aws/toolkits/eclipse/amazonq/util/Constants.java b/plugin/src/software/aws/toolkits/eclipse/amazonq/util/Constants.java index ae97455f..822d42c5 100644 --- a/plugin/src/software/aws/toolkits/eclipse/amazonq/util/Constants.java +++ b/plugin/src/software/aws/toolkits/eclipse/amazonq/util/Constants.java @@ -42,8 +42,8 @@ private Constants() { + " of the IDE preferences."; public static final String KIRO_SUNSET_NOTIFICATION_TITLE = "Amazon Q Developer end of support"; public static final String KIRO_SUNSET_NOTIFICATION_BODY = "Amazon Q Developer IDE plugins will reach end of support on April 30, 2027." - + " New accounts will no longer available starting 5/15, but existing users can still sign-in below."; - public static final String KIRO_SUNSET_LEARN_MORE_URL = "https://aws.amazon.com/q/developer/"; + + " New accounts will no longer be available starting May 15, 2026, but existing users can still sign-in below."; + public static final String KIRO_SUNSET_LEARN_MORE_URL = "https://aws.amazon.com/blogs/devops/amazon-q-developer-end-of-support-announcement/"; public static final String KIRO_SUNSET_NOTIFICATION_DISMISSED_KEY = "kiroSunsetNotificationDismissed"; public static final String RE_AUTHENTICATE_FAILURE_MESSAGE = "An error occurred while attempting to re-authenticate. Please try again."; public static final String AUTHENTICATE_FAILURE_MESSAGE = "An error occurred while attempting to authenticate. Please try again.";