JS-1603 Configure Renovate to avoid grouped updates#44
Conversation
SummaryThis PR reconfigures Renovate to create individual pull requests for each dependency update rather than batching them together. What changed:
Effect: Each dependency update will get its own PR immediately upon detection, allowing faster merging and reducing the chance that one outdated dependency blocks others. This aligns with the dependency management approach in sonar-flex. What reviewers should knowKey decision: The new catch-all rule with To review: Check that the GitHub Actions rule still functions correctly without its group properties; it should still apply Likely impact: Expect more frequent Renovate PRs but with faster turnaround—each can be reviewed and merged independently without waiting for unrelated updates in the same batch.
|
There was a problem hiding this comment.
LGTM! ✅
Clean configuration-only change. The catch-all groupName: null rule correctly overrides Renovate's default grouping behavior, and placing it first in packageRules ensures subsequent rules (e.g. the GitHub Actions pinDigests: false rule) can still apply their own settings without inheriting a group.
|





Summary
ull for all packages
This keeps updates flowing per package age instead of waiting for grouped batches.