From e1825a738429286e6dc9d8092c92a079a9d59630 Mon Sep 17 00:00:00 2001 From: Kedar Khaire Date: Thu, 28 Mar 2024 18:26:19 +0530 Subject: [PATCH 1/2] Support for D10.2 and dependent Drush version --- .github/workflows/php.yml | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 97699c12..5d0b63fd 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -34,6 +34,7 @@ jobs: drupal-core: # Should update the following as the minimum supported version from Drupal.org - "10.1.x" + - "10.2.x" steps: diff --git a/composer.json b/composer.json index 9a25eda8..fb136506 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ }, "require-dev": { "drupal/core-dev": "^10.1", - "drush/drush": "^11.5", + "drush/drush": "^11.5 || ^12.4.3", "mglaman/drupal-check": "^1.3", "phpmd/phpmd": "^2.8.2", "phpmetrics/phpmetrics": "^2.5", From b377657b9d6b0b848ad08f6e88f2f85e80abce3e Mon Sep 17 00:00:00 2001 From: Kedar Khaire Date: Tue, 2 Apr 2024 12:39:17 +0530 Subject: [PATCH 2/2] Removed un-required drush version support --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index fb136506..6d19425e 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ }, "require-dev": { "drupal/core-dev": "^10.1", - "drush/drush": "^11.5 || ^12.4.3", + "drush/drush": "^12.4.3", "mglaman/drupal-check": "^1.3", "phpmd/phpmd": "^2.8.2", "phpmetrics/phpmetrics": "^2.5",