chore(deps): group npm Dependabot updates + cooldown - #131
Conversation
Group all npm updates in this repo into a single Dependabot PR per run, matching wave-spoke-template's working config, plus a 7-day cooldown on newly published versions.
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the existing npm Dependabot configuration to group all dependency bumps into a single scheduled PR and apply a seven-day release cooldown, reducing lockfile conflicts while leaving existing dependency PRs and repository dependencies untouched. Flow diagram for grouped and delayed npm updatesflowchart LR
npm[NPM releases] -->|wait 7 days| dependabot[Dependabot scheduled run]
dependabot -->|group all patterns| pr[Single grouped dependency PR]
pr --> lockfile[One lockfile rewrite]
lockfile -->|reduces competing updates| conflicts[Fewer lockfile conflicts]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
🤖 CodeAnt AI — Review Status
|
|
ⓘ Qodo reviews are paused because your workspace is out of credits. Ask your workspace admin to add credits to resume reviews. Manage billing |
Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Bugbot couldn't run - usage limit reachedBugbot is counted against Cursor usage for this user or team, and this run hit a usage or spend limit. A user or team admin can review and increase usage limits in the Cursor dashboard. (requestId: serverGenReqId_550cf436-a441-4e05-bb0c-12eb3ad5abdc) |
ApprovabilityVerdict: Would Approve Macroscope's review found this PR approvable — The PR only adjusts Dependabot grouping and cooldown settings, changing dependency-update automation without affecting application runtime or production behavior. The sole changed file is within the author's designated ownership. Not approved because:
Review your spending limits in Billing settings. You can add or adjust custom eligibility rules. Learn more. |
|
Note Automatic reviews are paused because your team has used its included automatic processing for this billing period (headroom scales with your seat count). You can still comment "Gitar review" to run one anytime, and automatic reviews resume on their own by October 1. Add seats for more headroom. Code Review ✅ ApprovedAdds npm Dependabot grouping and a 7-day cooldown to OptionsDisplay: compact → Showing less information. Comment with these commands to change the behavior for this request:
Was this helpful? React with 👍 / 👎 | Gitar |
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Team Run ID: 📒 Files selected for processing (1)
Included review availability: 0 reviews are currently available. Your included PR review attempts over the past 7 days set your current allowance at 1 review per hour. 📜 Recent review details⏰ Context from checks skipped due to timeout. (3)
🔇 Additional comments (1)
📝 SummarySummary by CodeRabbit
WalkthroughDependabot now groups all npm dependency updates into one pull request and delays updates by seven days by default. ChangesDependabot configuration
Estimated code review effort: 1 (Trivial) | ~2 minutes Merge Risk: ⚪ Minimal · up to Npm dependency updates will be grouped and delayed by seven days; no merge-blocking risk remains. 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Comment |
User description
What this does
Adds a
groups:key to the existingnpmupdate entry in.github/dependabot.yml, grouping all npm dependency bumps in this repo into a single Dependabot PR per scheduled run instead of one PR per package. Also adds a 7-daycooldownon newly published versions (waits before proposing a bump to a package that just shipped), matching asemgrepguardrail check that flags configs missing a cooldown.Why
Measured across the wave-av org on 2026-09-07: only 6 of 170 non-archived repos have a
dependabot.ymlat all, and of those, sdk, mcp-server, and adk had a config but nogroups:key — the smallest possible lift on a file that already exists. Org-wide, 61 of 217 open Dependabot PRs (28%) areCONFLICTINGin GitHub's mergeable-state check. Every Dependabot PR rewrites the lockfile, so unrelated single-package PRs are same-hunk-with-each-other by construction — the first one to merge invalidates the lockfile diff in all the others, and ordering can't fix that, only grouping can (bundle the bumps into one lockfile rewrite instead of N races against each other).Grouping is not a hypothesis here — it is already deployed and working in the fleet.
wave-spoke-template's Dependabot config uses this exactgroups: { <name>: { patterns: ["*"] } }shape per ecosystem/directory, and every one of its grouped PRs is clean; its only conflicting PRs predate the groups config being added. This PR models the new block directly on that reference.For this repo specifically at time of writing, one open Dependabot PR is already
CONFLICTING: #81 (ip-addressbump). That predates this change and is a separate cleanup — this PR does not touch it.What this does NOT do
Grouping is forward-looking only. It changes how future Dependabot runs open PRs; it does not retroactively merge, rebase, or de-conflict any PR that already exists. The currently open dependency PRs (#116, #81, #55, #42, #41, #40, #39, #36) are untouched by this change.
Scope
Config-only change to
.github/dependabot.yml. No workflow, dependency, or lockfile changes. Not merging this PR as part of this change — opening for review only.Need help on this PR? Tag
@codesmith-botwith what you need. Autofix is disabled.Note
Low Risk
Config-only change to
.github/dependabot.yml; no runtime, workflow, or dependency code changes.Overview
Updates Dependabot for npm so future weekly runs open one grouped PR for all dependency bumps (
groups.npm-dependencieswith pattern*) instead of separate PRs per package, reducing lockfile merge conflicts across concurrent updates.Also adds a 7-day cooldown (
cooldown.default-days: 7) so Dependabot waits before proposing upgrades to newly published package versions.Reviewed by Cursor Bugbot for commit 0d972ba. Bugbot is set up for automated code reviews on this repo. Configure here.
Summary by Sourcery
Enhancements:
CodeAnt-AI Description
Group npm dependency updates and delay newly released versions
What Changed
Impact
✅ Fewer dependency-update pull request conflicts✅ Fewer separate dependency pull requests✅ More time for newly released versions to stabilize💡 Usage Guide
Checking Your Pull Request
Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.
Talking to CodeAnt AI
Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:
This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.
Example
Preserve Org Learnings with CodeAnt
You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:
This helps CodeAnt AI learn and adapt to your team's coding style and standards.
Example
Retrigger review
Ask CodeAnt AI to review the PR again, by typing:
Check Your Repository Health
To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.