chore(deps): update all patch dependencies#13765
Merged
Merged
Conversation
365493d to
b0d6153
Compare
d266de6 to
4fd2f97
Compare
81c3c3f to
d2208b7
Compare
e4718ed to
2e3cdba
Compare
e1b8983 to
62403db
Compare
f8ee854 to
17faa7a
Compare
bd8fc58 to
0639c70
Compare
f95025a to
0e730a7
Compare
8567447 to
f77562b
Compare
f77562b to
5e4fd49
Compare
chenjiahan
approved these changes
Mar 26, 2026
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.7.2→^1.7.4^1.1.0→^1.1.2^1.6.0→^1.6.2^1.5.0→^1.5.1^1.2.3→^1.2.7^0.20.0→^0.20.1^4.17.23→^4.17.24^3.5.26→^3.5.31^3.5.26→^3.5.31^10.4.23→^10.4.27^14.0.2→^14.0.3^0.27.2→^0.27.4^0.27.2→^0.27.4^11.3.3→^11.3.422.22.0→22.22.2^8.5.6→^8.5.8^6.1.2→^6.1.3^5.46.0→^5.46.1^2.6.0→^2.6.1^3.5.26→^3.5.31Release Notes
web-infra-dev/rsbuild (@rsbuild/core)
v1.7.4Compare Source
v1.7.3Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.7.2...v1.7.3
web-infra-dev/rsbuild (@rsbuild/plugin-babel)
v1.1.2Compare Source
What's Changed
New Features 🎉
output.emitCssconfig by @chenjiahan in #3967Performance 🚀
Bug Fixes 🐞
watchFiles.typenot work as expected by @chenjiahan in #3963stylusOptions.importshould be an array by @chenjiahan in #3972Document 📖
Other Changes
Full Changelog: web-infra-dev/rsbuild@v1.1.1...v1.1.2
v1.1.1Compare Source
What's Changed
New Features 🎉
Bug Fixes 🐞
*.svslte.tsfiles are transformed twice by @chenjiahan in #3920\nin error overlay messages by @ymq001 in #3944Document 📖
Other Changes
dts.buildby @chenjiahan in #3948New Contributors
Full Changelog: web-infra-dev/rsbuild@v1.1.0...v1.1.1
web-infra-dev/rslib (@rslib/core)
v0.20.1Compare Source
What's Changed
New Features 🎉
Performance 🚀
Bug Fixes 🐞
Document 📖
Other Changes
Full Changelog: web-infra-dev/rslib@v0.20.0...v0.20.1
vuejs/core (@vue/runtime-core)
v3.5.31Compare Source
Bug Fixes
v3.5.30Compare Source
Bug Fixes
entitiesto @vue/compat deps to fix CJS edge cases (#12514) (e725a67), closes #10609Setwith initial reactive values edge case (#12393) (5dc27ca), closes #8647v3.5.29Compare Source
Bug Fixes
v3.5.28Compare Source
Bug Fixes
cancelledparameter in transitiondonecallback (#14391) (6798853).mts/.ctsfiles (#14402) (c09d41f), closes vuejs/router#2611__v_skipflag toEffectScopeto prevent reactive conversion (#14359) (48b7552), closes #14357v3.5.27Compare Source
Bug Fixes
definePropsdestructuring. (#14296) (6a1bb50), closes #14294postcss/autoprefixer (autoprefixer)
v10.4.27Compare Source
package.json.v10.4.26Compare Source
v10.4.25Compare Source
v10.4.24Compare Source
tj/commander.js (commander)
v14.0.3Compare Source
Added
Changes
.outputHelp()([#2427])evanw/esbuild (esbuild)
v0.27.4Compare Source
Fix a regression with CSS media queries (#4395, #4405, #4406)
Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the
<media-type> and <media-condition-without-or>grammar. Specifically, esbuild was failing to wrap anorclause with parentheses when inside<media-condition-without-or>. This release fixes the regression.Here is an example:
Fix an edge case with the
injectfeature (#4407)This release fixes an edge case where esbuild's
injectfeature could not be used with arbitrary module namespace names exported using anexport {} fromstatement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.With the fix, the following
injectfile:Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:
Attempt to improve API handling of huge metafiles (#4329, #4415)
This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.
The primary issue is that V8 has an implementation-specific maximum string length, so using the
JSON.parseAPI with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of usingJSON.parsewhen the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).
v0.27.3Compare Source
Preserve URL fragments in data URLs (#4370)
Consider the following HTML, CSS, and SVG:
index.html:icons.css:triangle.svg:The CSS uses a URL fragment (the
#x) to reference theclipPathelement in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using thedataurlloader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:Parse and print CSS
@scoperules (#4322)This release includes dedicated support for parsing
@scoperules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside@scoperules has also improved slightly.Here's an example:
Fix a minification bug with lowering of
for await(#4378, #4385)This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated
catchclause of loweredfor awaitloops. The code that generated the loop previously failed to mark the internal variable references as used.Update the Go compiler from v1.25.5 to v1.25.7 (#4383, #4388)
This PR was contributed by @MikeWillCook.
jprichardson/node-fs-extra (fs-extra)
v11.3.4Compare Source
ensureSymlink/ensureSymlinkSyncwith a relativesrcPathwould fail if the symlink already existed (#1038, #1064)actions/node-versions (node)
v22.22.2: 22.22.2Compare Source
Node.js 22.22.2
v22.22.1: 22.22.1Compare Source
Node.js 22.22.1
postcss/postcss (postcss)
v8.5.8Compare Source
Processor#version.v8.5.7Compare Source
isaacs/rimraf (rimraf)
v6.1.3Compare Source
terser/terser (terser)
v5.46.1Compare Source
evaluateof method chainsInfinityfoo[(1, 2)])yf-hk/transliteration (transliteration)
v2.6.1Compare Source
transliteration/latinentrypoint with properexportsmappingdist/*andpackage.jsonfor tooling/CDN usagesetData(..., true)Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 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.