chore(deps): update rspack monorepo to v2 (main) - #590
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
commit: |
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
from
May 20, 2026 16:07
e9101ed to
8fb4b15
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
2 times, most recently
from
June 1, 2026 18:53
ab16992 to
cf20c0b
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
from
June 10, 2026 15:41
cf20c0b to
da8c29b
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
2 times, most recently
from
June 30, 2026 11:01
92c948d to
28fb3a2
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
2 times, most recently
from
July 12, 2026 11:36
7b2a494 to
3ec561c
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
from
July 16, 2026 17:53
3ec561c to
c90cdad
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
2 times, most recently
from
July 30, 2026 16:49
7d8f78e to
096989d
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
4 times, most recently
from
August 14, 2026 14:50
00f737a to
3c1ed08
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
3 times, most recently
from
September 2, 2026 21:41
4247216 to
b4900f9
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
from
September 9, 2026 20:19
b4900f9 to
9fe38e3
Compare
|
Important Review skippedBot user detected. To trigger a single review, invoke the ⚙️ Run configurationConfiguration used: Repository: intlify/bundle-tools/.coderabbit.yaml Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
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. Comment |
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
3 times, most recently
from
September 17, 2026 17:40
ba13b8a to
c6f2333
Compare
renovate
Bot
force-pushed
the
renovate/main-major-rspack-monorepo
branch
from
September 23, 2026 03:35
c6f2333 to
13cee2a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.2.7→^2.0.0^1.2.7→^2.0.0Release Notes
web-infra-dev/rspack (@rspack/cli)
v2.2.7Compare Source
Highlights
Smaller bundles with improved code splitting
The new
optimization.splitChunks.dedupDepthoption lets Rspack spend more build time finding shared code and reducing duplication, giving you more control over the balance between bundle size and build time. In one application with many routes, this option reduced total output size by 9.9%.It defaults to
1in production and0in development. #15497Build performance improvements
This release reduces repeated work and allocations during chunk graph construction and CSS Modules class name generation. JavaScript loaders also avoid copying their input content on each invocation, further reducing processing overhead.
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rspack@v2.2.6...v2.2.7
v2.2.6Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v2.2.5...v2.2.6
v2.2.5Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Other Changes
Full Changelog: web-infra-dev/rspack@v2.2.4...v2.2.5
v2.2.4Compare Source
Highlights
CSS-only entry bundling
CSS-only entries using native CSS support now emit standalone stylesheets without an unnecessary JavaScript bundle. Standalone runtime chunks are also omitted when no JavaScript entry needs them, making it easier to build CSS assets directly. See #14879.
Ignore magic comments in CSS
Native CSS support now recognizes
webpackIgnoreand itsrspackIgnorealias for@import,url(), andimage-set()dependencies. This lets you leave selected references for the browser to load instead of resolving and bundling them. See #15314.Reliable persistent caching for child compilers
With
experiments.newCache, parent and child compilers now coordinate access to shared persistent cache storage while keeping their entries separate. This prevents conflicting writes and cleanup from losing cached data, and allows both parent and child modules to be restored across compiler restarts. See #15616.What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rspack@v2.2.3...v2.2.4
v2.2.3Compare Source
Highlights
CSS Import and Asset URL Externals
Rspack now supports
asset,asset-url, andcss-importexternal types, allowing CSS to reference stylesheets and assets hosted elsewhere. External@importstatements preservelayer,supports, and media conditions, so conditional styles stay conditional in the emitted CSS. #15431, #15522.More Flexible and Reliable Native Watching
With
experiments.nativeWatcherenabled,watchOptions.ignorednow accepts a function, making it easier to reuse existing ignore rules when switching to the native watcher. File event processing has also been improved to reduce event loss during large bursts of changes on Linux. #15254.Lower Resolution Overhead for TypeScript Projects
Relative imports such as
./utilsand../sharedno longer trigger unnecessary tsconfig loading or tracking of its project-reference tree. This reduces configuration reads and dependency tracking, especially in large TypeScript projects with many project references. #15492.What's Changed
New Features 🎉
ignoredoption by @stormslowly in #15254Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Other Changes
swc_corefrom 77.0.0 to 77.1.2 by @tusharsingh308 in #15421Full Changelog: web-infra-dev/rspack@v2.2.2...v2.2.3
v2.2.2Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Refactor 🔨
Document 📖
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.