chore(deps): update rspack monorepo to v1.3.5#289
Merged
Robot-Inventor merged 1 commit intomainfrom Apr 20, 2025
Merged
Conversation
c2f9335 to
29de47c
Compare
29de47c to
731d724
Compare
ccbf219 to
57faaae
Compare
57faaae to
91f43d5
Compare
e87c8cf to
5e22aac
Compare
5e22aac to
823ee65
Compare
823ee65 to
5551704
Compare
5551704 to
672f2c6
Compare
672f2c6 to
d0c8d91
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.5->1.3.51.2.5->1.3.5Release Notes
web-infra-dev/rspack (@rspack/cli)
v1.3.5Compare Source
Rspack comes to Next.js 🎉
We’re excited to introduce next-rspack, a community-driven plugin bringing direct Rspack support to Next.js.
See the Rspack joins the Next.js ecosystem blog for details.
What's Changed
Performance Improvements ⚡
Exciting New Features 🎉
Bug Fixes 🐞
native_fsby @CPunishhttps://github.com/web-infra-dev/rspack/pull/9999l/9999undefinedby @LingyuCodhttps://github.com/web-infra-dev/rspack/pull/10030/10030Document Updates 📖
Other Changes
by @LingyuCohttps://github.com/web-infra-dev/rspack/pull/9948ll/9948
New Contributors
Full Changelog: web-infra-dev/rspack@v1.3.4...v1.3.5
v1.3.4Compare Source
What's Changed
Performance Improvements ⚡
Bug Fixes 🐞
Document Updates 📖
Other Changes
Full Changelog: web-infra-dev/rspack@v1.3.3...v1.3.4
v1.3.3Compare Source
What's Changed
Exciting New Features 🎉
max_blocking_threadsto 1 by @CPunisher in https://github.com/web-infra-dev/rspack/pull/9909Bug Fixes 🐞
tinypoolnot being able to run on older node versions by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9925Document Updates 📖
Other Changes
AsDependencytrait by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9921New Contributors
Full Changelog: web-infra-dev/rspack@v1.3.2...v1.3.3
v1.3.2Compare Source
What's Changed
Exciting New Features 🎉
LoaderContextAPIs in parallel loader by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9884LoaderContext.fsasnode:fsby @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9888Bug Fixes 🐞
Document Updates 📖
Other Changes
parallel-optionwould only recievetruein parallel mode by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9883Full Changelog: web-infra-dev/rspack@v1.3.1...v1.3.2
v1.3.1Compare Source
Highlights
🚀 Support running JavaScript loader in parallel
Added a way to run JavaScript loader in parallel driven by
worker_threads, using the max thread available on the OS.This feature is still experimental. To enable parallelism, set
Rule.use.parallel = trueandexperiments.parallelLoader = true:module.exports = { module: { rules: [ { test: /\.less$/, use: [ { loader: "less-loader", + parallel: true, options: { ... } } ] type: "css" } ] }, experiments: { css: true, + parallelLoader: true } }In big projects like 100x
antd.less, we got 2.26x performance boost. (Tested on Apple M2 Max, 64G)Related PR: https://github.com/web-infra-dev/rspack/pull/9807
No unique code generation entry for unspecified runtimepanic when using withdevtool: 'eval-source-map'. Related issue: https://github.com/web-infra-dev/rspack/issues/9837should have best matchpanic when using withrspack.CssExtractRspackPlugin. Related issue: https://github.com/web-infra-dev/rspack/issues/9833What's Changed
Exciting New Features 🎉
PathBufand&PathtoContextby @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9848Bug Fixes 🐞
Document Updates 📖
Other Changes
import()in node 16 by @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9846New Contributors
Full Changelog: web-infra-dev/rspack@v1.3.0...v1.3.1
v1.3.0Compare Source
What's Changed
See Announcing Rspack 1.3 for more details.
Breaking Changes 🛠
Performance Improvements ⚡
Exciting New Features 🎉
module.generator.json.JSONParseby @colinaaa in https://github.com/web-infra-dev/rspack/pull/9666NormalModule.loadersby @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9664BuilderErrorby @h-a-n-a in https://github.com/web-infra-dev/rspack/pull/9627Bug Fixes 🐞
getModuleIdshould return number for deterministic moduleIds by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9785watching.invalidateWithChangesAndRemovals()by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9789Document Updates 📖
entrypoint.getEntrypointChunkto documentation by @ahabhgk in https://github.com/web-infra-dev/rspack/pull/9641experiments.outputModuledefault value by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/9694extendsconfiguration and blog titles by @chenjiahan in https://github.com/web-infra-dev/rspack/pull/9719modern-moduledocs by @Timeless0911 in https://github.com/web-infra-dev/rspack/pull/9806Other Changes
usestatements for better clarity and consistency by @reddevilmidzy in https://github.com/web-infra-dev/rspack/pull/9578module.code_generationto async fn by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9626block_onin rspack_storage by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9700runtime_module.generateby @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9701block_onin runtime modules by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9708block_onin devtool by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9717block_onin split chunk name and test by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9722block_onin split chunk filter by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9732block_onrelated test cases by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9735block_onin asset generator by @LingyuCoder in https://github.com/web-infra-dev/rspack/pull/9733Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
🔕 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.