From fa78028cf6abee248a944cf47d3ccedd34f782d3 Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@delocalizedham.com> Date: Thu, 3 Apr 2025 16:46:11 +0000 Subject: [PATCH] Issue #686918: Add help text to project release admin page to warn about marking branches unsupported and the impact on update status --- drupalorg/drupalorg.module | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drupalorg/drupalorg.module b/drupalorg/drupalorg.module index 6f9e0c6d..19c5b567 100644 --- a/drupalorg/drupalorg.module +++ b/drupalorg/drupalorg.module @@ -773,6 +773,11 @@ function drupalorg_help($path, $args) { ]) . '</p>'; } break; + + case 'node/%/edit/releases': + return '<p>' . t('“Supported” generally means you will resolve security issues <a href="!contacted-security">when contacted by the security team</a>, fix bugs when you are able, and any additional support you would like to provide as a maintainer.', [ + '!contacted-security' => url('drupal-security-team/contacted-by-the-security-team-now-what'), + ]) . '</p><p>' . t('When a release series is unsupported, site maintainers using affected versions will be alerted that they are running unsupported software. It is best to give people at least a few weeks to upgrade by leaving two release series supported. It is also ideal to keep supported versions that cover compatibility with all currently-supported versions of Drupal core.') . '</p>'; } } -- GitLab