chore(renovate): widen peer ranges and keep pnpm overrides on the dashboard - #926
Merged
Merged
Conversation
…hboard Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
lisaparma
approved these changes
Sep 21, 2026
Contributor
|
🎉 This PR is included in version 15.3.7 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.

0 New Issues
0 Fixed Issues
0 Accepted Issues
No data about coverage (76.90% Estimated after merge)
Why
Renovate opened five PRs in one afternoon (#921, #922, #923, #924, #925). The grouping rules from #901 do work — the Dependency Dashboard holds runtime patches and bundles devDependencies — but they only match
dependenciesanddevDependencies, so updates in any other depType slip straight through.Two of those PRs are noise, and one kind of them is actively harmful:
react-router-dom^6.30.0→^6.30.6) and chore(deps): update dependency core-js to ^3.50.0 #922 (core-js^3.39.0→^3.50.0) bump peerDependencies ranges. They gain nothing and narrow the range modules are built against: a module resolving react-router-dom 6.30.2 becomes formally incompatible with the shell. The cause is"npm": { "rangeStrategy": "bump" }in the sharedzextras/infra-renovate-config:javascriptpreset, which overrides Renovate's default ofwidenfor peer ranges.What
peerDependencies→rangeStrategy: "widen". In-range releases stay silent; a new major still opens a PR, but it widens the range (^18.3.1→^18.3.1 || ^19.0.0) instead of replacing it, so modules built against the current major keep working.pnpm.overridesminor/patch →dependencyDashboardApproval, the same treatment runtime dependencies already get. Majors still open a PR.Verification
renovate-config-validatorpasses. Fullrenovate --platform=local --dry-run=fullagainstmain, before and after the change:core-js,lodash,react-router-dom,@zextras/carbonio-design-system,@zextras/carbonio-ui-preview— the two open PRs plus three that would have landed over the next few days.react,react-dom,react-i18next,react-router-dom) survive, all in widened form.vite 7.3.2 → 7.3.6(override, patch) moves to the dashboard;conventional-changelog-conventionalcommits 9.3.1 → 10.4.0(override, major) still opens a PR.Out of scope
engines.node) still slips through — same class of gap, left for a follow-up.#921 and #922 still need to be closed by hand once this lands.
🤖 Generated with Claude Code