Skip to content

chore(deps): bump the non-breaking-changes group with 23 updates #5977

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 16, 2025

Bumps the non-breaking-changes group with 23 updates:

Package From To
@changesets/cli 2.28.1 2.29.2
@changesets/git 3.0.2 3.0.4
@clack/prompts 0.9.1 0.10.1
@faker-js/faker 9.6.0 9.7.0
@iconify/json 2.2.324 2.2.328
@tanstack/vue-query 5.72.0 5.74.3
@typescript-eslint/eslint-plugin 8.29.1 8.30.1
@typescript-eslint/parser 8.29.1 8.30.1
@vitejs/plugin-vue 5.2.1 5.2.3
cspell 8.18.1 8.19.0
eslint-plugin-import-x 4.10.2 4.10.5
lint-staged 15.5.0 15.5.1
lucide-vue-next 0.469.0 0.488.0
nitropack 2.11.8 2.11.9
publint 0.2.12 0.3.12
typescript 5.7.3 5.8.3
vite-plugin-vue-devtools 7.7.2 7.7.5
vitepress-plugin-group-icons 1.3.8 1.5.2
vue-tsc 2.1.10 2.2.8
vxe-pc-ui 4.5.14 4.5.24
vxe-table 4.12.5 4.13.4
watermark-js-plus 1.5.8 1.5.9
@ast-grep/napi 0.32.3 0.37.0

Updates @changesets/cli from 2.28.1 to 2.29.2

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.29.2

Patch Changes

  • #1636 f73f84a Thanks @​Netail! - Correctly resolve new changesets with since option when the .changeset directory is not directly in the git root

  • Updated dependencies [f73f84a]:

    • @​changesets/read@​0.6.5
    • @​changesets/git@​3.0.4
    • @​changesets/get-release-plan@​4.0.10
    • @​changesets/apply-release-plan@​7.0.12

@​changesets/cli@​2.29.1

Patch Changes

  • #1620 b15e629 Thanks @​Netail! - Correctly fetch new changesets with since if the git option diff.relative has been set to true

  • Updated dependencies [b15e629]:

    • @​changesets/git@​3.0.3
    • @​changesets/apply-release-plan@​7.0.11
    • @​changesets/read@​0.6.4
    • @​changesets/get-release-plan@​4.0.9

@​changesets/cli@​2.29.0

Minor Changes

Commits
  • baa9d45 Version Packages (#1637)
  • f73f84a Correctly resolve new changesets with since option when the .changeset di...
  • 5d01857 Version Packages (#1634)
  • b15e629 Correctly fetch new changesets with since if the git option diff.relative...
  • 131d445 Update TypeScript, Babel and Preconstruct (#1633)
  • db8f678 Version Packages (#1632)
  • 29f34a3 Support scoped registries configured using package.json#publishConfig (#1470)
  • dc83cb4 Remove --snapshot from publish command docs (#1578)
  • See full diff in compare view

Updates @changesets/git from 3.0.2 to 3.0.4

Release notes

Sourced from @​changesets/git's releases.

@​changesets/git@​3.0.4

Patch Changes

  • #1636 f73f84a Thanks @​Netail! - Correctly resolve new changesets with since option when the .changeset directory is not directly in the git root

@​changesets/git@​3.0.3

Patch Changes

  • #1620 b15e629 Thanks @​Netail! - Make sure that git diff always returns the paths relative to the git root in case diff.relative has been set to true in the git config
Commits
  • baa9d45 Version Packages (#1637)
  • f73f84a Correctly resolve new changesets with since option when the .changeset di...
  • 5d01857 Version Packages (#1634)
  • b15e629 Correctly fetch new changesets with since if the git option diff.relative...
  • 131d445 Update TypeScript, Babel and Preconstruct (#1633)
  • db8f678 Version Packages (#1632)
  • 29f34a3 Support scoped registries configured using package.json#publishConfig (#1470)
  • dc83cb4 Remove --snapshot from publish command docs (#1578)
  • 5c2bac5 Version Packages (#1595)
  • b9df596 Prevent fatal errors when using the newly-introduced prettier option (#1590)
  • Additional commits viewable in compare view

Updates @clack/prompts from 0.9.1 to 0.10.1

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.10.1

Patch Changes

  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]
    • @​clack/core@​0.4.2

@​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.1

Patch Changes

  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]
    • @​clack/core@​0.4.2

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 @faker-js/faker from 9.6.0 to 9.7.0

Release notes

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

v9.7.0

What's Changed

New Contributors

Full Changelog: faker-js/faker@v9.6.0...v9.7.0

Changelog

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

9.7.0 (2025-04-13)

New Locales

Bug Fixes

  • airline: Air France and KLM Royal Dutch Airlines (#3440) (8a2d168)
  • iban: more strict pattern for IE and PS (#3464) (7b12056)
  • locale: rename ja and zh_CN company affix files (#3448) (1e551c5)
  • number: don't ignore multipleOf in float when min=max (#3417) (e4cc4e5)
Commits
Maintainer changes

This version was pushed to npm by faker-bot, a new releaser for @​faker-js/faker since your current version.


Updates @iconify/json from 2.2.324 to 2.2.328

Commits

Updates @tanstack/vue-query from 5.72.0 to 5.74.3

Release notes

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

v5.74.3

Version 5.74.3 - 4/14/25, 12:55 PM

Changes

Fix

  • types: Remove predicate typing for query filters (#8958) (f580d4d) by Nick Lucas

Packages

  • @​tanstack/query-core@​5.74.3
  • @​tanstack/vue-query@​5.74.3
  • @​tanstack/query-broadcast-client-experimental@​5.74.3
  • @​tanstack/query-persist-client-core@​5.74.3
  • @​tanstack/query-sync-storage-persister@​5.74.3
  • @​tanstack/react-query@​5.74.3
  • @​tanstack/react-query-devtools@​5.74.3
  • @​tanstack/react-query-persist-client@​5.74.3
  • @​tanstack/react-query-next-experimental@​5.74.3
  • @​tanstack/solid-query@​5.74.3
  • @​tanstack/solid-query-devtools@​5.74.3
  • @​tanstack/solid-query-persist-client@​5.74.3
  • @​tanstack/svelte-query@​5.74.3
  • @​tanstack/svelte-query-devtools@​5.74.3
  • @​tanstack/svelte-query-persist-client@​5.74.3
  • @​tanstack/vue-query-devtools@​5.74.3
  • @​tanstack/angular-query-experimental@​5.74.3
  • @​tanstack/query-async-storage-persister@​5.74.3
  • @​tanstack/angular-query-devtools-experimental@​5.74.3

v5.74.2

Version 5.74.2 - 4/14/25, 10:54 AM

Changes

Fix

  • query-core: unpause restored mutations (#9015) (02c3d51) by Raphael Gimenez

Test

  • query-core: add test case for hydration (#8949) (727230f) by MINSEONG KIM

Packages

  • @​tanstack/query-core@​5.74.2
  • @​tanstack/query-broadcast-client-experimental@​5.74.2
  • @​tanstack/query-persist-client-core@​5.74.2
  • @​tanstack/query-sync-storage-persister@​5.74.2

... (truncated)

Commits
  • 59dc99c release: v5.74.3
  • f580d4d fix(types): Remove predicate typing for query filters (#8958)
  • 231d9b1 release: v5.74.2
  • b76b0ef release: v5.74.0
  • f16d7af release: v5.73.3
  • 38178ba fix(query-core): make sure we don't invoke select too often when using placeh...
  • c4afce4 chore: use "moduleResolution": "Bundler" at root level (#9002)
  • a2c07a4 release: v5.73.0
  • f56a9f2 feat(vue-query): useInfiniteQuery options support maybe ref type (#8956)
  • 97f9625 types(vue-query): add shallow support to QueryClientConfig (#8692)
  • Additional commits viewable in compare view

Updates @typescript-eslint/eslint-plugin from 8.29.1 to 8.30.1

Release notes

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

v8.30.1

8.30.1 (2025-04-14)

🚀 Features

  • eslint-plugin: [no-explicit-any] suggest to replace keyof any with PropertyKey (#11032)

🩹 Fixes

  • eslint-plugin: [promise-function-async] use a different error message for functions with promise and non-promise types (#10950)
  • typescript-estree: use token type of PrivateIdentifier instead of Identifier for private identifiers (#11023)
  • eslint-plugin: fix mistake with eslintrc config generation (#11072)

❤️ Thank You

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

v8.30.0

see release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.30.1

Changelog

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

8.30.1 (2025-04-14)

🩹 Fixes

  • eslint-plugin: fix mistake with eslintrc config generation (#11072)

❤️ Thank You

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

8.30.0 (2025-04-14)

🚀 Features

  • eslint-plugin: [no-explicit-any] suggest to replace keyof any with PropertyKey (#11032)

🩹 Fixes

  • eslint-plugin: [promise-function-async] use a different error message for functions with promise and non-promise types (#10950)

❤️ Thank You

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

Commits
  • 9531492 chore(release): publish 8.30.1
  • 152def7 fix(eslint-plugin): fix mistake with eslintrc config generation (#11072)
  • b3688be chore(release): publish 8.30.0
  • 3ccd79c feat(eslint-plugin): [no-explicit-any] suggest to replace keyof any with Prop...
  • 128d95b fix(eslint-plugin): [promise-function-async] use a different error message fo...
  • 69e2f6c feat: support stringly-typed extends (#10973)
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.29.1 to 8.30.1

Release notes

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

v8.30.1

8.30.1 (2025-04-14)

🚀 Features

  • eslint-plugin: [no-explicit-any] suggest to replace keyof any with PropertyKey (#11032)

🩹 Fixes

  • eslint-plugin: [promise-function-async] use a different error message for functions with promise and non-promise types (#10950)
  • typescript-estree: use token type of PrivateIdentifier instead of Identifier for private identifiers (#11023)
  • eslint-plugin: fix mistake with eslintrc config generation (#11072)

❤️ Thank You

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

v8.30.0

see release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.30.1

Changelog

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

8.30.1 (2025-04-14)

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.30.0 (2025-04-14)

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 @vitejs/plugin-vue from 5.2.1 to 5.2.3

Release notes

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

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

Changelog

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

5.2.3 (2025-03-17)

5.2.2 (2025-03-17)

  • feat: pass descriptor vapor flag to compileTemplte (219e007)
  • feat(css): tree shake scoped styles (#533) (333094f), closes #533
  • fix: generate unique component id (#538) (2704e85), closes #538
  • fix: properly interpret boolean values in define (#545) (46d3d65), closes #545
  • fix(deps): update all non-major dependencies (#482) (cdbae68), closes #482
  • fix(deps): update all non-major dependencies (#488) (5d39582), closes #488
  • fix(index): move the if check earlier to avoid creating unnecessary ssr when entering return block ( (2135c84), closes #523
  • fix(plugin-vue): default value for compile time flags (#495) (ae9d948), closes #495
  • fix(plugin-vue): ensure HMR updates styles when SFC is treated as a type dependency (#541) (4abe3be), closes #541
  • fix(plugin-vue): resolve sourcemap conflicts in build watch mode with cached modules (#505) (906cebb), closes #505
  • fix(plugin-vue): support external import URLs for monorepos (#524) (cdd4922), closes #524
  • fix(plugin-vue): support vapor template-only component (#529) (95be153), closes #529
  • fix(plugin-vue): suppress warnings for non-recognized pseudo selectors form lightningcss (#521) (15c0eb0), closes #521
  • chore(deps): update dependency rollup to ^4.27.4 (#479) (428320d), closes #479
  • chore(deps): update dependency rollup to ^4.28.1 (#484) (388403f), closes #484
  • chore(deps): update dependency rollup to ^4.29.1 (#493) (b092bc8), closes #493
  • chore(deps): update upstream (#503) (8c12b9f), closes #503
  • chore(deps): update upstream (#511) (d057351), closes #511
  • chore(deps): update upstream (#526) (59946d3), closes #526
  • chore(plugin-vue): simplify resolved declaration (7288a59)
Commits

Updates cspell from 8.18.1 to 8.19.0

Release notes

Sourced from cspell's releases.

v8.19.0

Changes

Features

feat: Be able to ignore forbidden words in a dictionary (#7182)

Related to:


Dictionary Updates

fix: Workflow Bot -- Update Dictionaries (main) (#7158)

Update Dictionaries (main)

Summary

 .../snapshots/AdaDoom3/AdaDoom3/report.yaml        | 17 +----------
 .../snapshots/AdaDoom3/AdaDoom3/snapshot.txt       | 21 ++-----------
 .../MartinThoma/LaTeX-examples/report.yaml         |  3 +-
 .../MartinThoma/LaTeX-examples/snapshot.txt        |  3 +-
 .../snapshots/TheAlgorithms/Python/report.yaml     |  6 ++--
 .../snapshots/TheAlgorithms/Python/snapshot.txt    |  4 +--
 integration-tests/snapshots/mdx-js/mdx/report.yaml |  7 +----
 .../snapshots/mdx-js/mdx/snapshot.txt              |  7 +----
 packages/cspell-bundled-dicts/package.json         |  6 ++--
 pnpm-lock.yaml                                     | 35 ++++++++++++----------
 10 files changed, 34 insertions(+), 75 deletions(-)

... (truncated)

Changelog

Sourced from cspell's changelog.

8.19.0 (2025-04-16)

Note: Version bump only for package cspell

Commits

Updates eslint-plugin-import-x from 4.10.2 to 4.10.5

Release notes

Sourced from eslint-plugin-import-x's releases.

v4.10.5

Patch Changes

Full Changelog: un-ts/eslint-plugin-import-x@v4.10.4...v4.10.5

v4.10.4

Patch Changes

Full Changelog: un-ts/eslint-plugin-import-x@v4.10.3...v4.10.4

v4.10.3

Patch Changes

  • #292 1342127 Thanks @​JounQin! - refactor: remove unnecessary check for pnpapi because unrs-resolver already handles it

Full Changelog: un-ts/eslint-plugin-import-x@v4.10.2...v4.10.3

Changelog

Sourced from eslint-plugin-import-x's changelog.

4.10.5

Patch Changes

4.10.4

Patch Changes

4.10.3

Patch Changes

  • #292 1342127 Thanks @​JounQin! - refactor: remove unnecessary check for pnpapi because unrs-resolver already handles it
Commits
  • f37e138 chore: release eslint-plugin-import-x (

Bumps the non-breaking-changes group with 23 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.28.1` | `2.29.2` |
| [@changesets/git](https://github.com/changesets/changesets) | `3.0.2` | `3.0.4` |
| [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.9.1` | `0.10.1` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `9.6.0` | `9.7.0` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.324` | `2.2.328` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.72.0` | `5.74.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.29.1` | `8.30.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.29.1` | `8.30.1` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `5.2.1` | `5.2.3` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.18.1` | `8.19.0` |
| [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.10.2` | `4.10.5` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.5.0` | `15.5.1` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.469.0` | `0.488.0` |
| [nitropack](https://github.com/nitrojs/nitro) | `2.11.8` | `2.11.9` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.2.12` | `0.3.12` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.3` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `7.7.2` | `7.7.5` |
| [vitepress-plugin-group-icons](https://github.com/yuyinws/vitepress-plugin-group-icons) | `1.3.8` | `1.5.2` |
| [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.5.14` | `4.5.24` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.12.5` | `4.13.4` |
| [watermark-js-plus](https://github.com/zhensherlock/watermark-js-plus) | `1.5.8` | `1.5.9` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.32.3` | `0.37.0` |


Updates `@changesets/cli` from 2.28.1 to 2.29.2
- [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/git` from 3.0.2 to 3.0.4
- [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.1
- [Release notes](https://github.com/bombshell-dev/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/@clack/[email protected]/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/bombshell-dev/clack/commits/@clack/[email protected]/packages/prompts)

Updates `@faker-js/faker` from 9.6.0 to 9.7.0
- [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.6.0...v9.7.0)

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

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

Updates `@typescript-eslint/eslint-plugin` from 8.29.1 to 8.30.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.30.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.29.1 to 8.30.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.30.1/packages/parser)

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

Updates `cspell` from 8.18.1 to 8.19.0
- [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.19.0/packages/cspell)

Updates `eslint-plugin-import-x` from 4.10.2 to 4.10.5
- [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.10.2...v4.10.5)

Updates `lint-staged` from 15.5.0 to 15.5.1
- [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.5.0...v15.5.1)

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

Updates `nitropack` from 2.11.8 to 2.11.9
- [Release notes](https://github.com/nitrojs/nitro/releases)
- [Changelog](https://github.com/nitrojs/nitro/blob/v3/CHANGELOG.md)
- [Commits](nitrojs/nitro@v2.11.8...v2.11.9)

Updates `publint` from 0.2.12 to 0.3.12
- [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 `typescript` from 5.7.3 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.3)

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

Updates `vitepress-plugin-group-icons` from 1.3.8 to 1.5.2
- [Release notes](https://github.com/yuyinws/vitepress-plugin-group-icons/releases)
- [Commits](yuyinws/vitepress-plugin-group-icons@v1.3.8...v1.5.2)

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.5.14 to 4.5.24
- [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.12.5 to 4.13.4
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](x-extends/vxe-table@4.12.5...4.13.4)

Updates `watermark-js-plus` from 1.5.8 to 1.5.9
- [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.8...v1.5.9)

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

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@changesets/git"
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@clack/prompts"
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@faker-js/faker"
  dependency-version: 9.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@iconify/json"
  dependency-version: 2.2.328
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.74.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@vitejs/plugin-vue"
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: cspell
  dependency-version: 8.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-import-x
  dependency-version: 4.10.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: lint-staged
  dependency-version: 15.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: lucide-vue-next
  dependency-version: 0.488.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: nitropack
  dependency-version: 2.11.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: publint
  dependency-version: 0.3.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vite-plugin-vue-devtools
  dependency-version: 7.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vitepress-plugin-group-icons
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vue-tsc
  dependency-version: 2.2.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: vxe-pc-ui
  dependency-version: 4.5.24
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vxe-table
  dependency-version: 4.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: watermark-js-plus
  dependency-version: 1.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.37.0
  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 Apr 16, 2025
Copy link

changeset-bot bot commented Apr 16, 2025

⚠️ No Changeset found

Latest commit: 1f8c581

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

Copy link
Contributor

coderabbitai bot commented Apr 16, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@jinmao88 jinmao88 closed this Apr 17, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@jinmao88 jinmao88 reopened this Apr 17, 2025
@jinmao88 jinmao88 closed this Apr 17, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 17, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-breaking-changes-e53176b342 branch April 17, 2025 06:00
@github-actions github-actions bot locked and limited conversation to collaborators May 18, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
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