fix(deps): update all non-major dependencies#39
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Conversation
chenjiahan
approved these changes
Feb 1, 2026
d9f575a to
0e7430f
Compare
35795ae to
d4c20d7
Compare
cb743b7 to
512dcd9
Compare
3b9a905 to
f030e86
Compare
a6c3821 to
4f9676b
Compare
c7990e4 to
b5f98da
Compare
b5f98da to
a5ace5d
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.11.2→^1.12.0^1.57.0→^1.58.2^2.0.0-beta.6→^2.0.0-canary-20260309140114^0.18.2→^0.20.0^24.10.1→^24.12.024.11.1→24.14.0^1.57.0→^1.58.210.24.0→10.32.0^3.3.2→^3.3.3Release Notes
Brooooooklyn/Image (@napi-rs/image)
v1.12.0Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/Brooooooklyn/Image/compare/@napi-rs/image@1.11.2...@napi-rs/image@1.12.0
microsoft/playwright (@playwright/test)
v1.58.2Compare Source
v1.58.1Compare Source
Highlights
#39036 fix(msedge): fix local network permissions
#39037 chore: update cft download location
#38995 chore(webkit): disable frame sessions on fronzen builds
Browser Versions
v1.58.0Compare Source
web-infra-dev/rsbuild (@rsbuild/core)
v2.0.0-beta.8Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Refactor 🔨
Other Changes
@rsbuild/corepublic types by @chenjiahan in #7249Full Changelog: web-infra-dev/rsbuild@v2.0.0-beta.7...v2.0.0-beta.8
v2.0.0-beta.7Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
dev.writeToDiskconfig correctly by @9aoy in #7273module.hotwith import.meta by @chenjiahan in #7276Document 📖
Other Changes
bbbca2dby @renovate[bot] in #7267New Contributors
Full Changelog: web-infra-dev/rsbuild@v2.0.0-beta.6...v2.0.0-beta.7
web-infra-dev/rslib (@rslib/core)
v0.20.0Compare Source
Breaking changes 🚨
Drop Node.js 18 support
Rslib v0.20 requires Node.js 20.19+ or 22.12+, Node.js 18 is no longer supported.
Rsbuild / Rspack v2
Rslib v0.20 now depends on beta version of @rsbuild/core v2 and @rspack/core v2. If you use custom Rsbuild / Rspack configurations or plugins, you may need to make corresponding adjustments.
See the Rsbuild v2 upgrade guide for all breaking changes.
Deprecate
experiments.advancedEsmexperiments.advancedEsmis now deprecated and effectively ignored. Advanced ESM behavior is the default in both bundle and bundleless mode.What you need to do:
experiments.advancedEsmfrom your configRename type
StartServerResultThe exported type
StartServerResulthas been renamed toStartDevServerResult.What's Changed
New Features 🎉
experiments.advancedEsmby @Timeless0911 in #1513Bug Fixes 🐞
Document 📖
Other Changes
53b8394by @renovate[bot] in #1520Full Changelog: web-infra-dev/rslib@v0.19.6...v0.20.0
v0.19.6Compare Source
What's Changed
Document 📖
dts.buildrequirement by @Timeless0911 in #1482Other Changes
de0fac2by @renovate[bot] in #1477Full Changelog: web-infra-dev/rslib@v0.19.5...v0.19.6
v0.19.5Compare Source
What's Changed
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslib@v0.19.4...v0.19.5
v0.19.4Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
import.meta.urlnot being removed by tree-shaking by @sylingd in #1463Document 📖
Other Changes
extraToolsto generate templates by @Timeless0911 in #1462New Contributors
Full Changelog: web-infra-dev/rslib@v0.19.3...v0.19.4
v0.19.3Compare Source
What's Changed
Document 📖
Other Changes
6044e13by @renovate[bot] in #1444Full Changelog: web-infra-dev/rslib@v0.19.2...v0.19.3
v0.19.2Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslib@v0.19.1...v0.19.2
v0.19.1Compare Source
What's Changed
Document 📖
Rstestguide by @9aoy in #1419Other Changes
Full Changelog: web-infra-dev/rslib@v0.19.0...v0.19.1
v0.19.0Compare Source
Highlights 💡
New JavaScript API
This release introduces a new, comprehensive JavaScript API for Rslib.
See the API docs for details:
Usage
@rslib/corepackage:Advanced ESM Output
In previous versions, Rslib integrated Rspack's EsmLibraryPlugin through an experimental configuration of experiments.advancedEsm, aiming to optimize the quality of ESM outputs. Now, we are pleased to announce that this plugin has been stabilized.
In this release, the
EsmLibraryPluginis enabled by default by settingexperiments.advancedEsmtotruein bundle mode. Developers can directly obtain ESM output that is high-quality, more friendly to static analysis, and supports code splitting without any additional configuration.Better Rstest Integration
Rslib now supports seamless integration with Rstest.
By using the official @rstest/adapter-rslib, you can directly reuse your Rslib build configurations (such as
resolve.aliasandsource.define) within Rstest. This enables zero-config testing for Rslib projects, ensuring your test environment perfectly mirrors your build environment while eliminating the overhead of maintaining duplicate configurations.What's Changed
New Features 🎉
happy-dominstead ofjsdomby @9aoy in #1412@rstest/adapter-rslibby @9aoy in #1415Other Changes
Full Changelog: web-infra-dev/rslib@v0.18.6...v0.19.0
v0.18.6Compare Source
What's Changed
New Features 🎉
rslib-nodeprocess title by @Timeless0911 in #1406Bug Fixes 🐞
Other Changes
Full Changelog: web-infra-dev/rslib@v0.18.5...v0.18.6
v0.18.5Compare Source
What's Changed
Document 📖
dts.aliasby @Timeless0911 in #1391Other Changes
onDevCompileDonewithonAfterDevCompileby @Timeless0911 in #1393Full Changelog: web-infra-dev/rslib@v0.18.4...v0.18.5
v0.18.4Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
395ad32by @renovate[bot] in #13818e8c483by @renovate[bot] in #13808e8c483by @renovate[bot] in #1388Full Changelog: web-infra-dev/rslib@v0.18.3...v0.18.4
v0.18.3Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Other Changes
Full Changelog: web-infra-dev/rslib@v0.18.2...v0.18.3
actions/node-versions (node)
v24.14.0: 24.14.0[Compare Source](https://redirect.github.com/ac
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.