chore: update all dependencies and configure grouped dependabot#590
Merged
gijzelaerr merged 1 commit intomasterfrom Feb 27, 2026
Merged
chore: update all dependencies and configure grouped dependabot#590gijzelaerr merged 1 commit intomasterfrom
gijzelaerr merged 1 commit intomasterfrom
Conversation
Update uv.lock with latest dependency versions, superseding the individual dependabot PRs (#581, #582, #583). Add .github/dependabot.yml with grouped updates so future dependency bumps arrive as a single weekly PR instead of one PR per package. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Feb 27, 2026
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
Supersedes #581, #582, #583
Updates all dependencies in
uv.lockto their latest versions and adds adependabot.ymlconfiguration with grouped updates.Problem
Dependabot was creating individual PRs for every single transitive dependency bump in
uv.lock(urllib3, virtualenv, filelock, etc.). These are low-risk lockfile-only changes that don't affect the package's published dependencies, but they generate a lot of noise — each one requires review, CI runs, and a merge.Solution
1. Batch update all dependencies now
Ran
uv lock --upgradeto pull in all latest versions at once:2. Add
.github/dependabot.ymlwith grouped updatesThis tells Dependabot to batch all uv dependency updates into a single weekly PR instead of creating one PR per package. The same grouping is applied to GitHub Actions updates.
Schedule: weekly on Monday.
How other projects handle this
uv lock --upgrade && commit && PRon a cron schedule via GitHub Actions. More control but more maintenance.Grouped Dependabot is the simplest approach and is what most uv-based projects use.
Test plan
uv lock --upgradesucceeds🤖 Generated with Claude Code