ci: ignore all JS major bumps in Dependabot (not just ai)#17
Conversation
|
Warning Review limit reached
More reviews will be available in 11 minutes and 59 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Dependabot configuration for the /js npm package so that all semver-major dependency updates are ignored, preventing repeated breakages from automated major bumps while still allowing minor/patch (including security) updates to flow.
Changes:
- Broaden Dependabot’s ignore rule from
aionly to*forversion-update:semver-majorupdates in/js. - Update inline documentation in
.github/dependabot.ymlto explain why all majors are deferred for human review.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # Major bumps of the JS dev tooling are breaking changes that need a | ||
| # deliberate migration, not an auto-bump — they have repeatedly broken the | ||
| # build: ai v5 removed LanguageModelV1Middleware; TypeScript 6 turns the | ||
| # baseUrl deprecation into a hard error (TS5101) in the tsup dts build. | ||
| # Defer ALL majors to a human; patch/minor (incl. security fixes within a |
Re-lands the broadened ignore that was orphaned when #14 merged ~1 minute before the commit landed (main currently ignores only
aimajors).Three breaking major bumps in a row — ai v5 (broke main, #13), ai v6 (#11), TypeScript 6 (#15, breaks the tsup dts build via
TS5101: baseUrl deprecated) — show that auto-bumping dev-tooling majors isn't safe for this package. Change the ignore fromaionly to*(all dependencies), major updates only. Patch/minor — including security fixes within a major — still flow. Honored by Dependabot security updates too.Adopting any major (ai v5, TS 6, …) becomes a deliberate, reviewed migration.