Skip to content

chore(deps): bump the npm-non-breaking group across 1 directory with 62 updates#323

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-non-breaking-4e150c57e5
Open

chore(deps): bump the npm-non-breaking group across 1 directory with 62 updates#323
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/npm-non-breaking-4e150c57e5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 9, 2026

Bumps the npm-non-breaking group with 58 updates in the / directory:

Package From To
lodash-es 4.17.23 4.18.1
@alova/adapter-axios 2.0.17 2.0.18
@changesets/changelog-github 0.5.2 0.6.0
@commitlint/cli 20.4.3 20.5.0
@commitlint/config-conventional 20.4.3 20.5.0
@intlify/core-base 11.2.8 11.3.2
@jspm/generator 2.11.0 2.13.0
@playwright/test 1.58.2 1.59.1
@pnpm/workspace.read-manifest 1000.2.10 1000.3.1
@tanstack/vue-query 5.92.9 5.96.2
@tanstack/vue-store 0.8.1 0.9.3
@typescript-eslint/eslint-plugin 8.56.1 8.58.1
@typescript-eslint/parser 8.56.1 8.58.1
@unocss/postcss 66.6.4 66.6.8
@unocss/preset-wind4 66.6.4 66.6.8
@visactor/vchart 2.0.17 2.0.21
@vitejs/plugin-vue-jsx 5.1.4 5.1.5
@vue/shared 3.5.18 3.5.32
antdv-next 1.1.0 1.1.9
axios 1.13.6 1.15.0
dayjs 1.11.19 1.11.20
defu 6.1.4 6.1.7
dompurify 3.3.1 3.3.3
element-plus 2.13.3 2.13.6
es-toolkit 1.43.0 1.45.1
eslint-config-turbo 2.8.13 2.9.5
eslint-plugin-import-x 4.16.1 4.16.2
eslint-plugin-perfectionist 5.6.0 5.8.0
get-port 7.1.0 7.2.0
happy-dom 20.8.3 20.8.9
lint-staged 16.3.2 16.4.0
naive-ui 2.43.2 2.44.1
nitropack 2.13.1 2.13.3
playwright 1.58.2 1.59.1
postcss 8.5.6 8.5.9
reka-ui 2.9.0 2.9.5
sass 1.97.3 1.99.0
sortablejs 1.15.6 1.15.7
@types/sortablejs 1.15.8 1.15.9
stylelint-config-recommended-scss 17.0.0 17.0.1
tdesign-vue-next 1.18.2 1.18.6
turbo 2.8.13 2.9.5
unocss 66.6.4 66.6.8
vite-plugin-vue-devtools 8.0.7 8.1.1
vitepress-plugin-group-icons 1.7.1 1.7.3
vitest 4.0.18 4.1.3
vue-data-ui 3.15.9 3.17.11
vue-draggable-plus 0.6.0 0.6.1
vue-i18n 11.2.8 11.3.2
vue-router 5.0.3 5.0.4
vue-tsc 3.2.5 3.2.6
vue 3.5.29 3.5.32
vxe-pc-ui 4.13.0 4.13.21
vxe-table 4.17.49 4.18.11
xgplayer 3.0.23 3.0.24
@ast-grep/napi 0.40.5 0.42.1
@iconify-json/logos 1.2.10 1.2.11
cssnano 7.1.2 7.1.4

Updates lodash-es from 4.17.23 to 4.18.1

Release notes

Sourced from lodash-es's releases.

4.18.1

Bugs

Fixes a ReferenceError issue in lodash lodash-es lodash-amd and lodash.template when using the template and fromPairs functions from the modular builds. See lodash/lodash#6167

These defects were related to how lodash distributions are built from the main branch using https://github.com/lodash-archive/lodash-cli. When internal dependencies change inside lodash functions, equivalent updates need to be made to a mapping in the lodash-cli. (hey, it was ahead of its time once upon a time!). We know this, but we missed it in the last release. It's the kind of thing that passes in CI, but fails bc the build is not the same thing you tested.

There is no diff on main for this, but you can see the diffs for each of the npm packages on their respective branches:

4.18.0

v4.18.0

Full Changelog: lodash/lodash@4.17.23...4.18.0

Security

_.unset / _.omit: Fixed prototype pollution via constructor/prototype path traversal (GHSA-f23m-r3pf-42rh, fe8d32e). Previously, array-wrapped path segments and primitive roots could bypass the existing guards, allowing deletion of properties from built-in prototypes. Now constructor and prototype are blocked unconditionally as non-terminal path keys, matching baseSet. Calls that previously returned true and deleted the property now return false and leave the target untouched.

_.template: Fixed code injection via imports keys (GHSA-r5fr-rjxr-66jc, CVE-2026-4800, 879aaa9). Fixes an incomplete patch for CVE-2021-23337. The variable option was validated against reForbiddenIdentifierChars but importsKeys was left unguarded, allowing code injection via the same Function() constructor sink. imports keys containing forbidden identifier characters now throw "Invalid imports option passed into _.template".

Docs

  • Add security notice for _.template in threat model and API docs (#6099)
  • Document lower > upper behavior in _.random (#6115)
  • Fix quotes in _.compact jsdoc (#6090)

lodash.* modular packages

Diff

We have also regenerated and published a select number of the lodash.* modular packages.

These modular packages had fallen out of sync significantly from the minor/patch updates to lodash. Specifically, we have brought the following packages up to parity w/ the latest lodash release because they have had CVEs on them in the past:

Commits
  • cb0b9b9 release(patch): bump main to 4.18.1 (#6177)
  • 75535f5 chore: prune stale advisory refs (#6170)
  • 62e91bc docs: remove n_ Node.js < 6 REPL note from README (#6165)
  • 59be2de release(minor): bump to 4.18.0 (#6161)
  • af63457 fix: broken tests for _.template 879aaa9
  • 1073a76 fix: linting issues
  • 879aaa9 fix: validate imports keys in _.template
  • fe8d32e fix: block prototype pollution in baseUnset via constructor/prototype traversal
  • 18ba0a3 refactor(fromPairs): use baseAssignValue for consistent assignment (#6153)
  • b819080 ci: add dist sync validation workflow (#6137)
  • Additional commits viewable in compare view

Updates @alova/adapter-axios from 2.0.17 to 2.0.18

Release notes

Sourced from @​alova/adapter-axios's releases.

@​alova/adapter-axios@​2.0.18

Patch Changes

Commits
  • e11dc35 ci: release (#812)
  • 3aa6dda ci: release
  • c8200bb fix: fix that throw error in onMockResponse will trigger onMockError, axi...
  • 2e54da4 Merge pull request #805 from alovajs/changeset-release/main
  • 356ea73 ci: release
  • fcfc871 fix: cannot work when set mockRequestLogger to true in mock adapter (#808)
  • 191376d fix: only clear alova related caches in uniapp and taro (#807)
  • 1e77ee2 fix: detech ssr in onUnmount to prevent error in svelitekit (#797)
  • 4894d7e fix: ensure the file directory is exists (#796)
  • 6bfbc99 ci: release (#795)
  • Additional commits viewable in compare view

Updates @changesets/changelog-github from 0.5.2 to 0.6.0

Release notes

Sourced from @​changesets/changelog-github's releases.

@​changesets/changelog-github@​0.6.0

Minor Changes

Patch Changes

Commits
  • 3ab4d89 Version Packages (#1817)
  • 1772598 Fix changelog entry insertion when no package title is present in the `CHANGE...
  • 6df3a5e Allow versioned private packages to depend on skipped packages without requir...
  • 2a73025 Fix confusing 'Question-2' prompt label when using external editor (#1857)
  • 667fe5a Support ESM for custom changelog and commit options (#1774)
  • e462d89 Add scopes automatically in the GitHub new token link in the printed error me...
  • 503fcaa Support absolute paths in status output flag (#1776)
  • d4b8ad8 Improve error messages when fetching from GitHub api (#1781)
  • ece0376 Improve baseBranch docs (#1778)
  • 0e8e01e Allow Changesets to be executed from non-root directories (#1806)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​changesets/changelog-github since your current version.


Updates @commitlint/cli from 20.4.3 to 20.5.0

Release notes

Sourced from @​commitlint/cli's releases.

v20.5.0

20.5.0 (2026-03-15)

Bug Fixes

Features

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.4.4...v20.5.0

v20.4.4

20.4.4 (2026-03-12)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.4.3...v20.4.4

Changelog

Sourced from @​commitlint/cli's changelog.

20.5.0 (2026-03-15)

Bug Fixes

  • cli: validate that --cwd directory exists before execution (#4658) (cf80f75), closes #4595

20.4.4 (2026-03-12)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 20.4.3 to 20.5.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v20.5.0

20.5.0 (2026-03-15)

Bug Fixes

Features

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.4.4...v20.5.0

v20.4.4

20.4.4 (2026-03-12)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.4.3...v20.4.4

Changelog

Sourced from @​commitlint/config-conventional's changelog.

20.5.0 (2026-03-15)

Note: Version bump only for package @​commitlint/config-conventional

20.4.4 (2026-03-12)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @intlify/core-base from 11.2.8 to 11.3.2

Release notes

Sourced from @​intlify/core-base's releases.

v11.3.2

What's Changed

🐛 Bug Fixes

⚡ Improvement Features

Full Changelog: intlify/vue-i18n@v11.3.1...v11.3.2

v11.3.1

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v11.3.0...v11.3.1

v11.3.0

What's Changed

🌟 Features

🐛 Bug Fixes

⚡ Improvement Features

📈 Performance Fixes

📝️ Documentations

👕 Refactoring

Full Changelog: intlify/vue-i18n@v11.2.8...v11.3.0

Commits

Updates @jspm/generator from 2.11.0 to 2.13.0

Release notes

Sourced from @​jspm/generator's releases.

@​jspm/generator@​2.13.0

What's Changed

Full Changelog: https://github.com/jspm/jspm/compare/generator-2.12.0...@​jspm/generator@​2.13.0

Commits

Updates @playwright/test from 1.58.2 to 1.59.1

Release notes

Sourced from @​playwright/test's releases.

v1.59.1

Bug Fixes

  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#39990)

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
</tr></table> 

... (truncated)

Commits
  • d466ac5 chore: mark v1.59.1 (#40005)
  • 530e7e5 cherry-pick(#4004): fix(cli): kill-all should kill dashboard
  • 9aa216c cherry-pick(#39994): Revert "fix(windows): hide console window when spawning ...
  • 01b2b15 cherry-pick(#39980): chore: more release notes fixes
  • a5cb6c9 cherry-pick(#39972): chore: expose browser.bind and browser.unbind APIs
  • 99a17b5 cherry-pick(#39975): chore: support opening .trace files via .link indirection
  • 43607c3 cherry-pick(#39974): chore(webkit): update Safari user-agent version to 26.4
  • 62cabe1 cherry-pick(#39969): chore(npm): include all *.md from lib (#39970)
  • 0c65a75 cherry-pick(#39968): chore: screencast.showActions api
  • f04155b cherry-pick(#39958): chore: release notes for langs v1.59
  • Additional commits viewable in compare view

Updates @pnpm/workspace.read-manifest from 1000.2.10 to 1000.3.1

Commits

Updates @tanstack/vue-query from 5.92.9 to 5.96.2

Release notes

Sourced from @​tanstack/vue-query's releases.

@​tanstack/vue-query@​5.96.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.2

@​tanstack/vue-query@​5.96.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.1

@​tanstack/vue-query@​5.96.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.0

@​tanstack/vue-query@​5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

@​tanstack/vue-query@​5.95.1

Patch Changes

  • Updated dependencies [1f1775c]:
    • @​tanstack/query-core@​5.95.1
Changelog

Sourced from @​tanstack/vue-query's changelog.

5.96.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.2

5.96.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.1

5.96.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.96.0

5.95.2

Patch Changes

  • Updated dependencies [cd5a35b]:
    • @​tanstack/query-core@​5.95.2

5.95.1

Patch Changes

  • Updated dependencies [1f1775c]:
    • @​tanstack/query-core@​5.95.1

5.95.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.95.0

5.94.5

Patch Changes

  • fix(*): resolve issue about excluded build directory (#10312)

  • Updated dependencies [4b6536d]:

    • @​tanstack/query-core@​5.94.5

... (truncated)

Commits

Updates @tanstack/vue-store from 0.8.1 to 0.9.3

Release notes

Sourced from @​tanstack/vue-store's releases.

@​tanstack/vue-store@​0.9.3

Patch Changes

  • Updated dependencies [d8b51a7]:
    • @​tanstack/store@​0.9.3

@​tanstack/vue-store@​0.9.2

Patch Changes

  • Updated dependencies [84dc3eb]:
    • @​tanstack/store@​0.9.2

@​tanstack/vue-store@​0.9.1

Patch Changes

  • Updated dependencies [77c872f]:
    • @​tanstack/store@​0.9.1

@​tanstack/vue-store@​0.9.0

Minor Changes

  • Breaking changes (#265)

    • new Store() is now createStore()
    • new Derived() is now a derived createStore():
      const derived = createStore(() => store.state * 2)
    • new Effect() removed in favor of store.subscribe():
      const { unsubscribe } = store.subscribe(() => {
        console.log(store.state)
      })
    • Uses alien-signals under the hood for efficient reactivity

Patch Changes

  • Updated dependencies [dace25f]:
    • @​tanstack/store@​0.9.0
Changelog

Sourced from @​tanstack/vue-store's changelog.

0.9.3

Patch Changes

  • Updated dependencies [d8b51a7]:
    • @​tanstack/store@​0.9.3

0.9.2

Patch Changes

  • Updated dependencies [84dc3eb]:
    • @​tanstack/store@​0.9.2

0.9.1

Patch Changes

  • Updated dependencies [77c872f]:
    • @​tanstack/store@​0.9.1

0.9.0

Minor Changes

  • Breaking changes (#265)

    • new Store() is now createStore()
    • new Derived() is now a derived createStore():
      const derived = createStore(() => store.state * 2)
    • new Effect() removed in favor of store.subscribe():
      const { unsubscribe } = store.subscribe(() => {
        console.log(store.state)
      })
    • Uses alien-signals under the hood for efficient reactivity

Patch Changes

  • Updated dependencies [dace25f]:
    • @​tanstack/store@​0.9.0
Commits

Updates @typescript-eslint/eslint-plugin from 8.56.1 to 8.58.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.58.1

8.58.1 (2026-04-08)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.58.0

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

🩹 Fixes

  • eslint-plugin: crash in no-unnecessary-type-arguments (#12163)
  • eslint-plugin: [no-extraneous-class] handle index signatures (#12142)
  • eslint-plugin: [prefer-regexp-exec] avoid fixing unknown RegExp flags (#12161)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.57.2

8.57.2 (2026-03-23)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] remove dangling closing parenthesis (#11865)
  • eslint-plugin: [array-type] ignore Array and ReadonlyArray without type arguments (#11971)
  • eslint-plugin: [no-restricted-types] flag banned generics in extends or implements (#12120)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)
  • eslint-plugin: [no-unsafe-return] false positive on unwrapping generic (#12125)

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.58.1 (2026-04-08)

🩹 Fixes

  • eslint-plugin: [no-unused-vars] fix false negative for type predicate parameter (#12004)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.58.0 (2026-03-30)

🚀 Features

  • support TypeScript 6 (#12124)

🩹 Fixes

  • eslint-plugin: [prefer-regexp-exec] avoid fixing unknown RegExp flags (#12161)
  • eslint-plugin: [no-extraneous-class] handle index signatures (#12142)
  • eslint-plugin: crash in no-unnecessary-type-arguments (#12163)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.57.2 (2026-03-23)

🩹 Fixes

  • eslint-plugin: [prefer-readonly-parameter-types] preserve type alias infomation (#11954)
  • eslint-plugin: [no-useless-default-assignme...

    Description has been truncated

…62 updates

Bumps the npm-non-breaking group with 58 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [lodash-es](https://github.com/lodash/lodash) | `4.17.23` | `4.18.1` |
| [@alova/adapter-axios](https://github.com/alovajs/alova) | `2.0.17` | `2.0.18` |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.5.2` | `0.6.0` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `20.4.3` | `20.5.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `20.4.3` | `20.5.0` |
| [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) | `11.2.8` | `11.3.2` |
| [@jspm/generator](https://github.com/jspm/jspm) | `2.11.0` | `2.13.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [@pnpm/workspace.read-manifest](https://github.com/pnpm/pnpm) | `1000.2.10` | `1000.3.1` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.92.9` | `5.96.2` |
| [@tanstack/vue-store](https://github.com/TanStack/store/tree/HEAD/packages/vue-store) | `0.8.1` | `0.9.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.58.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.58.1` |
| [@unocss/postcss](https://github.com/unocss/unocss/tree/HEAD/packages-integrations/postcss) | `66.6.4` | `66.6.8` |
| [@unocss/preset-wind4](https://github.com/unocss/unocss/tree/HEAD/packages-presets/preset-wind4) | `66.6.4` | `66.6.8` |
| [@visactor/vchart](https://github.com/VisActor/VChart/tree/HEAD/packages/vchart) | `2.0.17` | `2.0.21` |
| [@vitejs/plugin-vue-jsx](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx) | `5.1.4` | `5.1.5` |
| [@vue/shared](https://github.com/vuejs/core/tree/HEAD/packages/shared) | `3.5.18` | `3.5.32` |
| [antdv-next](https://github.com/antdv-next/antdv-next/tree/HEAD/packages/antdv-next) | `1.1.0` | `1.1.9` |
| [axios](https://github.com/axios/axios) | `1.13.6` | `1.15.0` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.19` | `1.11.20` |
| [defu](https://github.com/unjs/defu) | `6.1.4` | `6.1.7` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.3.1` | `3.3.3` |
| [element-plus](https://github.com/element-plus/element-plus) | `2.13.3` | `2.13.6` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.43.0` | `1.45.1` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.8.13` | `2.9.5` |
| [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.16.1` | `4.16.2` |
| [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `5.6.0` | `5.8.0` |
| [get-port](https://github.com/sindresorhus/get-port) | `7.1.0` | `7.2.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.8.3` | `20.8.9` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.3.2` | `16.4.0` |
| [naive-ui](https://github.com/tusen-ai/naive-ui) | `2.43.2` | `2.44.1` |
| [nitropack](https://github.com/nitrojs/nitro) | `2.13.1` | `2.13.3` |
| [playwright](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.9` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.9.0` | `2.9.5` |
| [sass](https://github.com/sass/dart-sass) | `1.97.3` | `1.99.0` |
| [sortablejs](https://github.com/SortableJS/Sortable) | `1.15.6` | `1.15.7` |
| [@types/sortablejs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/sortablejs) | `1.15.8` | `1.15.9` |
| [stylelint-config-recommended-scss](https://github.com/stylelint-scss/stylelint-config-recommended-scss) | `17.0.0` | `17.0.1` |
| [tdesign-vue-next](https://github.com/Tencent/tdesign-vue-next/tree/HEAD/packages/tdesign-vue-next) | `1.18.2` | `1.18.6` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.13` | `2.9.5` |
| [unocss](https://github.com/unocss/unocss/tree/HEAD/packages-presets/unocss) | `66.6.4` | `66.6.8` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `8.0.7` | `8.1.1` |
| [vitepress-plugin-group-icons](https://github.com/yuyinws/vitepress-plugin-group-icons) | `1.7.1` | `1.7.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.3` |
| [vue-data-ui](https://github.com/graphieros/vue-data-ui) | `3.15.9` | `3.17.11` |
| [vue-draggable-plus](https://github.com/Alfred-Skyblue/vue-draggable-plus) | `0.6.0` | `0.6.1` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.2.8` | `11.3.2` |
| [vue-router](https://github.com/vuejs/router) | `5.0.3` | `5.0.4` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.2.5` | `3.2.6` |
| [vue](https://github.com/vuejs/core) | `3.5.29` | `3.5.32` |
| [vxe-pc-ui](https://github.com/x-extends/vxe-pc-ui) | `4.13.0` | `4.13.21` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.17.49` | `4.18.11` |
| [xgplayer](https://github.com/bytedance/xgplayer) | `3.0.23` | `3.0.24` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.40.5` | `0.42.1` |
| [@iconify-json/logos](https://github.com/iconify/icon-sets) | `1.2.10` | `1.2.11` |
| [cssnano](https://github.com/cssnano/cssnano) | `7.1.2` | `7.1.4` |



Updates `lodash-es` from 4.17.23 to 4.18.1
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.23...4.18.1)

Updates `@alova/adapter-axios` from 2.0.17 to 2.0.18
- [Release notes](https://github.com/alovajs/alova/releases)
- [Commits](https://github.com/alovajs/alova/compare/@alova/adapter-axios@2.0.17...@alova/adapter-axios@2.0.18)

Updates `@changesets/changelog-github` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/read@0.5.2...@changesets/changelog-github@0.6.0)

Updates `@commitlint/cli` from 20.4.3 to 20.5.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.5.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 20.4.3 to 20.5.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.5.0/@commitlint/config-conventional)

Updates `@intlify/core-base` from 11.2.8 to 11.3.2
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.3.2/packages/core)

Updates `@jspm/generator` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/jspm/jspm/releases)
- [Commits](https://github.com/jspm/jspm/commits/@jspm/generator@2.13.0)

Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `@pnpm/workspace.read-manifest` from 1000.2.10 to 1000.3.1
- [Release notes](https://github.com/pnpm/pnpm/releases)
- [Commits](https://github.com/pnpm/pnpm/commits)

Updates `@tanstack/vue-query` from 5.92.9 to 5.96.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/vue-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/vue-query@5.96.2/packages/vue-query)

Updates `@tanstack/vue-store` from 0.8.1 to 0.9.3
- [Release notes](https://github.com/TanStack/store/releases)
- [Changelog](https://github.com/TanStack/store/blob/main/packages/vue-store/CHANGELOG.md)
- [Commits](https://github.com/TanStack/store/commits/@tanstack/vue-store@0.9.3/packages/vue-store)

Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.58.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.56.1 to 8.58.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.1/packages/parser)

Updates `@unocss/postcss` from 66.6.4 to 66.6.8
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.6.8/packages-integrations/postcss)

Updates `@unocss/preset-wind4` from 66.6.4 to 66.6.8
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.6.8/packages-presets/preset-wind4)

Updates `@visactor/vchart` from 2.0.17 to 2.0.21
- [Release notes](https://github.com/VisActor/VChart/releases)
- [Changelog](https://github.com/VisActor/VChart/blob/develop/packages/vchart/CHANGELOG.md)
- [Commits](https://github.com/VisActor/VChart/commits/HEAD/packages/vchart)

Updates `@vitejs/plugin-vue-jsx` from 5.1.4 to 5.1.5
- [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue-jsx/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@5.1.5/packages/plugin-vue-jsx)

Updates `@vue/shared` from 3.5.18 to 3.5.32
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.32/packages/shared)

Updates `antdv-next` from 1.1.0 to 1.1.9
- [Release notes](https://github.com/antdv-next/antdv-next/releases)
- [Commits](https://github.com/antdv-next/antdv-next/commits/antdv-next@1.1.9/packages/antdv-next)

Updates `axios` from 1.13.6 to 1.15.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.6...v1.15.0)

Updates `dayjs` from 1.11.19 to 1.11.20
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.19...v1.11.20)

Updates `defu` from 6.1.4 to 6.1.7
- [Release notes](https://github.com/unjs/defu/releases)
- [Changelog](https://github.com/unjs/defu/blob/main/CHANGELOG.md)
- [Commits](unjs/defu@v6.1.4...v6.1.7)

Updates `dompurify` from 3.3.1 to 3.3.3
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.3.1...3.3.3)

Updates `element-plus` from 2.13.3 to 2.13.6
- [Release notes](https://github.com/element-plus/element-plus/releases)
- [Changelog](https://github.com/element-plus/element-plus/blob/dev/CHANGELOG.en-US.md)
- [Commits](element-plus/element-plus@2.13.3...2.13.6)

Updates `es-toolkit` from 1.43.0 to 1.45.1
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.43.0...v1.45.1)

Updates `eslint-config-turbo` from 2.8.13 to 2.9.5
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.9.5/packages/eslint-config-turbo)

Updates `eslint-plugin-import-x` from 4.16.1 to 4.16.2
- [Release notes](https://github.com/un-ts/eslint-plugin-import-x/releases)
- [Changelog](https://github.com/un-ts/eslint-plugin-import-x/blob/master/CHANGELOG.md)
- [Commits](un-ts/eslint-plugin-import-x@v4.16.1...v4.16.2)

Updates `eslint-plugin-perfectionist` from 5.6.0 to 5.8.0
- [Release notes](https://github.com/azat-io/eslint-plugin-perfectionist/releases)
- [Changelog](https://github.com/azat-io/eslint-plugin-perfectionist/blob/main/changelog.md)
- [Commits](azat-io/eslint-plugin-perfectionist@v5.6.0...v5.8.0)

Updates `get-port` from 7.1.0 to 7.2.0
- [Release notes](https://github.com/sindresorhus/get-port/releases)
- [Commits](sindresorhus/get-port@v7.1.0...v7.2.0)

Updates `happy-dom` from 20.8.3 to 20.8.9
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.8.3...v20.8.9)

Updates `lint-staged` from 16.3.2 to 16.4.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.3.2...v16.4.0)

Updates `naive-ui` from 2.43.2 to 2.44.1
- [Changelog](https://github.com/tusen-ai/naive-ui/blob/main/CHANGELOG.en-US.md)
- [Commits](tusen-ai/naive-ui@v2.43.2...v2.44.1)

Updates `nitropack` from 2.13.1 to 2.13.3
- [Release notes](https://github.com/nitrojs/nitro/releases)
- [Changelog](https://github.com/nitrojs/nitro/blob/main/changelog.config.ts)
- [Commits](nitrojs/nitro@v2.13.1...v2.13.3)

Updates `playwright` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `postcss` from 8.5.6 to 8.5.9
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.6...8.5.9)

Updates `qs` from 6.14.0 to 6.15.0
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.14.0...v6.15.0)

Updates `reka-ui` from 2.9.0 to 2.9.5
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.9.0...v2.9.5)

Updates `rollup` from 2.79.2 to 2.80.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/v2.80.0/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.2...v2.80.0)

Updates `sass` from 1.97.3 to 1.99.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.97.3...1.99.0)

Updates `sortablejs` from 1.15.6 to 1.15.7
- [Release notes](https://github.com/SortableJS/Sortable/releases)
- [Commits](SortableJS/Sortable@1.15.6...1.15.7)

Updates `@types/sortablejs` from 1.15.8 to 1.15.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/sortablejs)

Updates `stylelint-config-recommended-scss` from 17.0.0 to 17.0.1
- [Release notes](https://github.com/stylelint-scss/stylelint-config-recommended-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-recommended-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-recommended-scss@v17.0.0...v17.0.1)

Updates `tdesign-vue-next` from 1.18.2 to 1.18.6
- [Release notes](https://github.com/Tencent/tdesign-vue-next/releases)
- [Changelog](https://github.com/Tencent/tdesign-vue-next/blob/develop/packages/tdesign-vue-next/CHANGELOG.en-US.md)
- [Commits](https://github.com/Tencent/tdesign-vue-next/commits/tdesign-vue-next@1.18.6/packages/tdesign-vue-next)

Updates `turbo` from 2.8.13 to 2.9.5
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.13...v2.9.5)

Updates `unocss` from 66.6.4 to 66.6.8
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.6.8/packages-presets/unocss)

Updates `vite-plugin-vue-devtools` from 8.0.7 to 8.1.1
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v8.1.1/packages/vite)

Updates `vitepress-plugin-group-icons` from 1.7.1 to 1.7.3
- [Release notes](https://github.com/yuyinws/vitepress-plugin-group-icons/releases)
- [Commits](yuyinws/vitepress-plugin-group-icons@v1.7.1...v1.7.3)

Updates `vitest` from 4.0.18 to 4.1.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.3/packages/vitest)

Updates `vue-data-ui` from 3.15.9 to 3.17.11
- [Release notes](https://github.com/graphieros/vue-data-ui/releases)
- [Changelog](https://github.com/graphieros/vue-data-ui/blob/master/CHANGELOG.md)
- [Commits](graphieros/vue-data-ui@v3.15.9...v3.17.11)

Updates `vue-draggable-plus` from 0.6.0 to 0.6.1
- [Release notes](https://github.com/Alfred-Skyblue/vue-draggable-plus/releases)
- [Commits](Alfred-Skyblue/vue-draggable-plus@0.6.0...0.6.1)

Updates `vue-i18n` from 11.2.8 to 11.3.2
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.3.2/packages/vue-i18n)

Updates `vue-router` from 5.0.3 to 5.0.4
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v5.0.3...v5.0.4)

Updates `vue-tsc` from 3.2.5 to 3.2.6
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.2.6/packages/tsc)

Updates `vue` from 3.5.29 to 3.5.32
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.29...v3.5.32)

Updates `vxe-pc-ui` from 4.13.0 to 4.13.21
- [Release notes](https://github.com/x-extends/vxe-pc-ui/releases)
- [Commits](https://github.com/x-extends/vxe-pc-ui/commits)

Updates `vxe-table` from 4.17.49 to 4.18.11
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](https://github.com/x-extends/vxe-table/commits)

Updates `xgplayer` from 3.0.23 to 3.0.24
- [Release notes](https://github.com/bytedance/xgplayer/releases)
- [Commits](bytedance/xgplayer@v3.0.23...v3.0.24)

Updates `@ast-grep/napi` from 0.40.5 to 0.42.1
- [Release notes](https://github.com/ast-grep/ast-grep/releases)
- [Changelog](https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md)
- [Commits](ast-grep/ast-grep@0.40.5...0.42.1)

Updates `@iconify-json/logos` from 1.2.10 to 1.2.11
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@vue/reactivity` from 3.5.29 to 3.5.32
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.32/packages/reactivity)

Updates `cssnano` from 7.1.2 to 7.1.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano@7.1.2...cssnano@7.1.4)

Updates `h3` from 1.15.5 to 1.15.11
- [Release notes](https://github.com/h3js/h3/releases)
- [Changelog](https://github.com/h3js/h3/blob/v1.15.11/CHANGELOG.md)
- [Commits](h3js/h3@v1.15.5...v1.15.11)

---
updated-dependencies:
- dependency-name: lodash-es
  dependency-version: 4.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@alova/adapter-axios"
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@changesets/changelog-github"
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@commitlint/cli"
  dependency-version: 20.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@intlify/core-base"
  dependency-version: 11.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@jspm/generator"
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@pnpm/workspace.read-manifest"
  dependency-version: 1000.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.96.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@tanstack/vue-store"
  dependency-version: 0.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.58.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.58.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@unocss/postcss"
  dependency-version: 66.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@unocss/preset-wind4"
  dependency-version: 66.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@visactor/vchart"
  dependency-version: 2.0.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@vitejs/plugin-vue-jsx"
  dependency-version: 5.1.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@vue/shared"
  dependency-version: 3.5.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: antdv-next
  dependency-version: 1.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: axios
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: dayjs
  dependency-version: 1.11.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: defu
  dependency-version: 6.1.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: dompurify
  dependency-version: 3.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: element-plus
  dependency-version: 2.13.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: es-toolkit
  dependency-version: 1.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: eslint-config-turbo
  dependency-version: 2.9.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: eslint-plugin-import-x
  dependency-version: 4.16.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: eslint-plugin-perfectionist
  dependency-version: 5.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: get-port
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: happy-dom
  dependency-version: 20.8.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: lint-staged
  dependency-version: 16.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: naive-ui
  dependency-version: 2.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: nitropack
  dependency-version: 2.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: playwright
  dependency-version: 1.59.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: postcss
  dependency-version: 8.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: qs
  dependency-version: 6.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: reka-ui
  dependency-version: 2.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: rollup
  dependency-version: 2.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: sass
  dependency-version: 1.99.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: sortablejs
  dependency-version: 1.15.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@types/sortablejs"
  dependency-version: 1.15.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: stylelint-config-recommended-scss
  dependency-version: 17.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: tdesign-vue-next
  dependency-version: 1.18.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: turbo
  dependency-version: 2.9.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: unocss
  dependency-version: 66.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vite-plugin-vue-devtools
  dependency-version: 8.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: vitepress-plugin-group-icons
  dependency-version: 1.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vitest
  dependency-version: 4.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: vue-data-ui
  dependency-version: 3.17.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: vue-draggable-plus
  dependency-version: 0.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vue-i18n
  dependency-version: 11.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: vue-router
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vue-tsc
  dependency-version: 3.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vue
  dependency-version: 3.5.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vxe-pc-ui
  dependency-version: 4.13.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: vxe-table
  dependency-version: 4.18.11
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: xgplayer
  dependency-version: 3.0.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.42.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-breaking
- dependency-name: "@iconify-json/logos"
  dependency-version: 1.2.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: "@vue/reactivity"
  dependency-version: 3.5.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: cssnano
  dependency-version: 7.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
- dependency-name: h3
  dependency-version: 1.15.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-breaking
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 9, 2026
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Apr 9, 2026

⚠️ No Changeset found

Latest commit: c18c5b0

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants