From b50c7b27fb7e4281fe54870af5ddc6b1b85a9387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Zugmeyer?= Date: Mon, 12 Feb 2024 15:41:19 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20ignore=20karma-webpack=20for=20n?= =?UTF-8?q?ow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit karma-webpack introduced a breaking change in v5.0.1 that breaks our test suite: https://github.com/codymikol/karma-webpack/issues/587 --- .github/dependabot.yml | 2 ++ renovate.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 722cb6c137..af8c9271f7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,5 @@ +# Note: While we mainly use Renovate, Dependabot is used for security updates + version: 2 updates: - package-ecosystem: github-actions diff --git a/renovate.json b/renovate.json index 08b232a64a..ac32b66f2c 100644 --- a/renovate.json +++ b/renovate.json @@ -16,7 +16,8 @@ { "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": ["minor", "patch"], + "excludePackageNames": ["karma-webpack"] } ] }