Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the non-breaking-changes group across 1 directory with 59 updates #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

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

Package From To
@changesets/changelog-github 0.5.0 0.5.1
@changesets/cli 2.27.11 2.28.1
@clack/prompts 0.9.1 0.10.0
@commitlint/cli 19.6.1 19.7.1
@commitlint/config-conventional 19.6.0 19.7.1
@eslint/js 9.17.0 9.21.0
@faker-js/faker 9.3.0 9.5.1
@iconify/json 2.2.293 2.2.312
@intlify/core-base 11.0.1 11.1.1
@jspm/generator 2.4.2 2.5.1
@nolebase/vitepress-plugin-git-changelog 2.12.0 2.15.0
@playwright/test 1.49.1 1.50.1
@pnpm/workspace.read-manifest 1000.0.1 1000.1.0
@stylistic/stylelint-plugin 3.1.1 3.1.2
@tanstack/vue-query 5.62.16 5.66.11
@types/jsonwebtoken 9.0.7 9.0.9
@typescript-eslint/eslint-plugin 8.19.1 8.25.0
@typescript-eslint/parser 8.19.1 8.25.0
axios 1.7.9 1.8.1
cspell 8.17.1 8.17.5
element-plus 2.9.2 2.9.5
eslint-config-turbo 2.3.3 2.4.4
eslint-plugin-jsdoc 50.6.1 50.6.3
eslint-plugin-jsonc 2.18.2 2.19.1
eslint-plugin-n 17.15.1 17.16.1
eslint-plugin-perfectionist 4.6.0 4.9.0
eslint-plugin-prettier 5.2.1 5.2.3
eslint 9.17.0 9.21.0
h3 1.13.0 1.15.1
lint-staged 15.3.0 15.4.3
lucide-vue-next 0.469.0 0.477.0
ora 8.1.1 8.2.0
playwright 1.49.1 1.50.1
postcss-html 1.7.0 1.8.0
postcss-preset-env 10.1.3 10.1.5
postcss 8.4.49 8.5.3
prettier-plugin-tailwindcss 0.6.9 0.6.11
publint 0.2.12 0.3.7
radix-vue 1.9.12 1.9.17
sass 1.83.1 1.85.1
stylelint-config-recommended-vue 1.5.0 1.6.0
stylelint-prettier 5.0.2 5.0.3
stylelint-scss 6.10.0 6.11.1
stylelint 16.12.0 16.15.0
turbo 2.3.3 2.4.4
typescript 5.4.2 5.8.2
unbuild 3.2.0 3.5.0
unplugin-element-plus 0.9.0 0.9.1
vite-plugin-dts 4.4.0 4.5.1
vite-plugin-vue-devtools 7.7.0 7.7.2
vitepress-plugin-group-icons 1.3.3 1.3.6
vitepress 1.5.0 1.6.3
vue-i18n 11.0.1 11.1.1
vue-tsc 2.1.10 2.2.8
vxe-pc-ui 4.3.67 4.3.99
vxe-table 4.10.0 4.11.15
watermark-js-plus 1.5.7 1.5.8
zod 3.24.1 3.24.2
@ast-grep/napi 0.32.3 0.35.0

Updates @changesets/changelog-github from 0.5.0 to 0.5.1

Release notes

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

@​changesets/changelog-github@​0.5.1

Patch Changes

  • Updated dependencies [84a4a1b]:
    • @​changesets/types@​6.1.0
Commits

Updates @changesets/cli from 2.27.11 to 2.28.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.28.1

Patch Changes

  • Updated dependencies [b9df596]:
    • @​changesets/config@​3.1.1
    • @​changesets/apply-release-plan@​7.0.10
    • @​changesets/get-release-plan@​4.0.8

@​changesets/cli@​2.28.0

Minor Changes

Patch Changes

  • Updated dependencies [84a4a1b, 84a4a1b]:
    • @​changesets/types@​6.1.0
    • @​changesets/config@​3.1.0
    • @​changesets/write@​0.4.0
    • @​changesets/apply-release-plan@​7.0.9
    • @​changesets/assemble-release-plan@​6.0.6
    • @​changesets/changelog-git@​0.2.1
    • @​changesets/get-dependents-graph@​2.1.3
    • @​changesets/get-release-plan@​4.0.7
    • @​changesets/pre@​2.0.2
    • @​changesets/read@​0.6.3
    • @​changesets/should-skip-package@​0.1.2

@​changesets/cli@​2.27.12

Patch Changes

Commits

Updates @clack/prompts from 0.9.1 to 0.10.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    const spin = p.spinner({ indicator: "timer" });
    spin.start("Loading");
    await sleep(3000);
    spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    await p.stream.step(
    (async function* () {
    yield* generateLLMResponse(question);
    })()
    );

Changelog

Sourced from @​clack/prompts's changelog.

0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    const spin = p.spinner({ indicator: "timer" });
    spin.start("Loading");
    await sleep(3000);
    spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    await p.stream.step(
    (async function* () {
    yield* generateLLMResponse(question);
    })()
    );

Commits

Updates @commitlint/cli from 19.6.1 to 19.7.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.7.1

19.7.1 (2025-02-02)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.0...v19.7.1

v19.7.0

19.7.0 (2025-01-04)

Features

#Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.6.1...v19.7.0

Changelog

Sourced from @​commitlint/cli's changelog.

19.7.1 (2025-02-02)

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

Commits

Updates @commitlint/config-conventional from 19.6.0 to 19.7.1

Release notes

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

v19.7.1

19.7.1 (2025-02-02)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.0...v19.7.1

v19.7.0

19.7.0 (2025-01-04)

Features

#Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.6.1...v19.7.0

v19.6.1

19.6.1 (2024-12-15)

Bug Fixes

Chore & docs

New Contributors

... (truncated)

Changelog

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

19.7.1 (2025-02-02)

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

Commits

Updates @eslint/js from 9.17.0 to 9.21.0

Release notes

Sourced from @​eslint/js's releases.

v9.21.0

Features

  • 418717f feat: introduce new deprecated types for rules (#19238) (fnx)
  • 5c5b802 feat: Add --ext CLI option (#19405) (Milos Djermanovic)

Bug Fixes

  • db5340d fix: update missing plugin message template (#19445) (Milos Djermanovic)
  • d8ffdd4 fix: do not exit process on rule crash (#19436) (Francesco Trotta)

Documentation

  • c5561ea docs: Update README (GitHub Actions Bot)
  • 80b0485 docs: replace var with let and const in rule example (#19434) (Tanuj Kanti)
  • f67d5e8 docs: Update README (GitHub Actions Bot)
  • 75afc61 docs: Update README (GitHub Actions Bot)
  • 0636cab docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)
  • dd7d930 docs: Update README (GitHub Actions Bot)

Chores

  • a8c9a9f chore: update @eslint/eslintrc and @eslint/js (#19453) (Francesco Trotta)
  • 265e0cf chore: package.json update for @​eslint/js release (Jenkins)
  • 3401b85 test: add test for Rule.ReportDescriptor type (#19449) (Francesco Trotta)
  • e497aa7 chore: update rewrite dependencies (#19448) (Francesco Trotta)
  • dab5478 chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)
  • ebfe2eb chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)
  • 5fd211d test: processors can return subpaths (#19425) (Milos Djermanovic)

v9.20.1

Bug Fixes

Documentation

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)

v9.20.0

Features

  • e89a54a feat: change behavior of inactive flags (#19386) (Milos Djermanovic)

Bug Fixes

  • 91d4d9f fix: Bring types in sync with @​eslint/core (#19157) (Nicholas C. Zakas)
  • fa25c7a fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)
  • 31a9fd0 fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)
  • 61d99e3 fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)
  • db1b9a6 fix: Ensure module scope is checked for references in consistent-this (#19383) (Nicholas C. Zakas)
  • 8bcd820 fix: arrow-body-style crash with single-token body (#19379) (Milos Djermanovic)

Documentation

  • b7012c8 docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)

... (truncated)

Changelog

Sourced from @​eslint/js's changelog.

v9.21.0 - February 21, 2025

  • a8c9a9f chore: update @eslint/eslintrc and @eslint/js (#19453) (Francesco Trotta)
  • 265e0cf chore: package.json update for @​eslint/js release (Jenkins)
  • 418717f feat: introduce new deprecated types for rules (#19238) (fnx)
  • 3401b85 test: add test for Rule.ReportDescriptor type (#19449) (Francesco Trotta)
  • e497aa7 chore: update rewrite dependencies (#19448) (Francesco Trotta)
  • c5561ea docs: Update README (GitHub Actions Bot)
  • db5340d fix: update missing plugin message template (#19445) (Milos Djermanovic)
  • d8ffdd4 fix: do not exit process on rule crash (#19436) (Francesco Trotta)
  • dab5478 chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)
  • 80b0485 docs: replace var with let and const in rule example (#19434) (Tanuj Kanti)
  • ebfe2eb chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)
  • f67d5e8 docs: Update README (GitHub Actions Bot)
  • 75afc61 docs: Update README (GitHub Actions Bot)
  • 5fd211d test: processors can return subpaths (#19425) (Milos Djermanovic)
  • 0636cab docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)
  • 5c5b802 feat: Add --ext CLI option (#19405) (Milos Djermanovic)
  • dd7d930 docs: Update README (GitHub Actions Bot)

v9.20.1 - February 11, 2025

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 274f054 fix: fix RuleContext type (#19417) (Francesco Trotta)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)

v9.20.0 - February 7, 2025

  • 979097a chore: upgrade @​eslint/js@​9.20.0 (#19412) (Francesco Trotta)
  • 031734e chore: package.json update for @​eslint/js release (Jenkins)
  • 91d4d9f fix: Bring types in sync with @​eslint/core (#19157) (Nicholas C. Zakas)
  • b7012c8 docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)
  • d4c47c3 test: avoid empty config warning in test output (#19408) (Milos Djermanovic)
  • e89a54a feat: change behavior of inactive flags (#19386) (Milos Djermanovic)
  • fa25c7a fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)
  • 6406376 docs: Update README (GitHub Actions Bot)
  • 350f2b9 docs: rewrite some examples with var using let and const (#19404) (Mueez Javaid Hashmi)
  • 93c325a docs: rewrite examples with var using let and const (#19398) (Mueez Javaid Hashmi)
  • 56ff404 docs: replace var with let or const in rules docs (#19396) (Daniel Harbrueger)
  • 4053226 docs: change sourceType in no-eval examples (#19393) (Milos Djermanovic)
  • 1324af0 docs: replace var with let and const in rules docs (#19392) (Daniel Harbrueger)
  • 8b87e00 docs: replace var with const and let in rules (#19389) (Tanuj Kanti)
  • 31a9fd0 fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)
  • 61d99e3 fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)
  • 758c66b docs: Explain what frozen rules mean (#19382) (Nicholas C. Zakas)
  • 67dd82a chore: update dependency @​eslint/json to ^0.10.0 (#19387) (renovate[bot])
  • db1b9a6 fix: Ensure module scope is checked for references in consistent-this (#19383) (Nicholas C. Zakas)
  • 8bcd820 fix: arrow-body-style crash with single-token body (#19379) (Milos Djermanovic)

... (truncated)

Commits
  • 265e0cf chore: package.json update for @​eslint/js release
  • 031734e chore: package.json update for @​eslint/js release
  • 58560e7 chore: package.json update for @​eslint/js release
  • 362099c chore: package.json update for @​eslint/js release
  • 495aa49 chore: extract package name from package.json for public interface (#19314)
  • See full diff in compare view

Updates @faker-js/faker from 9.3.0 to 9.5.1

Release notes

Sourced from @​faker-js/faker's releases.

v9.5.1

What's Changed

New Contributors

Full Changelog: faker-js/faker@v9.5.0...v9.5.1

v9.5.0

What's Changed

Full Changelog: faker-js/faker@v9.4.0...v9.5.0

v9.4.0

What's Changed

... (truncated)

Changelog

Sourced from @​faker-js/faker's changelog.

9.5.1 (2025-02-28)

Bug Fixes

9.5.0 (2025-02-10)

Features

9.4.0 (2025-01-15)

Features

  • finance: use fake patterns for transactionDescription (#3202) (5ec4a6c)
  • internet: update to simplified modern user-agent list (#3324) (3c7abb5)
  • location: add list of spoken languages (#3333) (ff6dda9)

Changed Locales

  • locale: fix various locale data with trailing spaces (#3329) (e5eec0e)
  • locale: improve product_name data in en and tr (#3372) (773fc1f)

Bug Fixes

  • animal: re-moo-ved some incorrect cow data (#3326) (47f835b)
  • basic wildcard range handling + add more tests (#3322) (817f8a0)
  • finance: update Discover card number format to ensure accuracy (#3336) (69c0063)
  • image: dataUri should return random type (#3347) (eceb17d)
  • locales: update chemical element names in zh_CN (#3371) (6ec6f84)
  • location: fix bad uz street_name_part data (#3328) (b6132cb)
  • music: fix truncated song names with commas (#3327) (f36fc71), closes #996
  • system: semver parts should not be limited to 0-9 (#3349) (c0d92b8)
Commits

Updates `@iconi...

Description has been truncated

…ith 59 updates

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

| Package | From | To |
| --- | --- | --- |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.5.0` | `0.5.1` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.11` | `2.28.1` |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.9.1` | `0.10.0` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.6.1` | `19.7.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.6.0` | `19.7.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.17.0` | `9.21.0` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `9.3.0` | `9.5.1` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.293` | `2.2.312` |
| [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) | `11.0.1` | `11.1.1` |
| [@jspm/generator](https://github.com/jspm/generator) | `2.4.2` | `2.5.1` |
| [@nolebase/vitepress-plugin-git-changelog](https://github.com/nolebase/integrations/tree/HEAD/packages/vitepress-plugin-git-changelog) | `2.12.0` | `2.15.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.1` |
| [@pnpm/workspace.read-manifest](https://github.com/pnpm/pnpm) | `1000.0.1` | `1000.1.0` |
| [@stylistic/stylelint-plugin](https://github.com/stylelint-stylistic/stylelint-stylistic) | `3.1.1` | `3.1.2` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.62.16` | `5.66.11` |
| [@types/jsonwebtoken](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsonwebtoken) | `9.0.7` | `9.0.9` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.19.1` | `8.25.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.19.1` | `8.25.0` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.8.1` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.17.1` | `8.17.5` |
| [element-plus](https://github.com/element-plus/element-plus) | `2.9.2` | `2.9.5` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.3.3` | `2.4.4` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `50.6.1` | `50.6.3` |
| [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.18.2` | `2.19.1` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.15.1` | `17.16.1` |
| [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `4.6.0` | `4.9.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.1` | `5.2.3` |
| [eslint](https://github.com/eslint/eslint) | `9.17.0` | `9.21.0` |
| [h3](https://github.com/unjs/h3) | `1.13.0` | `1.15.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.3.0` | `15.4.3` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.469.0` | `0.477.0` |
| [ora](https://github.com/sindresorhus/ora) | `8.1.1` | `8.2.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.49.1` | `1.50.1` |
| [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.7.0` | `1.8.0` |
| [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `10.1.3` | `10.1.5` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.9` | `0.6.11` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.2.12` | `0.3.7` |
| [radix-vue](https://github.com/unovue/radix-vue) | `1.9.12` | `1.9.17` |
| [sass](https://github.com/sass/dart-sass) | `1.83.1` | `1.85.1` |
| [stylelint-config-recommended-vue](https://github.com/ota-meshi/stylelint-config-recommended-vue) | `1.5.0` | `1.6.0` |
| [stylelint-prettier](https://github.com/prettier/stylelint-prettier) | `5.0.2` | `5.0.3` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.10.0` | `6.11.1` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.12.0` | `16.15.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.3.3` | `2.4.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.2` | `5.8.2` |
| [unbuild](https://github.com/unjs/unbuild) | `3.2.0` | `3.5.0` |
| [unplugin-element-plus](https://github.com/element-plus/unplugin-element-plus) | `0.9.0` | `0.9.1` |
| [vite-plugin-dts](https://github.com/qmhc/vite-plugin-dts) | `4.4.0` | `4.5.1` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `7.7.0` | `7.7.2` |
| [vitepress-plugin-group-icons](https://github.com/yuyinws/vitepress-plugin-group-icons) | `1.3.3` | `1.3.6` |
| [vitepress](https://github.com/vuejs/vitepress) | `1.5.0` | `1.6.3` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.0.1` | `11.1.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.1.10` | `2.2.8` |
| [vxe-pc-ui](https://github.com/x-extends/vxe-pc-ui) | `4.3.67` | `4.3.99` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.10.0` | `4.11.15` |
| [watermark-js-plus](https://github.com/zhensherlock/watermark-js-plus) | `1.5.7` | `1.5.8` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.32.3` | `0.35.0` |



Updates `@changesets/changelog-github` from 0.5.0 to 0.5.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@changesets/cli` from 2.27.11 to 2.28.1
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/[email protected]...@changesets/[email protected])

Updates `@clack/prompts` from 0.9.1 to 0.10.0
- [Release notes](https://github.com/natemoo-re/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/clack/commits/@clack/[email protected]/packages/prompts)

Updates `@commitlint/cli` from 19.6.1 to 19.7.1
- [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/v19.7.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.6.0 to 19.7.1
- [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/v19.7.1/@commitlint/config-conventional)

Updates `@eslint/js` from 9.17.0 to 9.21.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.21.0/packages/js)

Updates `@faker-js/faker` from 9.3.0 to 9.5.1
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v9.3.0...v9.5.1)

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

Updates `@intlify/core-base` from 11.0.1 to 11.1.1
- [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.1.1/packages/core)

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

Updates `@nolebase/vitepress-plugin-git-changelog` from 2.12.0 to 2.15.0
- [Release notes](https://github.com/nolebase/integrations/releases)
- [Commits](https://github.com/nolebase/integrations/commits/v2.15.0/packages/vitepress-plugin-git-changelog)

Updates `@playwright/test` from 1.49.1 to 1.50.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.1)

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

Updates `@stylistic/stylelint-plugin` from 3.1.1 to 3.1.2
- [Release notes](https://github.com/stylelint-stylistic/stylelint-stylistic/releases)
- [Changelog](https://github.com/stylelint-stylistic/stylelint-stylistic/blob/main/CHANGELOG.md)
- [Commits](stylelint-stylistic/stylelint-stylistic@v3.1.1...v3.1.2)

Updates `@tanstack/vue-query` from 5.62.16 to 5.66.11
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.66.11/packages/vue-query)

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

Updates `@typescript-eslint/eslint-plugin` from 8.19.1 to 8.25.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.25.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.19.1 to 8.25.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.25.0/packages/parser)

Updates `axios` from 1.7.9 to 1.8.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.8.1)

Updates `cspell` from 8.17.1 to 8.17.5
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.17.5/packages/cspell)

Updates `element-plus` from 2.9.2 to 2.9.5
- [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.9.2...2.9.5)

Updates `eslint-config-turbo` from 2.3.3 to 2.4.4
- [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.4.4/packages/eslint-config-turbo)

Updates `eslint-plugin-jsdoc` from 50.6.1 to 50.6.3
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc)
- [Commits](gajus/eslint-plugin-jsdoc@v50.6.1...v50.6.3)

Updates `eslint-plugin-jsonc` from 2.18.2 to 2.19.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-jsonc@v2.18.2...v2.19.1)

Updates `eslint-plugin-n` from 17.15.1 to 17.16.1
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.15.1...v17.16.1)

Updates `eslint-plugin-perfectionist` from 4.6.0 to 4.9.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@v4.6.0...v4.9.0)

Updates `eslint-plugin-prettier` from 5.2.1 to 5.2.3
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.1...v5.2.3)

Updates `eslint` from 9.17.0 to 9.21.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.17.0...v9.21.0)

Updates `h3` from 1.13.0 to 1.15.1
- [Release notes](https://github.com/unjs/h3/releases)
- [Changelog](https://github.com/unjs/h3/blob/v1.15.1/CHANGELOG.md)
- [Commits](unjs/h3@v1.13.0...v1.15.1)

Updates `lint-staged` from 15.3.0 to 15.4.3
- [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@v15.3.0...v15.4.3)

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

Updates `ora` from 8.1.1 to 8.2.0
- [Release notes](https://github.com/sindresorhus/ora/releases)
- [Commits](sindresorhus/ora@v8.1.1...v8.2.0)

Updates `playwright` from 1.49.1 to 1.50.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.49.1...v1.50.1)

Updates `postcss-html` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/ota-meshi/postcss-html/releases)
- [Commits](ota-meshi/postcss-html@v1.7.0...v1.8.0)

Updates `postcss-preset-env` from 10.1.3 to 10.1.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

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

Updates `prettier-plugin-tailwindcss` from 0.6.9 to 0.6.11
- [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.6.9...v0.6.11)

Updates `publint` from 0.2.12 to 0.3.7
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/[email protected]/packages/publint)

Updates `radix-vue` from 1.9.12 to 1.9.17
- [Release notes](https://github.com/unovue/radix-vue/releases)
- [Commits](unovue/reka-ui@v1.9.12...v1.9.17)

Updates `sass` from 1.83.1 to 1.85.1
- [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.83.1...1.85.1)

Updates `stylelint-config-recommended-vue` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/ota-meshi/stylelint-config-recommended-vue/releases)
- [Changelog](https://github.com/ota-meshi/stylelint-config-recommended-vue/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/stylelint-config-recommended-vue@v1.5.0...v1.6.0)

Updates `stylelint-prettier` from 5.0.2 to 5.0.3
- [Changelog](https://github.com/prettier/stylelint-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/stylelint-prettier@v5.0.2...v5.0.3)

Updates `stylelint-scss` from 6.10.0 to 6.11.1
- [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-scss@v6.10.0...v6.11.1)

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

Updates `turbo` from 2.3.3 to 2.4.4
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.3.3...v2.4.4)

Updates `typescript` from 5.4.2 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.2...v5.8.2)

Updates `unbuild` from 3.2.0 to 3.5.0
- [Release notes](https://github.com/unjs/unbuild/releases)
- [Changelog](https://github.com/unjs/unbuild/blob/main/CHANGELOG.md)
- [Commits](unjs/unbuild@v3.2.0...v3.5.0)

Updates `unplugin-element-plus` from 0.9.0 to 0.9.1
- [Release notes](https://github.com/element-plus/unplugin-element-plus/releases)
- [Commits](element-plus/unplugin-element-plus@v0.9.0...v0.9.1)

Updates `vite-plugin-dts` from 4.4.0 to 4.5.1
- [Release notes](https://github.com/qmhc/vite-plugin-dts/releases)
- [Changelog](https://github.com/qmhc/vite-plugin-dts/blob/main/CHANGELOG.md)
- [Commits](qmhc/vite-plugin-dts@v4.4.0...v4.5.1)

Updates `vite-plugin-vue-devtools` from 7.7.0 to 7.7.2
- [Release notes](https://github.com/vuejs/devtools/releases)
- [Commits](https://github.com/vuejs/devtools/commits/v7.7.2/packages/vite)

Updates `vitepress-plugin-group-icons` from 1.3.3 to 1.3.6
- [Release notes](https://github.com/yuyinws/vitepress-plugin-group-icons/releases)
- [Commits](yuyinws/vitepress-plugin-group-icons@v1.3.3...v1.3.6)

Updates `vitepress` from 1.5.0 to 1.6.3
- [Release notes](https://github.com/vuejs/vitepress/releases)
- [Changelog](https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md)
- [Commits](vuejs/vitepress@v1.5.0...v1.6.3)

Updates `vue-i18n` from 11.0.1 to 11.1.1
- [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.1.1/packages/vue-i18n)

Updates `vue-tsc` from 2.1.10 to 2.2.8
- [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/v2.2.8/packages/tsc)

Updates `vxe-pc-ui` from 4.3.67 to 4.3.99
- [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.10.0 to 4.11.15
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](x-extends/vxe-table@4.10.0...4.11.15)

Updates `watermark-js-plus` from 1.5.7 to 1.5.8
- [Release notes](https://github.com/zhensherlock/watermark-js-plus/releases)
- [Changelog](https://github.com/zhensherlock/watermark-js-plus/blob/main/CHANGELOG.md)
- [Commits](zhensherlock/watermark-js-plus@v1.5.7...v1.5.8)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `@ast-grep/napi` from 0.32.3 to 0.35.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.32.3...0.35.0)

---
updated-dependencies:
- dependency-name: "@changesets/changelog-github"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@changesets/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@clack/prompts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@commitlint/cli"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@eslint/js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@faker-js/faker"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@iconify/json"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@intlify/core-base"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@jspm/generator"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@nolebase/vitepress-plugin-git-changelog"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@playwright/test"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@pnpm/workspace.read-manifest"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@stylistic/stylelint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@tanstack/vue-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@types/jsonwebtoken"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: cspell
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: element-plus
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: eslint-config-turbo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-jsdoc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-n
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-perfectionist
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: h3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: lint-staged
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: lucide-vue-next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: ora
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: playwright
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: postcss-html
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: postcss-preset-env
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: postcss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: publint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: radix-vue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: stylelint-config-recommended-vue
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: stylelint-prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: stylelint-scss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: stylelint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: turbo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: unbuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: unplugin-element-plus
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vite-plugin-dts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vite-plugin-vue-devtools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vitepress-plugin-group-icons
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vitepress
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vue-i18n
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vue-tsc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vxe-pc-ui
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vxe-table
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: watermark-js-plus
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@ast-grep/napi"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 3, 2025
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