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 with 31 updates #5534

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 13, 2025

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

Package From To
@clack/prompts 0.9.1 0.10.0
@eslint/js 9.19.0 9.20.0
@faker-js/faker 9.4.0 9.5.0
@iconify/json 2.2.302 2.2.306
@intlify/core-base 11.1.0 11.1.1
@jspm/generator 2.4.2 2.5.0
@nolebase/vitepress-plugin-git-changelog 2.12.1 2.13.6
@typescript-eslint/eslint-plugin 8.23.0 8.24.0
@typescript-eslint/parser 8.23.0 8.24.0
element-plus 2.9.3 2.9.4
eslint-config-turbo 2.4.0 2.4.2
eslint-plugin-perfectionist 4.8.0 4.9.0
eslint 9.19.0 9.20.1
h3 1.14.0 1.15.0
lucide-vue-next 0.469.0 0.475.0
postcss-preset-env 10.1.3 10.1.4
postcss 8.5.1 8.5.2
publint 0.2.12 0.3.5
radix-vue 1.9.13 1.9.14
sass 1.83.4 1.84.0
turbo 2.4.0 2.4.2
typescript 5.7.2 5.7.3
unplugin-element-plus 0.9.0 0.9.1
vite-plugin-vue-devtools 7.7.1 7.7.2
vue-i18n 11.1.0 11.1.1
vue-tsc 2.1.10 2.2.0
vxe-pc-ui 4.3.79 4.3.84
vxe-table 4.10.0 4.10.15
watermark-js-plus 1.5.7 1.5.8
zod 3.24.1 3.24.2
@ast-grep/napi 0.32.3 0.34.4

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 @eslint/js from 9.19.0 to 9.20.0

Release notes

Sourced from @​eslint/js's releases.

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)
  • 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)
  • 758c66b docs: Explain what frozen rules mean (#19382) (Nicholas C. Zakas)
  • 0ef8bb8 docs: additional checks for rule examples (#19358) (Milos Djermanovic)
  • 58ab2f6 docs: fix order of installation steps in getting started (#19326) (Tanuj Kanti)

Chores

  • 979097a chore: upgrade @​eslint/js@​9.20.0 (#19412) (Francesco Trotta)
  • 031734e chore: package.json update for @​eslint/js release (Jenkins)
  • d4c47c3 test: avoid empty config warning in test output (#19408) (Milos Djermanovic)
  • 67dd82a chore: update dependency @​eslint/json to ^0.10.0 (#19387) (renovate[bot])
  • 15ac0e1 chore: add permissions: read-all to stale.yml workflow (#19374) (Josh Goldberg ✨)
Changelog

Sourced from @​eslint/js's changelog.

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)
  • 15ac0e1 chore: add permissions: read-all to stale.yml workflow (#19374) (Josh Goldberg ✨)
  • 0ef8bb8 docs: additional checks for rule examples (#19358) (Milos Djermanovic)
  • 58ab2f6 docs: fix order of installation steps in getting started (#19326) (Tanuj Kanti)
Commits

Updates @faker-js/faker from 9.4.0 to 9.5.0

Release notes

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

v9.5.0

What's Changed

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

Changelog

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

9.5.0 (2025-02-10)

Features

Commits

Updates @iconify/json from 2.2.302 to 2.2.306

Commits

Updates @intlify/core-base from 11.1.0 to 11.1.1

Release notes

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

v11.1.1

Full Changelog: intlify/vue-i18n@v11.1.0...v11.1.1

Commits

Updates @jspm/generator from 2.4.2 to 2.5.0

Commits

Updates @nolebase/vitepress-plugin-git-changelog from 2.12.1 to 2.13.6

Release notes

Sourced from @​nolebase/vitepress-plugin-git-changelog's releases.

v2.13.6

What's Changed

Full Changelog: nolebase/integrations@v2.13.5...v2.13.6

v2.13.5

What's Changed

New Contributors

Full Changelog: nolebase/integrations@v2.13.0...v2.13.5

v2.13.0

What's Changed

New Contributors

Full Changelog: nolebase/integrations@v2.12.1...v2.13.0

Commits

Updates @typescript-eslint/eslint-plugin from 8.23.0 to 8.24.0

Release notes

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

v8.24.0

8.24.0 (2025-02-10)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#10639)
  • utils: add reportUnusedInlineConfigs to LinterOptions (#10718)

🩹 Fixes

  • ast-spec: correct YieldExpression.argument type (#10799)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#10737)
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#10751)

❤️ Thank You

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

Changelog

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

8.24.0 (2025-02-10)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#10639)

🩹 Fixes

  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#10751)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#10737)

❤️ Thank You

  • Josh Goldberg ✨
  • noah
  • Ronen Amiel

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

Commits
  • 87d72ba chore(release): publish 8.24.0
  • ac8dde0 feat(eslint-plugin): [no-unnecessary-condition] make `allowConstantLoopCondit...
  • 7acfb5f fix(eslint-plugin): [no-misused-spread] correct and elaborate string spread r...
  • d30a497 fix(eslint-plugin): [restrict-plus-operands] report adding bigints to strings...
  • bcdf560 docs(eslint-plugin): [prefer-nullish-coalescing] streamline code examples (#1...
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.23.0 to 8.24.0

Release notes

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

v8.24.0

8.24.0 (2025-02-10)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#10639)
  • utils: add reportUnusedInlineConfigs to LinterOptions (#10718)

🩹 Fixes

  • ast-spec: correct YieldExpression.argument type (#10799)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#10737)
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#10751)

❤️ Thank You

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

Changelog

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

8.24.0 (2025-02-10)

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 element-plus from 2.9.3 to 2.9.4

Release notes

Sourced from element-plus's releases.

2.9.4

2025-02-07

Features

Bug fixes

  • Components [table-footer] update cols width on layout change (#19064 by @​Dsaquel)
  • Components [table] The index parameter of the selectable function is undefined (#19587 by @​YiMo1)
  • Components [autocomplete] prevent closing if focus is inside popper content (#19522 by @​DDDDD12138)
  • Components [table] fix the logic of selection column when fixed state changes dynamically (#19703 by @​wNing50)
  • Components [table] the toggleTreeExpansion failed to trigger load function (#18728 by @​webvs2)
  • Components [table-v2] reset lastVisitedColumnIdx if width change (#19757 by @​Dsaquel)
Changelog

Sourced from element-plus's changelog.

2.9.4

2025-02-07

Features

Bug fixes

Commits

Updates eslint-config-turbo from 2.4.0 to 2.4.2

Release notes

Sourced from eslint-config-turbo's releases.

Turborepo v2.4.2

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.4.1...v2.4.2

Turborepo v2.4.2-canary.0

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.4.1...v2.4.2-canary.0

Turborepo v2.4.1

Full Changelog: vercel/turborepo@v2.4.0...v2.4.1

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/natemoo-re/clack/tree/HEAD/packages/prompts) | `0.9.1` | `0.10.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.19.0` | `9.20.0` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `9.4.0` | `9.5.0` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.302` | `2.2.306` |
| [@intlify/core-base](https://github.com/intlify/vue-i18n/tree/HEAD/packages/core) | `11.1.0` | `11.1.1` |
| [@jspm/generator](https://github.com/jspm/generator) | `2.4.2` | `2.5.0` |
| [@nolebase/vitepress-plugin-git-changelog](https://github.com/nolebase/integrations/tree/HEAD/packages/vitepress-plugin-git-changelog) | `2.12.1` | `2.13.6` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.23.0` | `8.24.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.23.0` | `8.24.0` |
| [element-plus](https://github.com/element-plus/element-plus) | `2.9.3` | `2.9.4` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.4.0` | `2.4.2` |
| [eslint-plugin-perfectionist](https://github.com/azat-io/eslint-plugin-perfectionist) | `4.8.0` | `4.9.0` |
| [eslint](https://github.com/eslint/eslint) | `9.19.0` | `9.20.1` |
| [h3](https://github.com/unjs/h3) | `1.14.0` | `1.15.0` |
| [lucide-vue-next](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-vue-next) | `0.469.0` | `0.475.0` |
| [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `10.1.3` | `10.1.4` |
| [postcss](https://github.com/postcss/postcss) | `8.5.1` | `8.5.2` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.2.12` | `0.3.5` |
| [radix-vue](https://github.com/unovue/radix-vue) | `1.9.13` | `1.9.14` |
| [sass](https://github.com/sass/dart-sass) | `1.83.4` | `1.84.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.4.0` | `2.4.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |
| [unplugin-element-plus](https://github.com/element-plus/unplugin-element-plus) | `0.9.0` | `0.9.1` |
| [vite-plugin-vue-devtools](https://github.com/vuejs/devtools/tree/HEAD/packages/vite) | `7.7.1` | `7.7.2` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.1.0` | `11.1.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.1.10` | `2.2.0` |
| [vxe-pc-ui](https://github.com/x-extends/vxe-pc-ui) | `4.3.79` | `4.3.84` |
| [vxe-table](https://github.com/x-extends/vxe-table) | `4.10.0` | `4.10.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.34.4` |


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 `@eslint/js` from 9.19.0 to 9.20.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.20.0/packages/js)

Updates `@faker-js/faker` from 9.4.0 to 9.5.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.4.0...v9.5.0)

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

Updates `@intlify/core-base` from 11.1.0 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.0
- [Release notes](https://github.com/jspm/generator/releases)
- [Commits](jspm/generator@2.4.2...2.5.0)

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

Updates `@typescript-eslint/eslint-plugin` from 8.23.0 to 8.24.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.24.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.23.0 to 8.24.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.24.0/packages/parser)

Updates `element-plus` from 2.9.3 to 2.9.4
- [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.3...2.9.4)

Updates `eslint-config-turbo` from 2.4.0 to 2.4.2
- [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.2/packages/eslint-config-turbo)

Updates `eslint-plugin-perfectionist` from 4.8.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.8.0...v4.9.0)

Updates `eslint` from 9.19.0 to 9.20.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.19.0...v9.20.1)

Updates `h3` from 1.14.0 to 1.15.0
- [Release notes](https://github.com/unjs/h3/releases)
- [Changelog](https://github.com/unjs/h3/blob/v1.15.0/CHANGELOG.md)
- [Commits](unjs/h3@v1.14.0...v1.15.0)

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

Updates `postcss-preset-env` from 10.1.3 to 10.1.4
- [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.5.1 to 8.5.2
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.1...8.5.2)

Updates `publint` from 0.2.12 to 0.3.5
- [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.13 to 1.9.14
- [Release notes](https://github.com/unovue/radix-vue/releases)
- [Commits](unovue/radix-vue@v1.9.13...v1.9.14)

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

Updates `turbo` from 2.4.0 to 2.4.2
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.4.0...v2.4.2)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

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-vue-devtools` from 7.7.1 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 `vue-i18n` from 11.1.0 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.0
- [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.0/packages/tsc)

Updates `vxe-pc-ui` from 4.3.79 to 4.3.84
- [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.10.15
- [Release notes](https://github.com/x-extends/vxe-table/releases)
- [Commits](x-extends/vxe-table@4.10.0...4.10.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.34.4
- [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.34.4)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  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-patch
  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: "@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: 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-patch
  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
  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: lucide-vue-next
  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-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: turbo
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-vue-devtools
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-breaking-changes
- dependency-name: vue-i18n
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  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 Feb 13, 2025
Copy link

changeset-bot bot commented Feb 13, 2025

⚠️ No Changeset found

Latest commit: ee66f2d

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

Copy link
Contributor

coderabbitai bot commented Feb 13, 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.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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. (Beta)
  • @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.

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 14, 2025

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

@dependabot dependabot bot closed this Feb 14, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-breaking-changes-8af11206e5 branch February 14, 2025 20:43
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