From 61ef60c638bb06ce27e253f5e783c6c50715212b Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Wed, 15 Apr 2026 08:35:19 +0000 Subject: [PATCH] fix(renovate-presets): group undici and undici-types packages Groups undici and undici-types together to prevent type errors when only one of them is updated. --- renovate-presets/default.json5 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/renovate-presets/default.json5 b/renovate-presets/default.json5 index c17a2b65d..2b49e693b 100644 --- a/renovate-presets/default.json5 +++ b/renovate-presets/default.json5 @@ -42,6 +42,14 @@ // GENERAL GROUPING & UPDATE BEHAVIOR // ============================================================================ + // Group undici packages together. This is to avoid a situation where undici + // is updated and the types are not updated, causing type errors. + { + groupName: 'undici', + matchManagers: ['npm'], + matchDepNames: ['undici', 'undici-types'], + }, + // Enable 'postUpdateTasks' for changes that effect the typescript and pnpm versions. // This is to ensure that the `MODULE.bazel` is updated with the correct versions. {