chore: group react/react-dom/@types updates in Dependabot#306
Merged
Conversation
Deploying boxdbud with
|
| Latest commit: |
92c3735
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://0f63b5d1.boxdbud.pages.dev |
| Branch Preview URL: | https://chore-dependabot-group-react.boxdbud.pages.dev |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Dependabot configuration to ensure React runtime and type packages are updated together, preventing mismatched react/react-dom versions that can cause runtime “Incompatible React versions” failures.
Changes:
- Adds a Dependabot
groups.reactgroup under the npm update config. - Groups
react,react-dom,@types/react, and@types/react-dominto a single Dependabot PR when they update.
react and react-dom must stay on identical versions (React throws at runtime otherwise). Dependabot was bumping them in separate PRs (#301, #302), so each one landed with a version mismatch and failed Test Suite / Backend Quality Checks. Grouping them makes Dependabot open one PR with matching versions. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Wootehfook
force-pushed
the
chore/dependabot-group-react
branch
from
July 12, 2026 22:56
5363523 to
89ceb43
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
groups.reactentry (react, react-dom, @types/react, @types/react-dom) so these always bump together.Why
PR #301 (react + @types/react) and PR #302 (react-dom) landed as separate Dependabot PRs today, each pinning react/react-dom to mismatched versions. React throws
Incompatible React versionsat runtime when they diverge, which failed Test Suite and Backend Quality Checks on both PRs (7 test files failing each). Grouping the packages means Dependabot opens a single PR with matching versions instead.Recommendation for #301 / #302
Close both as superseded once this merges and a fresh grouped PR appears — merging either individually will reintroduce the mismatch.
Test plan
🤖 Generated with Claude Code