From 6972e5b8561f50b3bf374d5ce826e4c79457034d Mon Sep 17 00:00:00 2001 From: Olayinka Vaughan Date: Thu, 17 Sep 2026 11:14:43 +0000 Subject: [PATCH] ci(dependabot): split react from the minor-and-patch group @react-three/fiber 9.7 caps its peer at react <19.3, so bundling react into the catch-all group blocks every other bump whenever a new React minor ships. Excluding react, react-dom, and their type packages lets the rest of the group merge independently while React gets its own PR that can wait for fiber compatibility. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d0a32a8..038f724 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,6 +13,11 @@ updates: minor-and-patch: patterns: - "*" + exclude-patterns: + - "react" + - "react-dom" + - "@types/react" + - "@types/react-dom" update-types: - "minor" - "patch"