From 5ee52b89da4b04439799a99b6b19a2c1c8862e7e Mon Sep 17 00:00:00 2001 From: jlbellido <20135-jlbellido@users.noreply.drupalcode.org> Date: Wed, 12 Feb 2025 18:58:43 +0100 Subject: [PATCH 1/2] Enable Upgrade status report in CI. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9864688..16b0dc7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,8 +48,8 @@ include: # # Docs at https://git.drupalcode.org/project/gitlab_templates/-/blob/1.0.x/includes/include.drupalci.variables.yml ################ -# variables: -# SKIP_ESLINT: '1' +variables: + RUN_JOB_UPGRADE_STATUS: '1' ################################################################################### -- GitLab From 17deda6977b8cc363ca5b0707080870592215087 Mon Sep 17 00:00:00 2001 From: jlbellido <20135-jlbellido@users.noreply.drupalcode.org> Date: Wed, 12 Feb 2025 18:59:32 +0100 Subject: [PATCH 2/2] Make the module compatible with D11. --- active_link_formatter.info.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/active_link_formatter.info.yml b/active_link_formatter.info.yml index e524433..2600928 100644 --- a/active_link_formatter.info.yml +++ b/active_link_formatter.info.yml @@ -2,6 +2,6 @@ name: 'Active Link Formatter' type: module description: 'Provides a Field Formatter for Link field types to set the is-active class if needed.' package: Field types -core_version_requirement: ^8 || ^9 || ^10 +core_version_requirement: ^8 || ^9 || ^10 || ^11 dependencies: - drupal:link -- GitLab