From b4e85451a8588d958ab757eaf06952c910c48878 Mon Sep 17 00:00:00 2001 From: Alexander Varwijk Date: Tue, 13 Dec 2022 17:06:35 +0100 Subject: [PATCH] Ignore dev patch included in Open Social 10 Open Social 10 contains a patch for one of our dev dependencies that is actually outdated. Unfortunately we must ignore in our `test/` composer.json and can't do this in our _dev package itself as per https://github.com/cweagans/composer-patches/issues/112 so it's only a fix for our own CI and Open Social will have to fix its own stuff in not patching dev dependencies (but updating this package instead). --- tests/composer.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/composer.json b/tests/composer.json index 64450a8..052fa55 100644 --- a/tests/composer.json +++ b/tests/composer.json @@ -68,6 +68,13 @@ "type:drupal-drush" ] }, - "enable-patching": true + "enable-patching": true, + "patches-ignore": { + "goalgorilla/open_social": { + "instaclick/php-webdriver": { + "Curl_exec errors on behat (1.4.10)": "https://www.drupal.org/files/issues/2021-10-17/social-instaclick-webdriver-3226058-8.patch" + } + } + } } }