Skip to content

chore(deps): update rspack dependencies#79

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspack-deps
Open

chore(deps): update rspack dependencies#79
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rspack-deps

Conversation

@renovate

@renovate renovate Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence Type Update
@rspack/core (source) 2.0.52.0.8 age confidence dependencies patch
rspack_binding_build (source) =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_binding_builder (source) =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_binding_builder_macros (source) =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_cacheable =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_collections (source) =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_core =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_error =0.100.5=0.100.8 age confidence workspace.dependencies patch
rspack_hook =0.100.5=0.100.8 age confidence workspace.dependencies patch

Release Notes

web-infra-dev/rspack (@​rspack/core)

v2.0.8

Compare Source

What's Changed
Bug Fixes 🐞
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.7...v2.0.8

v2.0.7

Compare Source

[!WARNING]
v2.0.7 has been deprecated because it may generate incorrect Rspack build outputs.

Please do not install or use v2.0.7. Upgrade to v2.0.8 instead, which was released as the fix for this issue.

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.6...v2.0.7

v2.0.6

Compare Source

Highlights
React Server Components: enforce server-only / client-only boundaries

RSC builds now validate the server-only and client-only marker packages. Importing a client-only module from a server-graph module (or a server-only module from a client-graph module) is reported as a diagnostic. This marker-package validation always runs and is independent of disableClientApiChecks, which now only scopes the React client-API checks.

// server component (server graph)
import 'client-only'; // ❌ reported: client-only imported in a server module

// client component (client graph)
import 'server-only'; // ❌ reported: server-only imported in a client module
Expose DeterministicModuleIdsPlugin

The webpack-compatible deterministic module id plugin is now exposed through the JS API as rspack.ids.DeterministicModuleIdsPlugin, giving you fine-grained control over module ids for long-term caching. It supports the webpack options test, maxLength, salt, fixedLength, and failOnConflict.

const rspack = require('@​rspack/core');

module.exports = {
  optimization: { moduleIds: false },
  plugins: [
    new rspack.ids.DeterministicModuleIdsPlugin({
      maxLength: 5,
      failOnConflict: true,
    }),
  ],
};
CSS Modules: preserve composes cascade order

CSS Modules now use a shared topological sort to keep the source order of composes, so composed declarations land in the output cascade in the order you authored them. This fixes subtle specificity surprises when composing local class names across modules.

What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rspack@v2.0.5...v2.0.6


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • "before 6am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Jun 7, 2026
@renovate renovate Bot force-pushed the renovate/rspack-deps branch from b3515f8 to e109045 Compare June 13, 2026 19:49
@coderabbitai

coderabbitai Bot commented Jun 13, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 9be0a487-2d1f-43ca-84b0-28f5d02c5665

📥 Commits

Reviewing files that changed from the base of the PR and between ff68975 and e109045.

⛔ Files ignored due to path filters (2)
  • Cargo.lock is excluded by !**/*.lock
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (2)
  • Cargo.toml
  • package.json

📝 Walkthrough

Walkthrough

This pull request updates rspack ecosystem dependencies across the project from versions 0.100.5 and 2.0.5 to 0.100.8 and 2.0.8. The Cargo.toml file pins eight Rust crates in [workspace.dependencies] to the new version, including core crates (rspack_cacheable, rspack_collections, rspack_core, rspack_error, rspack_hook) and binding crates (rspack_binding_build, rspack_binding_builder, rspack_binding_builder_macros). The package.json file updates the @rspack/core npm dependency to the corresponding JavaScript version. No other sections or functionality are modified.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: updating rspack dependencies to newer patch versions across both Cargo.toml and package.json.
Description check ✅ Passed The description is directly related to the changeset, providing a detailed table of updated packages with version changes and including relevant release notes from the upstream rspack project.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/rspack-deps

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants