Skip to content

chore(deps): bump the non-breaking-changes group with 13 updates #5867

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 3, 2025

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

Package From To
@clack/prompts 0.9.1 0.10.0
@tanstack/vue-query 5.71.1 5.71.5
@vitejs/plugin-vue 5.2.1 5.2.3
eslint-config-turbo 2.4.4 2.5.0
eslint-plugin-prettier 5.2.5 5.2.6
lucide-vue-next 0.469.0 0.487.0
publint 0.2.12 0.3.10
sass 1.86.1 1.86.2
turbo 2.4.4 2.5.0
typescript 5.7.3 5.8.2
vue-tsc 2.1.10 2.2.8
vxe-pc-ui 4.5.11 4.5.12
@ast-grep/napi 0.32.3 0.36.2

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 @tanstack/vue-query from 5.71.1 to 5.71.5

Release notes

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

v5.71.5

Version 5.71.5 - 4/2/25, 6:39 PM

Changes

Fix

  • solid-query: add useQuery, useInfiniteQuery, useQueries, useMutation as alternative syntax to align with react and ease maintenance (#8938) (1202ba0) by Birk Skyum

Chore

  • deps: replace dependency npm-run-all with npm-run-all2 ^5.0.0 (#8602) (8b1eff1) by renovate[bot]

Packages

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

v5.71.4

Version 5.71.4 - 4/2/25, 1:33 PM

Changes

Refactor

  • replace Accessor wth FunctionedParams (#8535) (eebc9a3) by Braden Wong

Packages

  • @​tanstack/solid-query@​5.71.4
  • @​tanstack/solid-query-devtools@​5.71.4

... (truncated)

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 eslint-config-turbo from 2.4.4 to 2.5.0

Release notes

Sourced from eslint-config-turbo's releases.

Turborepo v2.5.0

What's Changed

Docs

eslint

... (truncated)

Commits

Updates eslint-plugin-prettier from 5.2.5 to 5.2.6

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.2.6

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.2.6

Patch Changes

Commits

Updates lucide-vue-next from 0.469.0 to 0.487.0

Release notes

Sourced from lucide-vue-next's releases.

Version 0.487.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.486.0...0.487.0

Version 0.486.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.485.0...0.486.0

Version 0.485.0

What's Changed

Full Changelog: lucide-icons/lucide@0.484.0...0.485.0

Version 0.484.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.483.0...0.484.0

Version 0.483.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.482.0...0.483.0

Version 0.482.0

... (truncated)

Commits
  • 4835ae6 fix(packages): consistent icon name class (#2878)
  • 07f9d3e ci(node): Use correct node version (#2877)
  • ae8af19 build(deps-dev): bump vitest from 0.32.4 to 0.33.0 (#2799)
  • bab52d7 build(deps-dev): bump vite from 5.4.13 to 5.4.14 in /packages/lucide-vue-next...
  • 3ab6c37 build(deps-dev): bump vite from 5.4.12 to 5.4.13 (#2798)
  • ba2c4b5 build(deps-dev): bump vite from 5.1.8 to 5.4.12 (#2786)
  • 50630b3 ci: Improve build speeds (#2778)
  • See full diff in compare view

Updates publint from 0.2.12 to 0.3.10

Release notes

Sourced from publint's releases.

[email protected]

Patch Changes

  • Support custom conditions in "exports" that points to raw TS or TSX files. This configuration is common in monorepo setups where packages refer to the raw files among themselves using a custom condition so custom aliasing isn't needed. (b34ea94)

    With this support, the "types" condition is allowed to come after any exports of the raw TS or TSX files. File existence checks are also disabled for raw TS and TSX files reference as after publish these files may intentionally be not published.

[email protected]

Patch Changes

  • Support the formatMessage utility in the browser. It has a new color: 'html' option to highlight important parts with <strong> tags instead of ANSI colors. It also has a new reference: boolean option so the messages are worded in reference of the message location. (e1cfef0)

  • If formatMessage is passed a package.json object with missing keys, the message part that references the value will now fallback to "undefined" instead of completely erroring out. (45962d1)

[email protected]

Patch Changes

  • Support passing a tarball path to the publint CLI. This allows to easily lint any tarball files at hand. (#166)

    npx publint ./mylib-1.0.0.tgz
  • The publint API now returns a pkg object as a convenience to pass it to formatMessage (#166)

  • Updated dependencies [02d169b]:

    • @​publint/pack@​0.1.2

[email protected]

Patch Changes

  • The "imports" field is now linted with the following rules: (#162)

    • IMPORTS_KEY_INVALID: Ensure the imports key starts with a #
    • IMPORTS_VALUE_INVALID: Ensure the imports value is a valid path that starts with a ./
    • IMPORTS_GLOB_NO_MATCHED_FILES: Ensure the imports glob matches at least one file
    • IMPORTS_DEFAULT_SHOULD_BE_LAST: Ensure the "default" condition is last in an entrypoint's object
    • IMPORTS_MODULE_SHOULD_BE_ESM: Ensure the "module" condition file is ESM
    • IMPORTS_MODULE_SHOULD_PRECEDE_REQUIRE: Ensure the "module" condition precedes the "require" condition in an entrypoint's object
  • Improve SSH git URL detection when checking the "repository" field. Values like "[email protected]:user/project.git" is now detected as a valid git URL, but will be suggested to use a full git URL instead, like "git+ssh://[email protected]/user/project.git" (28da844)

  • Fix exports types message when the "require" or "import" condition already exists but the dts file format is still invalid (a731ec3)

[email protected]

Patch Changes

  • Fix checking bin field file path that omits .js or /index.js (04f289e)

[email protected]

... (truncated)

Changelog

Sourced from publint's changelog.

0.3.10

Patch Changes

  • Support custom conditions in "exports" that points to raw TS or TSX files. This configuration is common in monorepo setups where packages refer to the raw files among themselves using a custom condition so custom aliasing isn't needed. (b34ea94)

    With this support, the "types" condition is allowed to come after any exports of the raw TS or TSX files. File existence checks are also disabled for raw TS and TSX files reference as after publish these files may intentionally be not published.

0.3.9

Patch Changes

  • Support the formatMessage utility in the browser. It has a new color: 'html' option to highlight important parts with <strong> tags instead of ANSI colors. It also has a new reference: boolean option so the messages are worded in reference of the message location. (e1cfef0)

  • If formatMessage is passed a package.json object with missing keys, the message part that references the value will now fallback to "undefined" instead of completely erroring out. (45962d1)

0.3.8

Patch Changes

  • Support passing a tarball path to the publint CLI. This allows to easily lint any tarball files at hand. (#166)

    npx publint ./mylib-1.0.0.tgz
  • The publint API now returns a pkg object as a convenience to pass it to formatMessage (#166)

  • Updated dependencies [02d169b]:

    • @​publint/pack@​0.1.2

0.3.7

Patch Changes

  • The "imports" field is now linted with the following rules: (#162)

    • IMPORTS_KEY_INVALID: Ensure the imports key starts with a #
    • IMPORTS_VALUE_INVALID: Ensure the imports value is a valid path that starts with a ./
    • IMPORTS_GLOB_NO_MATCHED_FILES: Ensure the imports glob matches at least one file
    • IMPORTS_DEFAULT_SHOULD_BE_LAST: Ensure the "default" condition is last in an entrypoint's object
    • IMPORTS_MODULE_SHOULD_BE_ESM: Ensure the "module" condition file is ESM
    • IMPORTS_MODULE_SHOULD_PRECEDE_REQUIRE: Ensure the "module" condition precedes the "require" condition in an entrypoint's object
  • Improve SSH git URL detection when checking the "repository" field. Values like "[email protected]:user/project.git" is now detected as a valid git URL, but will be suggested to use a full git URL instead, like "git+ssh://[email protected]/user/project.git" (28da844)

  • Fix exports types message when the "require" or "import" condition already exists but the dts file format is still invalid (a731ec3)

0.3.6

... (truncated)

Commits

Updates sass from 1.86.1 to 1.86.2

Release notes

Sourced from sass's releases.

Dart Sass 1.86.2

To install Sass 1.86.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.86.2

  • No user-visible changes.
Commits

Updates turbo from 2.4.4 to 2.5.0

Release notes

Sourced from turbo's releases.

Turborepo v2.5.0

What's Changed

Docs

eslint

... (truncated)

Commits
  • df394be publish 2...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.9.1` | `0.10.0` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.71.1` | `5.71.5` |
| [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `5.2.1` | `5.2.3` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.4.4` | `2.5.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.2.5` | `5.2.6` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.469.0` | `0.487.0` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.2.12` | `0.3.10` |
| [sass](https://github.com/sass/dart-sass) | `1.86.1` | `1.86.2` |
| [turbo](https://github.com/vercel/turborepo) | `2.4.4` | `2.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.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.11` | `4.5.12` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.32.3` | `0.36.2` |


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 `@tanstack/vue-query` from 5.71.1 to 5.71.5
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.71.5/packages/vue-query)

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

Updates `eslint-plugin-prettier` from 5.2.5 to 5.2.6
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.2.5...v5.2.6)

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

Updates `publint` from 0.2.12 to 0.3.10
- [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 `sass` from 1.86.1 to 1.86.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.86.1...1.86.2)

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

Updates `typescript` from 5.7.3 to 5.8.2
- [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.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.11 to 4.5.12
- [Release notes](https://github.com/x-extends/vxe-pc-ui/releases)
- [Commits](https://github.com/x-extends/vxe-pc-ui/commits)

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

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.71.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: eslint-config-turbo
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: lucide-vue-next
  dependency-version: 0.487.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: publint
  dependency-version: 0.3.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: sass
  dependency-version: 1.86.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: turbo
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-version: 5.8.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.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.36.2
  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 3, 2025
Copy link

changeset-bot bot commented Apr 3, 2025

⚠️ No Changeset found

Latest commit: 432fb6d

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.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@mynetfan mynetfan closed this Apr 4, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 4, 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-b29d1da3f9 branch April 4, 2025 05:11
@github-actions github-actions bot locked and limited conversation to collaborators May 5, 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