chore(deps): update all non-major dependencies#21
Merged
chenjiahan merged 1 commit intomainfrom Aug 1, 2025
Merged
Conversation
chenjiahan
approved these changes
Aug 1, 2025
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.4.2->^1.4.12^0.10.4->^0.11.0^22.15.34->^22.17.010.12.4->10.14.0^5.8.3->^5.9.2Release Notes
web-infra-dev/rsbuild (@rsbuild/core)
v1.4.12Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
url.parsefrom historyApiFallback by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5696--environmentshorten option by @9aoy in https://github.com/web-infra-dev/rsbuild/pull/5719Refactor 🔨
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.11...v1.4.12
v1.4.11Compare Source
What's Changed
New Features 🎉
filename.wasmconfig by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5677Performance 🚀
endsWithinstead of regex by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5668Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.10...v1.4.11
v1.4.10Compare Source
What's Changed
New Features 🎉
Connecttype by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5663Bug Fixes 🐞
Document 📖
enforceproperty to plugin API by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5649applyproperty for its function signature by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5654Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.9...v1.4.10
v1.4.9Compare Source
What's Changed
New Features 🎉
orderproperty for transform hook by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5640enforceproperty by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5645Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.8...v1.4.9
v1.4.8Compare Source
What's Changed
New Features 🎉
applyproperty by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5620Bug Fixes 🐞
stats.toJsonby @9aoy in https://github.com/web-infra-dev/rsbuild/pull/5615getStatsbefore the first build is finished by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5622Refactor 🔨
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.4.7...v1.4.8
v1.4.7Compare Source
What's Changed
New Features 🎉
metadatafield to tag object by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5586HtmlTagtype by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5585Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.6...v1.4.7
v1.4.6Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
html.tagsconfig by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5573html.tagsby @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5574Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.4.5...v1.4.6
v1.4.5Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
hostnameto determine local or network by @mycoin in https://github.com/web-infra-dev/rsbuild/pull/5561Document 📖
Other Changes
@rsbuild/coreby @9aoy in https://github.com/web-infra-dev/rsbuild/pull/5558New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.4.4...v1.4.5
v1.4.4Compare Source
What's Changed
New Features 🎉
compress.filteroption by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5520compress.leveloption by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5522Bug Fixes 🐞
Refactor 🔨
Document 📖
compress.filteroption by @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5521modifyHTMLandhtml.tagsby @chenjiahan in https://github.com/web-infra-dev/rsbuild/pull/5523isolatedModulesexample by @bodia-uz in https://github.com/web-infra-dev/rsbuild/pull/5539Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.4.3...v1.4.4
v1.4.3Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.4.2...v1.4.3
web-infra-dev/rslib (@rslib/core)
v0.11.0Compare Source
Breaking changes 🚨
redirect.asset
Boolean values are no longer supported for
redirect.asset, see the documentation of redirect.asset for more details. (#1119)Please note the following changes that may require adjustments to your configurations:
export default defineConfig({ lib: [ { redirect: { - asset: true, + asset: { + path: true, + extension: true, + }, }, }, ], });export default defineConfig({ lib: [ { redirect: { - asset: false, + asset: { + path: false, + extension: false, + }, }, }, ], });What's Changed
New Features 🎉
redirect.asset.pathandredirect.asset.extensionby @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1119Bug Fixes 🐞
dts.buildis true by @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1120Other Changes
Full Changelog: web-infra-dev/rslib@v0.10.6...v0.11.0
v0.10.6Compare Source
What's Changed
Bug Fixes 🐞
Other Changes
Full Changelog: web-infra-dev/rslib@v0.10.5...v0.10.6
v0.10.5Compare Source
What's Changed
Bug Fixes 🐞
Document 📖
Other Changes
.npmrctopnpm-workspace.yamlby @Timeless0911 in https://github.com/web-infra-dev/rslib/pull/1098Full Changelog: web-infra-dev/rslib@v0.10.4...v0.10.5
pnpm/pnpm (pnpm)
v10.14.0Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime(insidepackage.json) and let pnpm download and pin it automatically.Usage example:
{ "devEngines": { "runtime": { "name": "node", "version": "^24.4.0", "onFail": "download" (we only support the "download" value for now) } } }How it works:
pnpm installresolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersionandexecutionEnv.nodeVersion)executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.devEngines.runtimesetting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu,--libc, and--ostopnpm install,pnpm add, andpnpm dlxto customizesupportedArchitecturesvia the CLI #7510.Patch Changes
pnpm adddownloads packages whoselibcdiffer frompnpm.supportedArchitectures.libc.dlxto parse CLI flags and options between thedlxcommand and the command to run or between thedlxcommand and--#9719.pnpm install --prodshould removing hoisted dev dependencies #9782.pnpm installto incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1Compare Source
Patch Changes
v10.13.0Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfilesetting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjsfile from any config dependency named@pnpm/plugin-*orpnpm-plugin-*#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjsfiles in the config dependencies can be explicitly listed using thepnpmfilesetting inpnpm-workspace.yaml.Patch Changes
pkg.pr.new, treat them as Git tarball URLsConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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.
This PR was generated by Mend Renovate. View the repository job log.