Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2025

Bumps the non-breaking-changes group with 29 updates in the / directory:

Package From To
vue 3.5.24 3.5.25
@changesets/changelog-github 0.5.1 0.5.2
@changesets/cli 2.29.7 2.29.8
@iconify/json 2.2.406 2.2.413
@intlify/core-base 11.1.12 11.2.2
@playwright/test 1.56.1 1.57.0
@pnpm/workspace.read-manifest 1000.2.6 1000.2.7
@typescript-eslint/eslint-plugin 8.46.4 8.48.0
@typescript-eslint/parser 8.46.4 8.48.0
@vite-pwa/vitepress 1.0.1 1.1.0
@vitejs/plugin-vue-jsx 5.1.1 5.1.2
@vue/shared 3.5.23 3.5.25
es-toolkit 1.41.0 1.42.0
eslint-plugin-vue 10.5.1 10.6.2
lucide-vue-next 0.553.0 0.555.0
naive-ui 2.43.1 2.43.2
playwright 1.56.1 1.57.0
prettier-plugin-tailwindcss 0.7.1 0.7.2
reka-ui 2.6.0 2.6.1
rimraf 6.1.0 6.1.2
sass 1.94.0 1.94.2
stylelint 16.25.0 16.26.1
typescript 5.8.2 5.9.3
vite-plugin-pwa 1.1.0 1.2.0
vue-i18n 11.1.12 11.2.2
vxe-pc-ui 4.10.22 4.10.39
vxe-table 4.17.14 4.17.22
zod-defaults 0.1.3 0.2.3
@ast-grep/napi 0.39.9 0.40.0

Updates vue from 3.5.24 to 3.5.25

Release notes

Sourced from vue's releases.

v3.5.25

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.25 (2025-11-24)

Bug Fixes

Commits
  • 25ebe3a release: v3.5.25
  • c0f63dd fix(suspense): defer clearing fallback vnode el in case it has dirs (#14080)
  • 301020b fix(reactivity): correctly wrap iterated array items to preserve their readon...
  • 0d2357e fix(reactivity): toRef edge cases for ref unwrapping (#12420)
  • 247b2c2 fix(provide): warn when using provide after mounting (#13954)
  • b50eb68 dx(runtime-core): check current and parent components in formatComponentName ...
  • 5af3dd9 refactor(runtime-core): check props rather than propsOptions[0] (#13514)
  • 2214f7a fix(compiler): share logic for comments and whitespace (#13550)
  • 8f82f23 fix(runtime-core): keep options API typing intact when expose is used (#14118)
  • 83f6ab6 chore(compiler-ssr): move defaultProps initialization into input tag bran...
  • Additional commits viewable in compare view

Updates @changesets/changelog-github from 0.5.1 to 0.5.2

Commits
  • 4f8d76c Version Packages (#670)
  • d8f0e68 Fixed an issue with parsing --json output when publishing (#676)
  • fe8db75 Upgrade @manypkg/get-packages dependencies to latest version (#667)
  • 9a993ba Add resolutions to the PackageJSON type (#668)
  • a8c8a03 Version Packages (#663)
  • 5413f3e Fixed an issue with adding [undefined] to the generated changelog (#660)
  • 74dda8c Add support for workspace:~ and workspace:^ (#585)
  • 2b49c39 Implement changeset tag and getAllTags (#634)
  • 09a7dab Make master branch rename suggestion more clear (#638)
  • a3628d5 Helpful note about status command (#639)
  • Additional commits viewable in compare view

Updates @changesets/cli from 2.29.7 to 2.29.8

Commits

Updates @iconify/json from 2.2.406 to 2.2.413

Commits
  • 3bff805 Update 8 icon sets
  • 47d268d Update 6 icon sets
  • 2482731 Update 9 icon sets
  • fc2a37f Merge pull request #242 from iconify/renovate/typescript-eslint-monorepo
  • e1dc0f7 Merge pull request #241 from iconify/renovate/vitest-monorepo
  • d21c7d1 Merge pull request #244 from iconify/renovate/rimraf-6.x
  • ee5186c chore(deps): update dependency vitest to ^4.0.14
  • 32b3df1 chore(deps): update dependency @​typescript-eslint/eslint-plugin to ^8.48.0
  • cd8bd51 Update 9 icon sets
  • b794e0a Update 12 icon sets
  • Additional commits viewable in compare view

Updates @intlify/core-base from 11.1.12 to 11.2.2

Release notes

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

v11.2.2

What's Changed

🐛 Bug Fixes

Full Changelog: intlify/vue-i18n@v11.2.1...v11.2.2

v11.2.1

Full Changelog: intlify/vue-i18n@v11.2.0...v11.2.1

v11.2.0

What's Changed

🌟 Features

⚡ Improvement Features

Full Changelog: intlify/vue-i18n@v11.1.12...v11.2.0

Commits

Updates @playwright/test from 1.56.1 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Updates @pnpm/workspace.read-manifest from 1000.2.6 to 1000.2.7

Commits

Updates @typescript-eslint/eslint-plugin from 8.46.4 to 8.48.0

Release notes

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

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

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

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Changelog

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

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)

🩹 Fixes

  • typescript-estree: disallow binding patterns in parameter properties (#11760)
  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)

❤️ Thank You

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

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Commits
  • 6fb1551 chore(release): publish 8.48.0
  • d26e9de chore(eslint-plugin): correct TODO comment on the wrong line (#11773)
  • 5f04910 fix(typescript-estree): disallow binding patterns in parameter properties (#1...
  • a4dc42a chore: migrate to nx 22 (#11780)
  • 2ffb168 feat(eslint-plugin): [no-redundant-type-constituents] use assignability check...
  • 5ea21f1 fix(eslint-plugin): [consistent-generic-constructors] ignore when constructor...
  • 28cf803 chore(release): publish 8.47.0
  • 6c6db24 feat(eslint-plugin): [no-unused-private-class-members] new extension rule (#1...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.46.4 to 8.48.0

Release notes

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

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

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

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

Changelog

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

8.48.0 (2025-11-24)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

8.47.0 (2025-11-17)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

Commits

Updates @vite-pwa/vitepress from 1.0.1 to 1.1.0

Release notes

Sourced from @​vite-pwa/vitepress's releases.

v1.1.0

No significant changes

    View changes on GitHub
Commits

Updates @vitejs/plugin-vue-jsx from 5.1.1 to 5.1.2

Release notes

Sourced from @​vitejs/plugin-vue-jsx's releases.

plugin-vue@5.1.2

Please refer to CHANGELOG.md for details.

plugin-vue-jsx@5.1.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from @​vitejs/plugin-vue-jsx's changelog.

5.1.2 (2025-11-19)

Bug Fixes

  • deps: update all non-major dependencies (#663) (dbcd1d0)
  • deps: update all non-major dependencies (#665) (428dde0)
  • deps: update all non-major dependencies (#671) (59e0a51)
  • deps: update all non-major dependencies (#679) (f226dab)
  • deps: update all non-major dependencies (#685) (d990206)
  • deps: update all non-major dependencies (#688) (46edd7e)
  • deps: update all non-major dependencies (#692) (13accf3)
  • deps: update all non-major dependencies (#694) (9c77f01)
  • deps: update all non-major dependencies (#704) (ecb581a)
  • deps: update dependency @​vue/babel-plugin-jsx to v2 (#683) (dd247b5)
Commits

Updates @vue/shared from 3.5.23 to 3.5.25

Release notes

Sourced from @​vue/shared's releases.

v3.5.25

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.24

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from @​vue/shared's changelog.

3.5.25 (2025-11-24)

Bug Fixes

3.5.24 (2025-11-07)

Reverts

Commits

Updates es-toolkit from 1.41.0 to 1.42.0

Release notes

Sourced from es-toolkit's releases.

v1.42.0

Released on November 17th, 2025.

  • Added new async utilities: filterAsync, flatMapAsync, forEachAsync, mapAsync, reduceAsync, and limitAsync for handling asynchronous operations.
  • Exported ThrottleOptions and DebounceOptions interfaces for better type support.
  • Fixed isFinite to implement type predicate to narrow type to number.
  • Fixed isSafeInteger to implement type predicate to narrow type to number.
  • Fixed omit to prevent adding index properties to array-like objects.
  • Fixed mergeWith to remove unnecessary nullish coalescing for 100% branch coverage.
  • Fixed compat/updateWith to remove unreachable code and add prototype pollution test.
  • Updated documentation headings for consistency.
  • Improved test coverage for compat/mergeWith, compat/unset, get, toMerged, mergeWith, and compat/intersectionBy with additional edge cases and security tests.

We sincerely thank @​Debbl, @​wo-o29, @​raon0211, @​Yeom-JinHo, @​sukvvon, and @​D-Sketon for their contributions. We appreciate your great efforts!

Changelog

Sourced from es-toolkit's changelog.

Version v1.42.0

Released on November 17th, 2025.

  • Added new async utilities: filterAsync, flatMapAsync, forEachAsync, mapAsync, reduceAsync, and limitAsync for handling asynchronous operations.
  • Exported ThrottleOptions and DebounceOptions interfaces for better type support.
  • Fixed isFinite to implement type predicate to narrow type to number.
  • Fixed isSafeInteger to implement type predicate to narrow type to number.
  • Fixed omit to prevent adding index properties to array-like objects.
  • Fixed mergeWith to remove unnecessary nullish coalescing for 100% branch coverage.
  • Fixed compat/updateWith to remove unreachable code and add prototype pollution test.
  • Updated documentation headings for consistency.
  • Improved test coverage for compat/mergeWith, compat/unset, get, toMerged, mergeWith, and compat/intersectionBy with additional edge cases and security tests.

We sincerely thank @​Debbl, @​wo-o29, @​raon0211, @​Yeom-JinHo, @​sukvvon, and @​D-Sketon for their contributions. We appreciate your great efforts!

Commits
  • 2fe1564 v1.42.0
  • a61e107 feat: export ThrottleOptions and DebounceOptions interfaces (#1507)
  • 16a73d2 test(compat/mergeWith): add missing test cases for edge cases and improve cov...
  • ef6ab6b fix(compat/updateWith): remove unreachable code and add prototype pollution t...
  • 0be8841 test(compat/unset): add comprehensive prototype pollution tests (#1519)
  • c6d4643 test: add proto security and edge case tests for get function (#1520)
  • 506695c fix(mergeWith): Remove unnecessary nullish coalescing to achieve 100% branch ...
  • 5d098e8 [autofix.ci] apply automated fixes
  • 3ce0b3a fix lint
  • f80f90a Add functions to barrel file
  • Additional commits viewable in compare view

Updates eslint-plugin-vue from 10.5.1 to 10.6.2

Release notes

Sourced from eslint-plugin-vue's releases.

v10.6.2

Patch Changes

v10.6.1

Patch Changes

v10.6.0

Minor Changes

Patch Changes

Changelog

Sourced from eslint-plugin-vue's changelog.

10.6.2

Patch Changes

10.6.1

Patch Changes

10.6.0

Minor Changes

Patch Changes

Commits
  • 701bb09 Version Packages (#2973)
  • bd4abe5 fix(vue/no-duplicate-class-names): improve non-intersecting conditions and co...
  • 2ac139a refactor(prefer-use-template-ref): optimize performance and type safety (#2982)
  • 7523350 test: remove type in errors (#2966)
  • db724d1 Update Prettier to v3.7 (#2981)
  • 9e4dde2 docs(no-async-in-computed-properties): suggest computedAsync instead of `vu...
  • 083aafe chore(lint): setup eslint-config-flat-gitignore (#2963)
  • 76c51ac chore: remove ESLint compatibility code (#2965)
  • 58e2197 fix(vue/script-indent): false positives for TSImportType (#2969)
  • 3991e41 Fix formatting in changelog
  • 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 eslint-plugin-vue since your current version.


Updates lucide-vue-next from 0.553.0 to 0.555.0

Release notes

Sourced from lucide-vue-next's releases.

Version 0.555.0

What's Changed

Full Changelog: lucide-icons/lucide@0.554.0...0.555.0

Version 0.554.0

What's Changed

Breaking change

For lucide-react and lucide-solid, imports for Fingerprint icon are changed to FingerprintPattern.

Lucide React

- import { Fingerprint } from "lucide-react";
+ import { FingerprintPattern } from "lucide-react";

Lucide Solid

- import { Fingerprint } from "lucide/solid";
+ import { FingerprintPattern } from "lucide/solid";
// Or

import Fingerprint from "lucide/solid/icons/fingerprint";


import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";

New Contributors

Full Changelog: lucide-icons/lucide@0.553.0...0.554.0

Commits

Updates naive-ui from 2.43.1 to 2.43.2

Changelog

Sourced from naive-ui's changelog.

2.43.2

Fixes

  • Fix seemly dependency version range allows incompatible versions.
  • Fix n-progress style is incorrect after using the dashboard mode exceeding 100%, closes #6627
  • Fix n-modal's outside content can't be interacted with show-mask is set to false.

Feats

  • n-date-picker prop defaultTime can also accept a function that will return a formatted string
  • n-steps adds content-placement prop, closes #7044.
Commits
  • d3c78cf 2.43.2
  • de1d707 fix: new csstype package version introduced from jsdom causes error

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 2, 2025
…ith 30 updates

Bumps the non-breaking-changes group with 29 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [vue](https://github.com/vuejs/core) | `3.5.24` | `3.5.25` |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.5.1` | `0.5.2` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.29.7` | `2.29.8` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.406` | `2.2.413` |
| [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) | `11.1.12` | `11.2.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.1` | `1.57.0` |
| [@pnpm/workspace.read-manifest](https://github.com/pnpm/pnpm) | `1000.2.6` | `1000.2.7` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.46.4` | `8.48.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.46.4` | `8.48.0` |
| [@vite-pwa/vitepress](https://github.com/vite-pwa/vitepress) | `1.0.1` | `1.1.0` |
| [@vitejs/plugin-vue-jsx](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue-jsx) | `5.1.1` | `5.1.2` |
| [@vue/shared](https://github.com/vuejs/core/tree/HEAD/packages/shared) | `3.5.23` | `3.5.25` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.41.0` | `1.42.0` |
| [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) | `10.5.1` | `10.6.2` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.553.0` | `0.555.0` |
| [naive-ui](https://github.com/tusen-ai/naive-ui) | `2.43.1` | `2.43.2` |
| [playwright](https://github.com/microsoft/playwright) | `1.56.1` | `1.57.0` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.7.1` | `0.7.2` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.6.0` | `2.6.1` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.1.0` | `6.1.2` |
| [sass](https://github.com/sass/dart-sass) | `1.94.0` | `1.94.2` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.25.0` | `16.26.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.9.3` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `1.1.0` | `1.2.0` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.1.12` | `11.2.2` |
| [vxe-pc-ui](https://github.com/x-extends/vxe-pc-ui) | `4.10.22` | `4.10.39` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.17.14` | `4.17.22` |
| [zod-defaults](https://github.com/Ced-Sharp/zod-defaults) | `0.1.3` | `0.2.3` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.39.9` | `0.40.0` |



Updates `vue` from 3.5.24 to 3.5.25
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.24...v3.5.25)

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

Updates `@changesets/cli` from 2.29.7 to 2.29.8
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/commits)

Updates `@iconify/json` from 2.2.406 to 2.2.413
- [Commits](iconify/icon-sets@2.2.406...2.2.413)

Updates `@intlify/core-base` from 11.1.12 to 11.2.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.2.2/packages/core)

Updates `@playwright/test` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

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

Updates `@typescript-eslint/eslint-plugin` from 8.46.4 to 8.48.0
- [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.48.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.46.4 to 8.48.0
- [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.48.0/packages/parser)

Updates `@vite-pwa/vitepress` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/vite-pwa/vitepress/releases)
- [Commits](vite-pwa/vitepress@v1.0.1...v1.1.0)

Updates `@vitejs/plugin-vue-jsx` from 5.1.1 to 5.1.2
- [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.2/packages/plugin-vue-jsx)

Updates `@vue/shared` from 3.5.23 to 3.5.25
- [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.25/packages/shared)

Updates `es-toolkit` from 1.41.0 to 1.42.0
- [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.41.0...v1.42.0)

Updates `eslint-plugin-vue` from 10.5.1 to 10.6.2
- [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
- [Changelog](https://github.com/vuejs/eslint-plugin-vue/blob/master/CHANGELOG.md)
- [Commits](vuejs/eslint-plugin-vue@v10.5.1...v10.6.2)

Updates `lucide-vue-next` from 0.553.0 to 0.555.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.555.0/packages/lucide-vue-next)

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

Updates `playwright` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

Updates `prettier-plugin-tailwindcss` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.7.1...v0.7.2)

Updates `reka-ui` from 2.6.0 to 2.6.1
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.6.0...v2.6.1)

Updates `rimraf` from 6.1.0 to 6.1.2
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.1.0...v6.1.2)

Updates `sass` from 1.94.0 to 1.94.2
- [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.94.0...1.94.2)

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

Updates `typescript` from 5.8.2 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.8.2...v5.9.3)

Updates `vite-plugin-pwa` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v1.1.0...v1.2.0)

Updates `vue-i18n` from 11.1.12 to 11.2.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.2.2/packages/vue-i18n)

Updates `vxe-pc-ui` from 4.10.22 to 4.10.39
- [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.14 to 4.17.22
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](x-extends/vxe-table@4.17.14...4.17.22)

Updates `zod-defaults` from 0.1.3 to 0.2.3
- [Commits](https://github.com/Ced-Sharp/zod-defaults/commits)

Updates `@ast-grep/napi` from 0.39.9 to 0.40.0
- [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.39.9...0.40.0)

Updates `@vue/reactivity` from 3.5.24 to 3.5.25
- [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.25/packages/reactivity)

---
updated-dependencies:
- dependency-name: vue
  dependency-version: 3.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@changesets/changelog-github"
  dependency-version: 0.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@iconify/json"
  dependency-version: 2.2.413
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@intlify/core-base"
  dependency-version: 11.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@pnpm/workspace.read-manifest"
  dependency-version: 1000.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@vite-pwa/vitepress"
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@vitejs/plugin-vue-jsx"
  dependency-version: 5.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@vue/shared"
  dependency-version: 3.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: es-toolkit
  dependency-version: 1.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-vue
  dependency-version: 10.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: lucide-vue-next
  dependency-version: 0.555.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: naive-ui
  dependency-version: 2.43.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: playwright
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: reka-ui
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: rimraf
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: sass
  dependency-version: 1.94.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: stylelint
  dependency-version: 16.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vite-plugin-pwa
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vue-i18n
  dependency-version: 11.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vxe-pc-ui
  dependency-version: 4.10.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vxe-table
  dependency-version: 4.17.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: zod-defaults
  dependency-version: 0.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@vue/reactivity"
  dependency-version: 3.5.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/non-breaking-changes-f622be61aa branch from 669bb98 to 89ddc67 Compare December 3, 2025 01:38
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 4, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-breaking-changes-f622be61aa branch December 4, 2025 01:38
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.

1 participant