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 javascript-minor-patch group across 1 directory with 10 updates #2503

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the javascript-minor-patch group with 10 updates in the /src directory:

Package From To
@types/node 22.10.2 22.10.3
vite 6.0.3 6.0.6
vue-tsc 2.1.10 2.2.0
@fontsource/open-sans 5.1.0 5.1.1
@vee-validate/i18n 4.14.7 4.15.0
@vee-validate/rules 4.14.7 4.15.0
vuetify 3.7.5 3.7.6
vee-validate 4.14.7 4.15.0
@typescript-eslint/eslint-plugin 8.18.1 8.19.0
@typescript-eslint/parser 8.18.1 8.19.0

Updates @types/node from 22.10.2 to 22.10.3

Commits

Updates vite from 6.0.3 to 6.0.6

Release notes

Sourced from vite's releases.

v6.0.6

Please refer to CHANGELOG.md for details.

v6.0.5

Please refer to CHANGELOG.md for details.

v6.0.4

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.0.6 (2024-12-26)

6.0.5 (2024-12-20)

6.0.4 (2024-12-19)

Commits
  • 5c2b4a0 release: v6.0.6
  • 9290d85 fix(css): show correct error when unknown placeholder is used for CSS modules...
  • afff05c fix(css): resolve style tags in HTML files correctly for lightningcss (#19001)
  • eb06ec3 chore: fix typo in comment (#19067)
  • 1aa434e fix(ssrTransform): preserve line offset when transforming imports (#19004)
  • 902567a fix(resolve): handle package.json with UTF-8 BOM (#19000)
  • 9f10261 fix: replace runner-side path normalization with fetchModule-side resolve (...
  • 8bfe247 revert: unpin esbuild version (#19043)
  • 0e9e81f chore: update comment about build.target (#19047)
  • a1f4b46 test(ssr): test virtual module with query (#19044)
  • Additional commits viewable in compare view

Updates vue-tsc from 2.1.10 to 2.2.0

Release notes

Sourced from vue-tsc's releases.

v2.2.0

Features

  • feat(language-core): support @vue-generic (#4971) - Thanks to @​KazariEX!
  • feat(vscode): add configuration for skipping automatic detection of Hybrid Mode (#5046) - Thanks to @​KazariEX!
  • feat(language-service): crawl html data of data-allow-mismatch - Thanks to @​KazariEX!
  • feat(language-core): type support of $attrs (#5076) - Thanks to @​KazariEX!
  • feat(language-core): type support of useSlots and $slots (#5055) - Thanks to @​KazariEX!
  • feat(language-core): type support of v-model modifiers (#5061) - Thanks to @​KazariEX!
  • feat(language-service): process references data at runtime to reduce bundle size (#5054) - Thanks to @​KazariEX!
  • feat(language-core): support the use of sfc root comment to configure vueCompilerOptions (#4987) - Thanks to @​KazariEX!
  • feat(vscode): add timeout logic for insiders fetching (#5048) - Thanks to @​KazariEX!
  • feat(vscode): add examples to inlay hints configuration (#5068) - Thanks to @​KazariEX!

Performance

  • perf(typescript-plugin): use named pipe servers more efficiently (#5070)

Bug Fixes

  • fix(language-core): generate script setup starting from last leading comment without @ts-check - Thanks to @​KazariEX!
  • fix(language-core): make model modifiers optional (#4978) - Thanks to @​stafyniaksacha!
  • fix(language-core): always report missing props on <slot> (#4982) - Thanks to @​KazariEX!
  • fix(language-core): avoid unchecked index access when parsing defineEmits (#5028) - Thanks to @​KazariEX!
  • fix(language-service): handle text edit of special closing tags completion correctly (#5016) - Thanks to @​KazariEX!
  • fix(language-core): don't generate variable access of template refs using useTemplateRef (#5032) - Thanks to @​KazariEX!
  • fix(vscode): update enabledHybridMode before activate extension (#5019) - Thanks to @​nieyuyao!
  • fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020) - Thanks to @​davidmatter!
  • fix(vscode): add GitHub.copilot-chat to hybrid mode compatible list (#5047) - Thanks to @​KazariEX!
  • fix(language-core): generate generics normally when useTemplateRef has no parameters (#5051) - Thanks to @​KazariEX!
  • fix(language-core): avoid clipping prop name using .prop or .attr on v-model - Thanks to @​KazariEX!
  • fix(language-core): handle named default import of components correctly (#5066) - Thanks to @​KazariEX!
  • fix(language-core): disable navigation feature on non-binding prop values (#5040) - Thanks to @​KazariEX!
  • fix(language-core): do not generate useTemplateRef parameter repeatedly (#5009)
  • fix(language-core): generate macros after script setup content (#5071) - Thanks to @​KazariEX!
  • fix(language-core): correct type and completion support of vue: event (#4969) - Thanks to @​KazariEX!
  • fix(language-core): prevent visiting functional components for parseScriptSetupRanges (#5049) - Thanks to @​zhiyuanzmj!
  • fix(language-service): don't provide modifier completion for @ and : (#5052) - Thanks to @​KazariEX!
  • fix(language-core): consistent interpolation behavior of shorthand binding (#4975) - Thanks to @​KazariEX!
  • fix(language-core): resolve components with various name cases correctly (#5067) - Thanks to @​KazariEX!
  • fix(language-core): map v-slot correctly to report error when missing default slot - Thanks to @​KazariEX!
  • fix(language-core): map component loc to instance variable for verification - Thanks to @​KazariEX!

Other Changes

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

2.2.0 official, 2.2.1 insiders (2024-12-24)

Features

  • feat(language-core): support @vue-generic (#4971) - Thanks to @​KazariEX!
  • feat(vscode): add configuration for skipping automatic detection of Hybrid Mode (#5046) - Thanks to @​KazariEX!
  • feat(language-service): crawl html data of data-allow-mismatch - Thanks to @​KazariEX!
  • feat(language-core): type support of $attrs (#5076) - Thanks to @​KazariEX!
  • feat(language-core): type support of useSlots and $slots (#5055) - Thanks to @​KazariEX!
  • feat(language-core): type support of v-model modifiers (#5061) - Thanks to @​KazariEX!
  • feat(language-service): process references data at runtime to reduce bundle size (#5054) - Thanks to @​KazariEX!
  • feat(language-core): support the use of sfc root comment to configure vueCompilerOptions (#4987) - Thanks to @​KazariEX!
  • feat(vscode): add timeout logic for insiders fetching (#5048) - Thanks to @​KazariEX!
  • feat(vscode): add examples to inlay hints configuration (#5068) - Thanks to @​KazariEX!

Performance

  • perf(typescript-plugin): use named pipe servers more efficiently (#5070)

Bug Fixes

  • fix(language-core): generate script setup starting from last leading comment without @ts-check - Thanks to @​KazariEX!
  • fix(language-core): make model modifiers optional (#4978) - Thanks to @​stafyniaksacha!
  • fix(language-core): always report missing props on <slot> (#4982) - Thanks to @​KazariEX!
  • fix(language-core): avoid unchecked index access when parsing defineEmits (#5028) - Thanks to @​KazariEX!
  • fix(language-service): handle text edit of special closing tags completion correctly (#5016) - Thanks to @​KazariEX!
  • fix(language-core): don't generate variable access of template refs using useTemplateRef (#5032) - Thanks to @​KazariEX!
  • fix(vscode): update enabledHybridMode before activate extension (#5019) - Thanks to @​nieyuyao!
  • fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020) - Thanks to @​davidmatter!
  • fix(vscode): add GitHub.copilot-chat to hybrid mode compatible list (#5047) - Thanks to @​KazariEX!
  • fix(language-core): generate generics normally when useTemplateRef has no parameters (#5051) - Thanks to @​KazariEX!
  • fix(language-core): avoid clipping prop name using .prop or .attr on v-model - Thanks to @​KazariEX!
  • fix(language-core): handle named default import of components correctly (#5066) - Thanks to @​KazariEX!
  • fix(language-core): disable navigation feature on non-binding prop values (#5040) - Thanks to @​KazariEX!
  • fix(language-core): do not generate useTemplateRef parameter repeatedly (#5009)
  • fix(language-core): generate macros after script setup content (#5071) - Thanks to @​KazariEX!
  • fix(language-core): correct type and completion support of vue: event (#4969) - Thanks to @​KazariEX!
  • fix(language-core): prevent visiting functional components for parseScriptSetupRanges (#5049) - Thanks to @​zhiyuanzmj!
  • fix(language-service): don't provide modifier completion for @ and : (#5052) - Thanks to @​KazariEX!
  • fix(language-core): consistent interpolation behavior of shorthand binding (#4975) - Thanks to @​KazariEX!
  • fix(language-core): resolve components with various name cases correctly (#5067) - Thanks to @​KazariEX!
  • fix(language-core): map v-slot correctly to report error when missing default slot - Thanks to @​KazariEX!
  • fix(language-core): map component loc to instance variable for verification - Thanks to @​KazariEX!

Other Changes

... (truncated)

Commits
  • 55638ff v2.2.0 (#5079)
  • 98489a1 refactor(tsc): removed handling for TS 5.7
  • 3f632f2 test: sort tsc result
  • 4fff892 fix(language-core): generate macros after script setup content (#5071)
  • 1e408b8 fix(language-core): only generate the props it needs in generic components
  • 06b98f5 feat(language-core): type support of v-model modifiers (#5061)
  • 1d0acb4 chore: update deps
  • 3fb59af fix(tsc): point to shimmed tsc entry point to support ts 5.7 (#5020)
  • 31d1484 test: pin TS version and update snapshot
  • d0a9e5f chore: bump volar
  • Additional commits viewable in compare view

Updates @fontsource/open-sans from 5.1.0 to 5.1.1

Commits

Updates @vee-validate/i18n from 4.14.7 to 4.15.0

Release notes

Sourced from @​vee-validate/i18n's releases.

v4.15.0

🐛 Bug Fixes

  • fix(perf): Skip loading devtools if in SSR #4963 (ec121b1855228e2146010f9ccd4be0246331cb0d)
  • chore: Bump schema provider versions to their latest move them to peer deps #4951 #4940 (db26a748d8e1d5310dfab74588a0d34ad4878204)
  • fix(yup): Tuple required state resolution #4931 (5cba0aaff870399f6f07a7886f37dfbfe91076ee)
  • fix(bundle): Load devtools lazily to avoid including it in production builds #4943 (#4946)

👕 Types

  • fix: Mark the <Form> submission handler with Generic object to reduce need for casting (#4954) thanks to NaokiHaba

🆕 Features

  • feat: added useIsValidating and useFormContext to Nuxt module auto import list (#4952) thanks to danielwaltz
Changelog

Sourced from @​vee-validate/i18n's changelog.

4.15.0

Commits

Updates @vee-validate/rules from 4.14.7 to 4.15.0

Release notes

Sourced from @​vee-validate/rules's releases.

v4.15.0

🐛 Bug Fixes

  • fix(perf): Skip loading devtools if in SSR #4963 (ec121b1855228e2146010f9ccd4be0246331cb0d)
  • chore: Bump schema provider versions to their latest move them to peer deps #4951 #4940 (db26a748d8e1d5310dfab74588a0d34ad4878204)
  • fix(yup): Tuple required state resolution #4931 (5cba0aaff870399f6f07a7886f37dfbfe91076ee)
  • fix(bundle): Load devtools lazily to avoid including it in production builds #4943 (#4946)

👕 Types

  • fix: Mark the <Form> submission handler with Generic object to reduce need for casting (#4954) thanks to NaokiHaba

🆕 Features

  • feat: added useIsValidating and useFormContext to Nuxt module auto import list (#4952) thanks to danielwaltz
Changelog

Sourced from @​vee-validate/rules's changelog.

4.15.0

Patch Changes

  • Updated dependencies [30281f5]
  • Updated dependencies [ec121b1]
    • vee-validate@4.15.0
Commits

Updates vuetify from 3.7.5 to 3.7.6

Release notes

Sourced from vuetify's releases.

v3.7.6

🔧 Bug Fixes

  • nested: ensure unregister is called before register (d4ba559), closes #20516 #20603
  • virtual: add fallback scrollend timeout (4a628a3), closes #20566 #20757
  • VListItem: wait until beforeMount to set parent open (39e4a50)
  • VRangeSlider: do not focus other thumb if min==max (c19bcf6), closes #20726
  • VSelectionControl: label opacity matching regular text (#20738) (f804c50), closes #18804

🧪 Labs

  • VFileUpload: add new component (#19667) (89c58dd)
  • VNumberInput: clearing v-number-input with backspace resets to 0 (#20729) (96fca07)
Commits
  • 1d34a83 chore(release): publish v3.7.6
  • 39e4a50 fix(VListItem): wait until beforeMount to set parent open
  • d4ba559 fix(nested): ensure unregister is called before register
  • 96fca07 fix(VNumberInput): clearing v-number-input with backspace resets to 0 (#20729)
  • 89c58dd feat(VFileUpload): add new component (#19667)
  • 45a6111 chore: fix build error
  • c19bcf6 fix(VRangeSlider): do not focus other thumb if min==max
  • f804c50 fix(VSelectionControl): label opacity matching regular text (#20738)
  • 4a628a3 fix(virtual): add fallback scrollend timeout
  • See full diff in compare view

Updates vee-validate from 4.14.7 to 4.15.0

Release notes

Sourced from vee-validate's releases.

v4.15.0

🐛 Bug Fixes

  • fix(perf): Skip loading devtools if in SSR #4963 (ec121b1855228e2146010f9ccd4be0246331cb0d)
  • chore: Bump schema provider versions to their latest move them to peer deps #4951 #4940 (db26a748d8e1d5310dfab74588a0d34ad4878204)
  • fix(yup): Tuple required state resolution #4931 (5cba0aaff870399f6f07a7886f37dfbfe91076ee)
  • fix(bundle): Load devtools lazily to avoid including it in production builds #4943 (#4946)

👕 Types

  • fix: Mark the <Form> submission handler with Generic object to reduce need for casting (#4954) thanks to NaokiHaba

🆕 Features

  • feat: added useIsValidating and useFormContext to Nuxt module auto import list (#4952) thanks to danielwaltz
Changelog

Sourced from vee-validate's changelog.

4.15.0

Patch Changes

  • 30281f5: fix: lazy load the devtools dep to force it out of production bundle
  • ec121b1: fix: skip loading devtools if in SSR
Commits

Updates @typescript-eslint/eslint-plugin from 8.18.1 to 8.19.0

Release notes

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

v8.19.0

8.19.0 (2024-12-30)

🚀 Features

  • eslint-plugin: [strict-boolean-expressions] check array predicate functions' return statements (#10106)

🩹 Fixes

  • eslint-plugin: add getConstraintInfo to handle generic constraints better (#10496)
  • eslint-plugin: [array-type] autofix with conditional types needs parentheses (#10522)
  • eslint-plugin: [consistent-indexed-object-style] don't report on indirect circular references (#10537)
  • eslint-plugin: [member-ordering] ignore method overloading (#10536)

❤️ Thank You

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

v8.18.2

8.18.2 (2024-12-23)

🩹 Fixes

  • eslint-plugin: [no-deprecated] not reporting usages of deprecated declared constants as object value (#10498)
  • eslint-plugin: [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error (#10494)
  • eslint-plugin: [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter (#10473)
  • eslint-plugin: [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid (#10490)
  • eslint-plugin: [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter (#10461)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type/value context (#10503)
  • eslint-plugin: [consistent-type-assertions] allow default assertionStyle option (#10512)
  • eslint-plugin: [no-unnecessary-condition] handle noUncheckedIndexedAccess true (#10514)
  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

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

Changelog

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

8.19.0 (2024-12-30)

🚀 Features

  • eslint-plugin: [strict-boolean-expressions] check array predicate functions' return statements (#10106)

🩹 Fixes

  • eslint-plugin: [member-ordering] ignore method overloading (#10536)
  • eslint-plugin: [consistent-indexed-object-style] don't report on indirect circular references (#10537)
  • eslint-plugin: [array-type] autofix with conditional types needs parentheses (#10522)
  • eslint-plugin: add getConstraintInfo to handle generic constraints better (#10496)

❤️ Thank You

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

8.18.2 (2024-12-23)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-condition] handle noUncheckedIndexedAccess true (#10514)
  • eslint-plugin: [consistent-type-assertions] allow default assertionStyle option (#10512)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type/value context (#10503)
  • eslint-plugin: [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter (#10461)
  • eslint-plugin: [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid (#10490)
  • eslint-plugin: [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter (#10473)
  • eslint-plugin: [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error (#10494)
  • eslint-plugin: [no-deprecated] not reporting usages of deprecated declared constants as object value (#10498)

❤️ Thank You

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

Commits
  • e19f30f chore(release): publish 8.19.0
  • 9746832 fix(eslint-plugin): [member-ordering] ignore method overloading (#10536)
  • 7eba36e fix(eslint-plugin): [consistent-indexed-object-style] don't report on indirec...
  • 3097930 fix(eslint-plugin): [array-type] autofix with conditional types needs parenth...
  • 2e2731d fix(eslint-plugin): add getConstraintInfo to handle generic constraints bette...
  • 07d0e0d feat(eslint-plugin): [strict-boolean-expressions] check array predicate funct...
  • 157b781 chore(release): publish 8.18.2
  • 83c3bbf fix(eslint-plugin): [no-unnecessary-condition] handle noUncheckedIndexedAcces...
  • c6a387f fix(eslint-plugin): [consistent-type-assertions] allow default assertionStyle...
  • 4747299 fix(eslint-plugin): [no-unnecessary-type-arguments] handle type/value context...
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.18.1 to 8.19.0

Release notes

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

v8.19.0

8.19.0 (2024-12-30)

🚀 Features

  • eslint-plugin: [strict-boolean-expressions] check array predicate functions' return statements (#10106)

🩹 Fixes

  • eslint-plugin: add getConstraintInfo to handle generic constraints better (#10496)
  • eslint-plugin: [array-type] autofix with conditional types needs parentheses (#10522)
  • eslint-plugin: [consistent-indexed-object-style] don't report on indirect circular references (#10537)
  • eslint-plugin: [member-ordering] ignore method overloading (#10536)

❤️ Thank You

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

v8.18.2

8.18.2 (2024-12-23)

🩹 Fixes

  • eslint-plugin: [no-deprecated] not reporting usages of deprecated declared constants as object value (#10498)
  • eslint-plugin: [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error (#10494)
  • eslint-plugin: [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter (#10473)
  • eslint-plugin: [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid (#10490)
  • eslint-plugin: [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter (#10461)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type/value context (#10503)
  • eslint-plugin: [consistent-type-assertions] allow default assertionStyle option (#10512)
  • eslint-plugin: [no-unnecessary-condition] handle noUncheckedIndexedAccess true (#10514)
  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

You can read about our Description has been truncated

… with 10 updates

Bumps the javascript-minor-patch group with 10 updates in the /src directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.10.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.3` | `6.0.6` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.1.10` | `2.2.0` |
| [@fontsource/open-sans](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/open-sans) | `5.1.0` | `5.1.1` |
| [@vee-validate/i18n](https://github.com/logaretm/vee-validate/tree/HEAD/packages/i18n) | `4.14.7` | `4.15.0` |
| [@vee-validate/rules](https://github.com/logaretm/vee-validate/tree/HEAD/packages/rules) | `4.14.7` | `4.15.0` |
| [vuetify](https://github.com/vuetifyjs/vuetify/tree/HEAD/packages/vuetify) | `3.7.5` | `3.7.6` |
| [vee-validate](https://github.com/logaretm/vee-validate/tree/HEAD/packages/vee-validate) | `4.14.7` | `4.15.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.18.1` | `8.19.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.18.1` | `8.19.0` |



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

Updates `vite` from 6.0.3 to 6.0.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.0.6/packages/vite)

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 `@fontsource/open-sans` from 5.1.0 to 5.1.1
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/open-sans)

Updates `@vee-validate/i18n` from 4.14.7 to 4.15.0
- [Release notes](https://github.com/logaretm/vee-validate/releases)
- [Changelog](https://github.com/logaretm/vee-validate/blob/main/packages/i18n/CHANGELOG.md)
- [Commits](https://github.com/logaretm/vee-validate/commits/v4.15.0/packages/i18n)

Updates `@vee-validate/rules` from 4.14.7 to 4.15.0
- [Release notes](https://github.com/logaretm/vee-validate/releases)
- [Changelog](https://github.com/logaretm/vee-validate/blob/main/packages/rules/CHANGELOG.md)
- [Commits](https://github.com/logaretm/vee-validate/commits/v4.15.0/packages/rules)

Updates `vuetify` from 3.7.5 to 3.7.6
- [Release notes](https://github.com/vuetifyjs/vuetify/releases)
- [Commits](https://github.com/vuetifyjs/vuetify/commits/v3.7.6/packages/vuetify)

Updates `vee-validate` from 4.14.7 to 4.15.0
- [Release notes](https://github.com/logaretm/vee-validate/releases)
- [Changelog](https://github.com/logaretm/vee-validate/blob/main/packages/vee-validate/CHANGELOG.md)
- [Commits](https://github.com/logaretm/vee-validate/commits/v4.15.0/packages/vee-validate)

Updates `@typescript-eslint/eslint-plugin` from 8.18.1 to 8.19.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.19.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.18.1 to 8.19.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.19.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: vue-tsc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: "@fontsource/open-sans"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: "@vee-validate/i18n"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: "@vee-validate/rules"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: vuetify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: vee-validate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 2, 2025
@dependabot dependabot bot requested review from a team and ovidijusnortal and removed request for a team January 2, 2025 07:01
Copy link

sonarqubecloud bot commented Jan 2, 2025

Copy link

github-actions bot commented Jan 2, 2025

Job Summary for Gradle

Build and test :: BuildAndPackageWithUnitTests
Gradle Root Project Requested Tasks Gradle Version Build Outcome Build Scan®
src
build sonar test intTest runProxyTest runMetaserviceTest ru…
8.10.2 Build Scan not published

@ovidijusnortal
Copy link
Contributor

@dependabot merge

@dependabot dependabot bot merged commit a82c18c into develop Jan 3, 2025
10 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/src/javascript-minor-patch-4c052be25b branch January 3, 2025 07:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant