Skip to content

Commit df67d5c

Browse files
beihailiclaude
andcommitted
chore(deps): split major version bumps into separate dependabot PRs
Only group minor/patch updates; majors now open individual PRs so breaking changes (tailwind v3→v4, react-router v6→v7, vite v4→v8, zustand v4→v5, eslint v8→v10, etc.) can be reviewed and migrated one at a time instead of as an unreviewable mega-PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 3616b43 commit df67d5c

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,20 @@ updates:
88
open-pull-requests-limit: 5
99
labels:
1010
- "dependencies"
11+
# Only group minor/patch updates. Major updates get their own PR
12+
# so breaking changes (e.g. tailwind v3→v4, react-router v6→v7) can be
13+
# reviewed and migrated individually.
1114
groups:
12-
dev-dependencies:
15+
dev-dependencies-minor:
1316
dependency-type: "development"
14-
production-dependencies:
17+
update-types:
18+
- "minor"
19+
- "patch"
20+
production-dependencies-minor:
1521
dependency-type: "production"
22+
update-types:
23+
- "minor"
24+
- "patch"
1625
- package-ecosystem: "github-actions"
1726
directory: "/"
1827
schedule:

0 commit comments

Comments
 (0)