Skip to content

chore(deps): update all patch dependencies#13765

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-patch
Open

chore(deps): update all patch dependencies#13765
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2026

This PR contains the following updates:

Package Change Age Confidence Type Update
@rsbuild/core (source) ^1.7.2^1.7.3 age confidence dependencies patch
@rsbuild/plugin-babel (source) ^1.1.0^1.1.2 age confidence dependencies patch
@rsbuild/plugin-less (source) ^1.6.0^1.6.2 age confidence dependencies patch
@rsbuild/plugin-sass (source) ^1.5.0^1.5.1 age confidence dependencies patch
@rsbuild/plugin-vue (source) ^1.2.3^1.2.7 age confidence dependencies patch
@types/lodash (source) ^4.17.23^4.17.24 age confidence devDependencies patch
@vue/runtime-core (source) ^3.5.26^3.5.30 age confidence devDependencies patch
@vue/shared (source) ^3.5.26^3.5.30 age confidence dependencies patch
autoprefixer ^10.4.23^10.4.27 age confidence dependencies patch
commander ^14.0.2^14.0.3 age confidence dependencies patch
esbuild ^0.27.2^0.27.4 age confidence dependencies patch
esbuild ^0.27.2^0.27.4 age confidence overrides patch
fs-extra ^11.3.3^11.3.4 age confidence dependencies patch
node 22.22.022.22.1 age confidence uses-with patch
postcss (source) ^8.5.6^8.5.8 age confidence dependencies patch
rimraf ^6.1.2^6.1.3 age confidence devDependencies patch
terser (source) ^5.46.0^5.46.1 age confidence dependencies patch
transliteration ^2.6.0^2.6.1 age confidence dependencies patch
vue (source) ^3.5.26^3.5.30 age confidence devDependencies patch

Release Notes

web-infra-dev/rsbuild (@​rsbuild/core)

v1.7.3

Compare Source

What's Changed

New Features 🎉
Bug Fixes 🐞
Document 📖
Other Changes

Full Changelog: web-infra-dev/rsbuild@v1.7.2...v1.7.3

vuejs/core (@​vue/runtime-core)

v3.5.30

Compare Source

Bug Fixes

v3.5.29

Compare Source

Bug Fixes

v3.5.28

Compare Source

Bug Fixes

v3.5.27

Compare Source

Bug Fixes
postcss/autoprefixer (autoprefixer)

v10.4.27

Compare Source

  • Removed development key from package.json.

v10.4.26

Compare Source

  • Reduced package size.

v10.4.25

Compare Source

  • Fixed broken gradients on CSS Custom Properties (by @​serger777).

v10.4.24

Compare Source

  • Made Autoprefixer a little faster (by @​Cherry).
tj/commander.js (commander)

v14.0.3

Compare Source

Added
Changes
  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date ([#​2462])
  • clarify typing for deprecated callback parameter to .outputHelp() ([#​2427])
  • simple readability improvements to README ([#​2465])
evanw/esbuild (esbuild)

v0.27.4

Compare 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 an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */ @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red } } /* Old output (incorrect) */ @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) { a { color: red; } } /* New output (correct) */ @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) { a { color: red; } }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery'; export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • 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.parse API 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 using JSON.parse when 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.3

Compare Source

  • Preserve URL fragments in data URLs (#​4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html> <html> <head><link rel="stylesheet" href="icons.css"></head> <body><div class="triangle"></div></body> </html>
    • icons.css:

      .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url(./triangle.svg#x); }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg"> <defs> <clipPath id="x"> <path d="M0 0H10V10Z"/> </clipPath> </defs> </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */ .triangle { width: 10px; height: 10px; background: currentColor; clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x'); }
  • Parse and print CSS @scope rules (#​4322)

    This release includes dedicated support for parsing @scope rules 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 @scope rules has also improved slightly.

    Here's an example:

    /* Original code */ @&#8203;scope (:global(.foo)) to (:local(.bar)) { .bar { color: red; } } /* Old output (with --loader=local-css --minify) */ @&#8203;scope (:global(.foo)) to (:local(.bar)){.o{color:red}} /* New output (with --loader=local-css --minify) */ @&#8203;scope(.foo)to (.o){.o{color:red}}
  • 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 catch clause of lowered for await loops. 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.4

Compare Source

  • Fix bug where calling ensureSymlink/ensureSymlinkSync with a relative srcPath would fail if the symlink already existed (#​1038, #​1064)
actions/node-versions (node)

v22.22.1: 22.22.1

Compare Source

Node.js 22.22.1

postcss/postcss (postcss)

v8.5.8

Compare Source

  • Fixed Processor#version.

v8.5.7

Compare Source

  • Improved source map annotation cleaning performance (by CodeAnt AI).
isaacs/rimraf (rimraf)

v6.1.3

Compare Source

terser/terser (terser)

v5.46.1

Compare Source

  • Fix extremely slow (seemed like a freeze) evaluate of method chains
  • Parse extremely large floating-point number literals as Infinity
  • Remove parens from comma expressions in computed property access (foo[(1, 2)])
yf-hk/transliteration (transliteration)

v2.6.1

Compare Source

  • Fix: Added transliteration/latin entrypoint with proper exports mapping
  • Fix: Preserved access to dist/* and package.json for tooling/CDN usage
  • Fix: Latin-only build now resets to Latin data on setData(..., 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from 365493d to b0d6153 Compare February 2, 2026 18:28
@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from d266de6 to 4fd2f97 Compare February 9, 2026 12:44
@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from 81c3c3f to d2208b7 Compare February 17, 2026 16:35
@renovate renovate bot force-pushed the renovate/all-patch branch 6 times, most recently from e4718ed to 2e3cdba Compare February 24, 2026 08:37
@renovate renovate bot force-pushed the renovate/all-patch branch 3 times, most recently from e1b8983 to 62403db Compare February 26, 2026 14:49
@renovate renovate bot force-pushed the renovate/all-patch branch 6 times, most recently from f8ee854 to 17faa7a Compare March 5, 2026 17:20
@renovate renovate bot force-pushed the renovate/all-patch branch 7 times, most recently from bd8fc58 to 0639c70 Compare March 12, 2026 14:38
@renovate renovate bot force-pushed the renovate/all-patch branch 2 times, most recently from 8b09998 to f95025a Compare March 16, 2026 01:32
@renovate renovate bot force-pushed the renovate/all-patch branch from f95025a to 0e730a7 Compare March 16, 2026 13:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

0 participants