Skip to content

chore(deps-dev): bump @rspack/core from 1.7.11 to 2.0.6#464

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/rspack/core-2.0.5
Open

chore(deps-dev): bump @rspack/core from 1.7.11 to 2.0.6#464
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/rspack/core-2.0.5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 29, 2026

Bumps @rspack/core from 1.7.11 to 2.0.6.

Release notes

Sourced from @​rspack/core's releases.

v2.0.6

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 🐞

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 29, 2026
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented May 29, 2026

Deploying bankaitechdocs with  Cloudflare Pages  Cloudflare Pages

Latest commit: 7925cd0
Status:🚫  Build failed.

View logs

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/rspack/core-2.0.5 branch from d7c0e3f to 0158bf2 Compare June 1, 2026 20:08
@dependabot dependabot Bot changed the title chore(deps-dev): bump @rspack/core from 1.7.11 to 2.0.5 chore(deps-dev): bump @rspack/core from 1.7.11 to 2.0.6 Jun 2, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/rspack/core-2.0.5 branch from 0158bf2 to 09e6b70 Compare June 2, 2026 23:49
Bumps [@rspack/core](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack) from 1.7.11 to 2.0.6.
- [Release notes](https://github.com/web-infra-dev/rspack/releases)
- [Commits](https://github.com/web-infra-dev/rspack/commits/v2.0.6/packages/rspack)

---
updated-dependencies:
- dependency-name: "@rspack/core"
  dependency-version: 2.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/rspack/core-2.0.5 branch from 09e6b70 to 7925cd0 Compare June 2, 2026 23:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants