From 41f39cd8db42fe71daf24b70abc0be15ef7f47b5 Mon Sep 17 00:00:00 2001 From: Matt Date: Sat, 14 Feb 2026 00:26:24 -0500 Subject: [PATCH] chore: group react/react-dom in Dependabot config Prevents version mismatch failures like PR #6 where Dependabot bumped react to 19.2.4 but left react-dom at 19.2.3. React 19 enforces strict version matching, causing 100% test suite failure. Co-Authored-By: Claude Opus 4.6 --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 905ecef..5c8910d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,12 @@ updates: - "langfuse" - "mem0ai" - "openai" + react: + patterns: + - "react" + - "react-dom" + - "@types/react" + - "@types/react-dom" testing: patterns: - "vitest"