Skip to content

fix(deps): update all non-major dependencies#116

Merged
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch
Apr 6, 2026
Merged

fix(deps): update all non-major dependencies#116
chenjiahan merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 5, 2026

This PR contains the following updates:

Package Change Age Confidence
@arco-design/web-react (source) ^2.66.12^2.66.13 age confidence
@rspack/dev-server (source) 2.0.0-beta.72.0.0-rc.2 age confidence
@swc/core (source) ^1.15.21^1.15.24 age confidence
@tanstack/react-query (source) ^5.96.1^5.96.2 age confidence
@types/node (source) ^24.12.0^24.12.2 age confidence
esbuild ^0.27.4^0.28.0 age confidence
fuse.js (source) ^7.2.0^7.3.0 age confidence
preact (source) ^10.29.0^10.29.1 age confidence
react-hook-form (source) ^7.72.0^7.72.1 age confidence
react-router-dom (source) ^7.13.2^7.14.0 age confidence
react-router-dom (source) ^7.13.1^7.14.0 age confidence
rolldown (source) ^1.0.0-rc.12^1.0.0-rc.13 age confidence
styled-components (source) ^6.1.19^6.3.12 age confidence
vue (source) ^3.5.31^3.5.32 age confidence
vue (source) ^3.5.30^3.5.32 age confidence
vuetify (source) ^4.0.4^4.0.5 age confidence

Release Notes

arco-design/arco-design (@​arco-design/web-react)

v2.66.13

Compare Source

🐛 BugFix
  • Fixed the issue where the maximum width limit set via the max property for the right area of the ResizeBox.SplitGroup component did not take effect during actual resizing operations.(#​3161)
  • Fix the issue where positioning becomes invalid after setting the width via triggerProps in the Select component.(#​3160)
  • Fixed the issue where the "Today" shortcut button at the bottom remained clickable after disabling dates after today using the disabledDate prop in the DatePicker component.(#​3159)
  • Fix the infinite jitter issue that occurs with horizontal tabs at specific window positions.(#​3158)

🐛 问题修复
  • 修复 ResizeBox.SplitGroup组件时,为右侧区域配置了 max 属性,但实际缩放操作时,该最大宽度限制并未生效问题(#​3161)
  • 修复 Select 的triggerProps设置宽度后及定位设置失效问题(#​3160)
  • 修复 DatePicker 组件通过disabledDate禁用今天之后,底部的“今天”快捷选择按钮仍然可以点击的问题(#​3159)
  • 修复水平 Tabs 在特定窗口位置会出现无限抖动问题(#​3158)
rstackjs/rspack-dev-server (@​rspack/dev-server)

v2.0.0-rc.2

Compare Source

What's Changed

Full Changelog: rstackjs/rspack-dev-server@v2.0.0-rc.1...v2.0.0-rc.2

v2.0.0-rc.1

Compare Source

What's Changed

Full Changelog: rstackjs/rspack-dev-server@v2.0.0-rc.0...v2.0.0-rc.1

v2.0.0-rc.0

Compare Source

What's Changed

Full Changelog: rstackjs/rspack-dev-server@v2.0.0-beta.7...v2.0.0-rc.0

swc-project/swc (@​swc/core)

v1.15.24

Compare Source

Bug Fixes
Features
  • (es/minifier) Remove useless arguments for non inlined callee (#​11645) (bab249e)

  • (react-compiler) Advance SWC parity for upstream fixtures (#​11724) (468da70)

  • (react-compiler) Tighten core validation parity for upstream fixtures (#​11734) (7e2cf8d)

  • (react-compiler) Improve SWC parity for early-return and hooks validation (#​11738) (4739c58)

  • (react-compiler) M1 memo validators + lint gating alignment (#​11739) (7e1ad26)

  • (react-compiler) Improve Stage A diagnostic parity and validation aggregation (#​11745) (0e2075e)

  • (react-compiler) Continue swc parity for dependency handling (#​11747) (83688c8)

Refactor
Ci
TanStack/query (@​tanstack/react-query)

v5.96.2

Compare Source

Patch Changes
evanw/esbuild (esbuild)

v0.28.0

Compare Source

  • Add support for with { type: 'text' } imports (#​4435)

    The import text proposal has reached stage 3 in the TC39 process, which means that it's recommended for implementation. It has also already been implemented by Deno and Bun. So with this release, esbuild also adds support for it. This behaves exactly the same as esbuild's existing text loader. Here's an example:

    import string from './example.txt' with { type: 'text' }
    console.log(string)
  • Add integrity checks to fallback download path (#​4343)

    Installing esbuild via npm is somewhat complicated with several different edge cases (see esbuild's documentation for details). If the regular installation of esbuild's platform-specific package fails, esbuild's install script attempts to download the platform-specific package itself (first with the npm command, and then with a HTTP request to registry.npmjs.org as a last resort).

    This last resort path previously didn't have any integrity checks. With this release, esbuild will now verify that the hash of the downloaded binary matches the expected hash for the current release. This means the hashes for all of esbuild's platform-specific binary packages will now be embedded in the top-level esbuild package. Hopefully this should work without any problems. But just in case, this change is being done as a breaking change release.

  • Update the Go compiler from 1.25.7 to 1.26.1

    This upgrade should not affect anything. However, there have been some significant internal changes to the Go compiler, so esbuild could potentially behave differently in certain edge cases:

    • It now uses the new garbage collector that comes with Go 1.26.
    • The Go compiler is now more aggressive with allocating memory on the stack.
    • The executable format that the Go linker uses has undergone several changes.
    • The WebAssembly build now unconditionally makes use of the sign extension and non-trapping floating-point to integer conversion instructions.

    You can read the Go 1.26 release notes for more information.

v0.27.7

Compare Source

  • Fix lowering of define semantics for TypeScript parameter properties (#​4421)

    The previous release incorrectly generated class fields for TypeScript parameter properties even when the configured target environment does not support class fields. With this release, the generated class fields will now be correctly lowered in this case:

    // Original code
    class Foo {
      constructor(public x = 1) {}
      y = 2
    }
    
    // Old output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        this.x = x;
        __publicField(this, "y", 2);
      }
      x;
    }
    
    // New output (with --loader=ts --target=es2021)
    class Foo {
      constructor(x = 1) {
        __publicField(this, "x", x);
        __publicField(this, "y", 2);
      }
    }

v0.27.5

Compare Source

  • Fix for an async generator edge case (#​4401, #​4417)

    Support for transforming async generators into the equivalent state machine was added in version 0.19.0. However, the generated state machine didn't work correctly when polling async generators concurrently, such as in the following code:

    async function* inner() { yield 1; yield 2 }
    async function* outer() { yield* inner() }
    let gen = outer()
    for await (let x of [gen.next(), gen.next()]) console.log(x)

    Previously esbuild's output of the above code behaved incorrectly when async generators were transformed (such as with --supported:async-generator=false). The transformation should be fixed starting with this release.

    This fix was contributed by @​2767mr.

  • Fix a regression when metafile is enabled (#​4420, #​4418)

    This release fixes a regression introduced by the previous release. When metafile: true was enabled in esbuild's JavaScript API, builds with build errors were incorrectly throwing an error about an empty JSON string instead of an object containing the build errors.

  • Use define semantics for TypeScript parameter properties (#​4421)

    Parameter properties are a TypeScript-specific code generation feature that converts constructor parameters into class fields when they are prefixed by certain keywords. When "useDefineForClassFields": true is present in tsconfig.json, the TypeScript compiler automatically generates class field declarations for parameter properties. Previously esbuild didn't do this, but esbuild will now do this starting with this release:

    // Original code
    class Foo {
      constructor(public x: number) {}
    }
    
    // Old output (with --loader=ts)
    class Foo {
      constructor(x) {
        this.x = x;
      }
    }
    
    // New output (with --loader=ts)
    class Foo {
      constructor(x) {
        this.x = x;
      }
      x;
    }
  • Allow es2025 as a target in tsconfig.json (#​4432)

    TypeScript recently added es2025 as a compilation target, so esbuild now supports this in the target field of tsconfig.json files, such as in the following configuration file:

    {
      "compilerOptions": {
        "target": "ES2025"
      }
    }

    As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.

krisk/Fuse (fuse.js)

v7.3.0

Compare Source

Features
  • add BigInt support for indexing and search (0ae662c), closes #​814
  • add static Fuse.match() for single string matching (460eb5b)
  • add token search — per-term fuzzy matching with IDF scoring (68c1dcf)
  • getFn null return, escaped pipe in extended search, empty query returns all (d33b735), closes #​800 #​765 #​728
  • removeAt() now returns the removed item (8cec7e2), closes #​675
  • search: support keyless string entries in logical queries (8695556), closes #​736
Bug Fixes
  • index: coerce non-string array values to strings during indexing (db0e181), closes #​738
  • index: strip getFn from keys in toJSON() for safe serialization (0f2a69b), closes #​798
  • lint: suppress unused var in toJSON destructure (d63c0e8)
  • merge overlapping match indices in extended search (06c5e97)
  • search: handle non-decomposable diacritics in stripDiacritics (5a01f29), closes home-assistant/frontend#30399 #​816
  • search: handle quoted tokens with inner spaces and quotes in extended search (c226523), closes #​810
  • search: inverse patterns now work correctly across multiple keys (9351882), closes #​712
preactjs/preact (preact)

v10.29.1

Compare Source

Fixes

Maintenance

react-hook-form/react-hook-form (react-hook-form)

v7.72.1: Version 7.72.1

Compare Source

🐞 fix: add isDirty check for numeric string keys in defaultValues (issue #​13346) (#​13347)
🐞 fix: prevent setValue with shouldDirty from polluting unrelated dirty fields (#​13326)
🐞 fix: memoize control in HookFormControlContext to prevent render conflicts (#​13272) (#​13312)
🐞 fix: isNameInFieldArray should check all ancestor paths for nested field arrays (#​13318)
🐞 fix: #​13320 formState.isValid incorrect on Controller re-mount (#​13324)

thanks to @​6810779s, @​candymask0712, @​olagokemills, @​shahmir-oscilar & @​bae080311

remix-run/react-router (react-router-dom)

v7.14.0

Compare Source

Patch Changes
rolldown/rolldown (rolldown)

v1.0.0-rc.13

Compare Source

🚀 Features
🐛 Bug Fixes
🚜 Refactor
📚 Documentation
🧪 Testing
⚙️ Miscellaneous Tasks
❤️ New Contributors
vuejs/core (vue)

v3.5.32

Compare Source

Bug Fixes
Reverts
vuetifyjs/vuetify (vuetify)

v4.0.5

Compare Source

[!IMPORTANT]
Vuetify Needs Your Support! The OpenCollective funds have been fully exhausted. We are currently unable to compensate our contributors for their continued work on the framework and the ecosystem tools.

If Vuetify is part of your stack, please consider sponsoring the project so we can continue delivering updates and fixes.

Sponsor via Open Collective | Sponsor via GitHub

Every contribution helps us keep Vuetify alive and ship exciting new features.

Thank you.


🔧 Bug Fixes
🧪 Labs
  • VPie: shrink back hovered slices on mouseleave (1893748)

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.


  • 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-minor-patch branch from fcaef24 to 39580fc Compare April 6, 2026 01:22
@chenjiahan chenjiahan merged commit 5b7e34a into main Apr 6, 2026
8 of 9 checks passed
@chenjiahan chenjiahan deleted the renovate/all-minor-patch branch April 6, 2026 01:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant