Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@
ignoreDeps: [
// manually handle updates
'node',
'@rspack/core',
'@rsbuild/core',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Un-ignoring @rsbuild/core without a corresponding grouping rule in packageRules will likely result in separate pull requests for each Rsbuild-related dependency update. To maintain consistency with the existing Rspack and Rslib groups and reduce PR noise, consider adding a package rule to group dependencies matching /rsbuild/ in the packageRules array.

// some loaders still depend on loader-utils v2
Comment on lines 80 to 83
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Restore @rsbuild/core in ignoreDeps for v1 alias deps

Dropping @rsbuild/core from ignoreDeps allows Renovate to update the npm alias dependencies that intentionally pin v1 ("@rsbuild/core-v1": "npm:@rsbuild/core@^1.7.5" in files like packages/plugin-react/package.json:32 and other plugin package.json files). Because Renovate matching is by package name, those aliases become eligible for major bumps to v2, and tests that import @rsbuild/core-v1 (for example packages/plugin-react/tests/index.test.ts:2) would no longer validate v1 compatibility, which undermines the repository’s backward-compat coverage.

Useful? React with 👍 / 👎.

'loader-utils',
],
Expand Down
Loading