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.1.0 age confidence dependencies minor
rspack_binding_build (source) =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_binding_builder (source) =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_binding_builder_macros (source) =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_cacheable =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_collections (source) =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_core =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_error =0.100.5=0.101.0 age confidence workspace.dependencies minor
rspack_hook =0.100.5=0.101.0 age confidence workspace.dependencies minor

Release Notes

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

v2.1.0

Compare Source

What's Changed

🎉 See Announcing Rspack 2.1 for more details.

New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes

New Contributors

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

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

📝 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.
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.
Description check ✅ Passed The description clearly matches the dependency upgrade changes, even though the version numbers differ from the final diff.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/rspack-deps

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@renovate renovate Bot force-pushed the renovate/rspack-deps branch from e109045 to 6fdf0aa Compare June 26, 2026 11:14
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