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: Bump the nuxt group with 14 updates #2237

Merged
merged 8 commits into from
Sep 16, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 15, 2023

Bumps the nuxt group with 14 updates:

Package From To
@vee-validate/zod 4.10.5 4.11.6
vee-validate 4.10.5 4.11.6
zod 3.21.4 3.22.2
@bg-dev/nuxt-naiveui 1.2.1 1.4.6
@nuxt/content 2.7.0 2.8.2
@nuxt/devtools 0.6.7 0.8.3
@nuxtjs/eslint-config-typescript 12.0.0 12.1.0
@vee-validate/nuxt 4.10.5 4.11.6
nuxt 3.6.2 3.7.3
nuxt-graphql-server 2.0.1 3.0.0
nuxt-icon 0.4.2 0.5.0
nuxt-seo-kit 1.3.9 1.3.13
nuxt-vitest 0.9.0 0.10.5
ufo 1.1.2 1.3.0

Updates @vee-validate/zod from 4.10.5 to 4.11.6

Release notes

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

v4.11.6

👕 TypeScript

This release is aimed at resolving #4421

  • useForm#defineComponentBinds is now more strict and provides accurate typings for both modelValue and update:modeValue properties. Previously they were not exposed.

Try the following example.

const { defineComponentBinds } = useForm({
  validationSchema: toTypedSchema(yup.object({
    date: yup.date().required(),
    number: yup.number().required(),
    string: yup.string().required(),
    valueModel: yup.string().required(),
  })),
});
const date = defineComponentBinds('date');
const number = defineComponentBinds('number');
const string = defineComponentBinds('string');
const valueModel = defineComponentBinds('valueModel');

v4.11.5

🐛 Bug Fixes

The latest release introduced a bug with detecting external changes to models when the default updateOnValueUpdate is set to true. This release fixes that #4404 (804ec6faa5effeda45187adefe380a9c8be89aec)

v4.11.4

🐛 Bug fixes

  • Silent validation should not mark a field as validated ( b53400e2)
  • Clone the schema object before validating typed schemas to avoid outputting proxies #4459 (8f680bf1)
  • Respect validateOnModelUpdate configuration #4451 #4467 (5231f439)

🆕 New features

  • feat: added reset options to force values changing to the given values without merging the old ones #4440 (4d8ed7eb)

v4.11.3

This release updates valibot support to v0.13.0 and replaces the usage of deprecated API methods. #4414 (#4415)

v4.11.2

🆕 New features

You can now query fields meta state using isFieldTouched, isFieldDirty, and isFieldValid helpers on useForm.

</tr></table> 

... (truncated)

Changelog

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

4.11.6

Patch Changes

  • Updated dependencies [f683e909]
    • vee-validate@4.11.6

4.11.5

Patch Changes

  • Updated dependencies [27c9ef24]
  • Updated dependencies [804ec6fa]
    • vee-validate@4.11.5

4.11.4

Patch Changes

  • Updated dependencies [4d8ed7eb]
  • Updated dependencies [b53400e2]
  • Updated dependencies [8f680bf1]
  • Updated dependencies [5231f439]
    • vee-validate@4.11.4

4.11.3

Patch Changes

  • vee-validate@4.11.3

4.11.2

Patch Changes

  • Updated dependencies [2ff045c1]
  • Updated dependencies [73219b40]
  • Updated dependencies [4947e88f]
  • Updated dependencies [ecbb690d]
    • vee-validate@4.11.2

4.11.1

Patch Changes

  • Updated dependencies [5e23dcb9]
    • vee-validate@4.11.1

4.11.0

... (truncated)

Commits

Updates vee-validate from 4.10.5 to 4.11.6

Release notes

Sourced from vee-validate's releases.

v4.11.6

👕 TypeScript

This release is aimed at resolving #4421

  • useForm#defineComponentBinds is now more strict and provides accurate typings for both modelValue and update:modeValue properties. Previously they were not exposed.

Try the following example.

const { defineComponentBinds } = useForm({
  validationSchema: toTypedSchema(yup.object({
    date: yup.date().required(),
    number: yup.number().required(),
    string: yup.string().required(),
    valueModel: yup.string().required(),
  })),
});
const date = defineComponentBinds('date');
const number = defineComponentBinds('number');
const string = defineComponentBinds('string');
const valueModel = defineComponentBinds('valueModel');

v4.11.5

🐛 Bug Fixes

The latest release introduced a bug with detecting external changes to models when the default updateOnValueUpdate is set to true. This release fixes that #4404 (804ec6faa5effeda45187adefe380a9c8be89aec)

v4.11.4

🐛 Bug fixes

  • Silent validation should not mark a field as validated ( b53400e2)
  • Clone the schema object before validating typed schemas to avoid outputting proxies #4459 (8f680bf1)
  • Respect validateOnModelUpdate configuration #4451 #4467 (5231f439)

🆕 New features

  • feat: added reset options to force values changing to the given values without merging the old ones #4440 (4d8ed7eb)

v4.11.3

This release updates valibot support to v0.13.0 and replaces the usage of deprecated API methods. #4414 (#4415)

v4.11.2

🆕 New features

You can now query fields meta state using isFieldTouched, isFieldDirty, and isFieldValid helpers on useForm.

</tr></table> 

... (truncated)

Changelog

Sourced from vee-validate's changelog.

4.11.6

Patch Changes

  • f683e909: fix(types): infer the model value prop name correctly

4.11.5

Patch Changes

  • 27c9ef24: feat(types): stronger define component bind types closes #4421
  • 804ec6fa: fix: use flags to avoid validating during reset #4404 #4467

4.11.4

Patch Changes

  • 4d8ed7eb: feat: added reset opts to force values closes #4440
  • b53400e2: fix: silent validation should not mark a field as validated
  • 8f680bf1: fix: clone the schema object before validating closes #4459
  • 5231f439: fix: respect validate on model update configuration closes #4451, closes #4467

4.11.3

4.11.2

Patch Changes

  • 2ff045c1: fix: do not warn if a form or a field was resolved closes #4399
  • 73219b40: feat: expose all internal types
  • 4947e88f: feat: expose BaseInputBinds and BaseComponentBinds interfaces #4409
  • ecbb690d: feat: query fields meta state

4.11.1

Patch Changes

  • 5e23dcb9: fix: add support for parsing range inputs

4.11.0

Minor Changes

  • 2d8143f9: feat: added composition setter functions

4.10.9

Patch Changes

  • c02337f3: fix: correct the setErrors type to allow for string[]

... (truncated)

Commits
  • 14cdcee chore(release): publish
  • f683e90 fix(types): infer the model value prop name correctly
  • 4465fe7 chore(release): publish
  • 27c9ef2 feat(types): stronger define component bind types closes #4421
  • 804ec6f fix: use flags to avoid validating during reset #4404 #4467
  • 2bda716 chore(release): publish
  • 8f680bf fix: clone the schema object before validating closes #4459
  • 5231f43 fix: respect validate on model update config closes #4451, closes #4467
  • 4d8ed7e feat: added reset opts to force values closes #4440
  • 4addb47 chore: useSetFormValues shouldValidate param (#4446)
  • Additional commits viewable in compare view

Updates zod from 3.21.4 to 3.22.2

Release notes

Sourced from zod's releases.

v3.22.2

Commits:

  • 13d9e6bda286cbd4c1b177171273695d8309e5de Fix lint
  • 0d49f10b3c25a8e4cbb6534cc0773b195c56d06d docs: add typeschema to ecosystem (#2626)
  • 8e4af7b56df6f2e3daf0dd825b986f1d963025ce X to Zod: add app.quicktype.io (#2668)
  • 792b3ef0d41c144cd10641c6966b98dae1222d82 Fix superrefine types

v3.22.0

ZodReadonly

This release introduces ZodReadonly and the .readonly() method on ZodType.

Calling .readonly() on any schema returns a ZodReadonly instance that wraps the original schema. The new schema parses all inputs using the original schema, then calls Object.freeze() on the result. The inferred type is also marked as readonly.

const schema = z.object({ name: string }).readonly();
type schema = z.infer<typeof schema>;
// Readonly<{name: string}>
const result = schema.parse({ name: "fido" });
result.name = "simba"; // error

The inferred type uses TypeScript's built-in readonly types when relevant.

z.array(z.string()).readonly();
// readonly string[]
z.tuple([z.string(), z.number()]).readonly();
// readonly [string, number]
z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>
z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>

Commits:

  • 6dad90785398885f7b058f5c0760d5ae5476b833 Comments
  • 56ace682e4cc89132c034a3ae2c13b2d5b1a0115 Fix deno test
  • 3809d54fc8c5dd0a0ce367bd2575fe3fdadf087d Add superforms
  • d1ad5221900af640bc3093a2fb0476ec0c94953e Add transloadit
  • a3bb701757127ffe05e773a2e449136b9b7efcb3 Testing on Typescript 5.0 (#2221)
  • 51e14beeab2f469fcbf18e3df44653e1643f5487 docs: update deprecated link (#2219)
  • a263814fc430db8d47430cd2884d2cea6b11c671 fixed Datetime & IP TOC links
  • 502384e56fe2b1f8173735df6c3b0d41bce04edc docs: add mobx-zod-form to form integrations (#2299)

... (truncated)

Commits

Updates @bg-dev/nuxt-naiveui from 1.2.1 to 1.4.6

Release notes

Sourced from @​bg-dev/nuxt-naiveui's releases.

v1.4.6

compare changes

🌊 Types

  • NaiveNavbar: Fix sticky type error (eb119fa) (#23)

🏡 Chore

  • Add typecheck to release workflow (a77ad8c)

❤️ Contributors

v1.4.5

compare changes

🩹 Fixes

  • NaiveNavbar: Fix layout (ad018c8)

❤️ Contributors

v1.4.4

compare changes

🔥 Performance

  • On load only update dom on pre-rendered pages (a2eeea2)

🩹 Fixes

  • NaiveNavbar: Fix left and right menu placement (9d39c4c)
  • Fix CLS on pre-rendered pages by allowing disable of theme defaults (e9d28de) (#21)

📖 Documentation

🏡 Chore

❤️ Contributors

... (truncated)

Changelog

Sourced from @​bg-dev/nuxt-naiveui's changelog.

v1.4.6

compare changes

🌊 Types

  • NaiveNavbar: Fix sticky type error (eb119fa)

🏡 Chore

  • Add typecheck to release workflow (a77ad8c)

❤️ Contributors

v1.4.5

compare changes

🩹 Fixes

  • NaiveNavbar: Fix layout (ad018c8)

❤️ Contributors

v1.4.4

compare changes

🔥 Performance

  • On load only update dom on pre-rendered pages (a2eeea2)

🩹 Fixes

  • NaiveNavbar: Fix left and right menu placement (9d39c4c)
  • Fix CLS on pre-rendered pages by allowing disable of theme defaults (e9d28de)

📖 Documentation

🏡 Chore

... (truncated)

Commits
  • ca02b7a chore(release): v1.4.5
  • ad018c8 fix(NaiveNavbar): Fix layout
  • fbacec6 chore(release): v1.4.4
  • 19ee949 chore: Fix lint issues
  • c967fa9 docs: Update content
  • e9d28de fix: Fix CLS on pre-rendered pages by allowing disable of theme defaults
  • 7c86f22 chore(playground): Add transitions
  • a2eeea2 perf: On load only update dom on pre-rendered pages
  • 9d39c4c fix(NaiveNavbar): Fix left and right menu placement
  • 27a8861 chore(release): v1.4.3
  • Additional commits viewable in compare view

Updates @nuxt/content from 2.7.0 to 2.8.2

Changelog

Sourced from @​nuxt/content's changelog.

v2.8.2

compare changes

🩹 Fixes

  • query: Prevent undefined error (b680b47c)
  • navigation: Prevent client-db conflict (fd8e3b82)
  • serverQueryContent: Do not expose advanced query typing (09e37c19)
  • document-driven: Invalid composable import (e56f71dc)
  • ContentList: Component slot typechecking (#2277)

❤️ Contributors

v2.8.1

compare changes

🩹 Fixes

  • Cannot read properties of undefined (11c3b09f)

❤️ Contributors

v2.8.0

compare changes

🚀 Enhancements

  • Add count method (#1924)
  • nuxt-mdc: Extract markdown parser (#2187)
  • Advanced query schema (#2213)
  • Allow to disable content head (#2142)

🩹 Fixes

  • Markdown render compatiblity (d81a08a2)
  • slot: Rename ContentSlot to MDCSlot in render function (efc60481)
  • module: Slot transform sourcemap (7558cf0d)
  • ProseImg: Prevent conflict between src and baseURL (#2242)
  • Custom drivers failed on build (#2193)
  • ContentRenderer: Render contents only with excerpt (#2246)
  • content-slot: Better slot name regex (329cf3bc)

... (truncated)

Commits
  • d920553 chore(release): release v2.8.2
  • 2d6cfaa chore(deps): update pnpm to v8.7.1 (#2275)
  • 467b757 fix(ContentList): component slot typechecking (#2277)
  • caa486f chore(deps): update @nuxtjs/mdc to ^0.1.6
  • e56f71d fix(document-driven): invalid composable import
  • ace20a2 chore(deps): update devdependency @​nuxt/module-builder to ^0.5.1 (#2271)
  • 09e37c1 fix(serverQueryContent): do not expose advanced query typing
  • 4360028 hore(deps): update @nuxtjs/mdc to ^0.1.5
  • 44e752f chore(deps): update dependency listhen to ^1.4.4 (#2268)
  • fd8e3b8 fix(navigation): prevent client-db conflict
  • Additional commits viewable in compare view

Updates @nuxt/devtools from 0.6.7 to 0.8.3

Release notes

Sourced from @​nuxt/devtools's releases.

v0.8.3

   🐞 Bug Fixes

    View changes on GitHub

v0.8.2

   🐞 Bug Fixes

    View changes on GitHub

v0.8.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.8.0

   🚨 Breaking Changes

   🚀 Features

    View changes on GitHub

v0.7.6

   🚀 Features

... (truncated)

Changelog

Sourced from @​nuxt/devtools's changelog.

0.8.3 (2023-09-06)

Bug Fixes

  • route tracking handle currentRoute to be null (7ca1fc9)

0.8.2 (2023-08-28)

Bug Fixes

  • virtual-files: fetch data as json (131a2ee)

0.8.1 (2023-08-28)

Bug Fixes

  • default box-sizing for floating panel (a674379)
  • find vite client path from subframe parent (#386) (e28606a)
  • improve client injection error message (de9baa3)

Features

0.8.0 (2023-08-10)

Features

  • components: show dependencies and dependents in component details (7dbc3d1)
  • composables useNuxtDevTools (#383) (e74b60c)
  • filter for used/unused components, close #358 (5012012)
  • ui-kit: add NSelectTab component (509a1ec)

0.7.6 (2023-08-09)

... (truncated)

Commits
  • bd5a8f1 chore: release v0.8.3
  • 7ca1fc9 fix: route tracking handle currentRoute to be null
  • 0dc4848 chore: update lock
  • cb0f025 chore: update deps
  • 1965b8d chore(deps): update actions/checkout action to v4 (#412)
  • 1c0502b refactor: internal implementation of getFolderSize, close #403 (#409)
  • d01ff8d chore: release v0.8.2
  • 131a2ee fix(virtual-files): fetch data as json
  • 44d07ff chore: update Nuxt Image docs
  • 7be3880 chore: fix types
  • Additional commits viewable in compare view

Updates @nuxtjs/eslint-config-typescript from 12.0.0 to 12.1.0

Changelog

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

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

Commits
Maintainer changes

This version was pushed to npm by danielroe, a new releaser for @​nuxtjs/eslint-config-typescript since your current version.


Updates @vee-validate/nuxt from 4.10.5 to 4.11.6

Release notes

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

v4.11.6

👕 TypeScript

This release is aimed at resolving #4421

  • useForm#defineComponentBinds is now more strict and provides accurate typings for both modelValue and update:modeValue properties. Previously they were not exposed.

Try the following example.

const { defineComponentBinds } = useForm({
  validationSchema: toTypedSchema(yup.object({
    date: yup.date().required(),
    number: yup.number().required(),
    string: yup.string().required(),
    valueModel: yup.string().required(),
  })),
});
const date = defineComponentBinds('date');
const number = defineComponentBinds('number');
const string = defineComponentBinds('string');
const valueModel = defineComponentBinds('valueModel');

v4.11.5

🐛 Bug Fixes

The latest release introduced a bug with detecting external changes to models when the default updateOnValueUpdate is set to true. This release fixes that #4404 (804ec6faa5effeda45187adefe380a9c8be89aec)

v4.11.4

🐛 Bug fixes

  • Silent validation should not mark a field as validated ( b53400e2)
  • Clone the schema object before validating typed schemas to avoid outputting proxies #4459 (8f680bf1)
  • Respect validateOnModelUpdate configuration #4451 #4467 (5231f439)

🆕 New features

  • feat: added reset options to force values changing to the given values without merging the old ones #4440 (4d8ed7eb)

v4.11.3

This release updates valibot support to v0.13.0 and replaces the usage of deprecated API methods. #4414 (#4415)

v4.11.2

🆕 New features

You can now query fields meta state using isFieldTouched, isFieldDirty, and isFieldValid helpers on useForm.

</tr></table> 

... (truncated)

Changelog

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

4.11.6

Patch Changes

  • Updated dependencies [f683e909]
    • vee-validate@4.11.6

4.11.5

Patch Changes

  • Updated dependencies [27c9ef24]
  • Updated dependencies [804ec6fa]
    • vee-validate@4.11.5

4.11.4

Patch Changes

  • Updated dependencies [4d8ed7eb]
  • Updated dependencies [b53400e2]
  • Updated dependencies [8f680bf1]
  • Updated dependencies [5231f439]
    • vee-validate@4.11.4

4.11.3

Patch Changes

  • vee-validate@4.11.3

4.11.2

Patch Changes

  • Updated dependencies [2ff045c1]
  • Updated dependencies [73219b40]
  • Updated dependencies [4947e88f]
  • Updated dependencies [ecbb690d]
    • vee-validate@4.11.2

4.11.1

Patch Changes

  • Updated dependencies [5e23dcb9]
    • vee-validate@4.11.1

4.11.0

... (truncated)

Commits

Updates nuxt from 3.6.2 to 3.7.3

Release notes

Sourced from nuxt's releases.

v3.7.3

3.7.3 is a hotfix release to address a regression introduced in 3.7.2.

👉 Changelog

compare changes

🩹 Fixes

  • nuxt: Ensure plugins retain original order (#23174)
  • nuxt: Allow importing server components from #components (#23188)

💅 Refactors

  • nuxt: Don't wrap server placeholders/client fallbacks (#21980)

📖 Documentation

  • Added missing leading slash (#23169)
  • Update internal issue decision making flowchart link (#23162)

❤️ Contributors

v3.7.2

3.7.2 is a regularly scheduled patch release.

✅ Upgrading

As usual, our recommendation for upgrading is to run:

nuxi upgrade

👉 Changelog

compare changes

🩹 Fixes

  • nuxt: Scroll to top by default on dynamic routes (#22403)
  • nuxt: Don't joinURL with remote sources on NuxtIsland (#23093)
  • nuxt: Exclude data-v attrs from server component props (#23095)
  • nuxt: Handle optional params within a path segment (#23070)
  • nuxt: Include method when creating useFetch auto key (#23086)

... (truncated)

Commits
  • 16e40f8 v3.7.3
  • cf59564 chore(deps): update all non-major dependencies (main) (#23173)
  • a95fd28 fix(nuxt): allow importing server components from #components (#23188)
  • 95d1f99 refactor(nuxt): don't wrap server placeholders/client fallbacks (#21980)
  • 084b2b0 docs: update internal issue decision making flowchart link (#23162)
  • 8c1eaa0 fix(nuxt): ensure plugins retain original order (#23174)
  • 6afbdc3 chore(deps): update all non-major dependencies to ^1.7.0 (main) (#23161)
  • f2ce8f6 docs: added missing leading slash (#23169)
  • ebacf19 v3.7.2
  • 84926cb chore(deps): update all non-major dependencies (main) (#23147)
  • Additional commits viewable in compare view

Updates nuxt-graphql-server from 2.0.1 to 3.0.0

Release notes

Sourced from nuxt-graphql-server's releases.

v3.0.0

3.0.0 (2023-09-15)

⚠ BREAKING CHANGES

  • resolve path resolve issues (on windows) and types for virtual modules (#68). As a side effect of this, it is no longer possible to import the schema on the client/vue-side.

🐛 Bug Fixes

  • hmr schema watcher had an always truthy conditional check (#67) (4104b50)
  • resolve path resolve issues (on windows) and types for virtual modules (#68) (5256e31)

🧹 Miscellaneous

  • deps: update actions/checkout action to v4 (#69) (4356e16)
  • deps: update all non-major dependencies (#62) (c613500)
  • deps: update devdependency eslint-config-prettier to v9 (#66) (b4591ce)
  • deps: update devdependency eslint-plugin-unused-imports to v3 (#65) (9211aea)
  • deps: update typescript-eslint monorepo to v6 (#63) (c718676)
  • fix badge url in the readme (#73) (cd20c96)
Changelog

Sourced from nuxt-graphql-server's changelog.

3.0.0 (2023-09-15)

⚠ BREAKING CHANGES

  • resolve path resolve issues (on windows) and types for virtual modules (#68)

🐛 Bug Fixes

  • hmr schema watcher had an always truthy conditional check (#67) (4104b50)
  • resolve path resolve issues (on windows) and types for virtual modules (#68) (5256e31)

🧹 Miscellaneous

  • deps: update actions/checkout action to v4 (#69) (4356e16)
  • deps: update all non-major dependencies (#62) (c613500)
  • deps: update devdependency eslint-config-prettier to v9 (#66) (b4591ce)
  • deps: update devdependency eslint-plugin-unused-imports to v3 (#65) (9211aea)
  • deps: update typescript-eslint monorepo to v6 (#63) (c718676)
  • fix badge url in the readme (#73) (cd20c96)
Commits
  • 8fe1441 chore(main): release 3.0.0 (#64)
  • cd20c96 chore: fix badge url in the readme (#73)
  • c613500 chore(deps): update all non-major dependencies (#62)
  • 5256e31 fix!: resolve path resolve issues (on windows) and types for virtual modules ...
  • 4356e16 chore(deps): update actions/checkout action to v4 (#69)
  • 4104b50 fix: hmr schema watcher had an always truthy conditional check (#67)
  • b4591ce chore(deps): update devdependency eslint-config-prettier to v9 (#66)
  • 9211aea chore(deps): update devdependency eslint-plugin-unused-imports to v3 (#65)
  • c718676 chore(deps): update typescript-eslint monorepo to v6 (#63)
  • See full diff in compare view

Updates nuxt-icon from 0.4.2 to 0.5.0

Release notes

Sourced from nuxt-icon's releases.

v0.5.0

What's Changed

    Description has been truncated

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-a473910121 branch 4 times, most recently from f88c0e3 to f120d0d Compare September 15, 2023 16:20
Bumps the nuxt group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@vee-validate/zod](https://github.com/logaretm/vee-validate/tree/HEAD/packages/zod) | `4.10.5` | `4.11.6` |
| [vee-validate](https://github.com/logaretm/vee-validate/tree/HEAD/packages/vee-validate) | `4.10.5` | `4.11.6` |
| [zod](https://github.com/colinhacks/zod) | `3.21.4` | `3.22.2` |
| [@bg-dev/nuxt-naiveui](https://github.com/becem-gharbi/nuxt-naiveui) | `1.2.1` | `1.4.6` |
| [@nuxt/content](https://github.com/nuxt/content) | `2.7.0` | `2.8.2` |
| [@nuxt/devtools](https://github.com/nuxt/devtools) | `0.6.7` | `0.8.3` |
| [@nuxtjs/eslint-config-typescript](https://github.com/nuxt/eslint-config) | `12.0.0` | `12.1.0` |
| [@vee-validate/nuxt](https://github.com/logaretm/vee-validate/tree/HEAD/packages/nuxt) | `4.10.5` | `4.11.6` |
| [nuxt](https://github.com/nuxt/nuxt) | `3.6.2` | `3.7.3` |
| [nuxt-graphql-server](https://github.com/tobiasdiez/nuxt-graphql-server) | `2.0.1` | `3.0.0` |
| [nuxt-icon](https://github.com/nuxt-modules/icon) | `0.4.2` | `0.5.0` |
| [nuxt-seo-kit](https://github.com/harlan-zw/nuxt-seo-kit) | `1.3.9` | `1.3.13` |
| [nuxt-vitest](https://github.com/danielroe/nuxt-vitest) | `0.9.0` | `0.10.5` |
| [ufo](https://github.com/unjs/ufo) | `1.1.2` | `1.3.0` |


Updates `@vee-validate/zod` from 4.10.5 to 4.11.6
- [Release notes](https://github.com/logaretm/vee-validate/releases)
- [Changelog](https://github.com/logaretm/vee-validate/blob/main/packages/zod/CHANGELOG.md)
- [Commits](https://github.com/logaretm/vee-validate/commits/v4.11.6/packages/zod)

Updates `vee-validate` from 4.10.5 to 4.11.6
- [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.11.6/packages/vee-validate)

Updates `zod` from 3.21.4 to 3.22.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.21.4...v3.22.2)

Updates `@bg-dev/nuxt-naiveui` from 1.2.1 to 1.4.6
- [Release notes](https://github.com/becem-gharbi/nuxt-naiveui/releases)
- [Changelog](https://github.com/becem-gharbi/nuxt-naiveui/blob/main/CHANGELOG.md)
- [Commits](becem-gharbi/nuxt-naiveui@v1.2.1...v1.4.6)

Updates `@nuxt/content` from 2.7.0 to 2.8.2
- [Release notes](https://github.com/nuxt/content/releases)
- [Changelog](https://github.com/nuxt/content/blob/main/CHANGELOG.md)
- [Commits](nuxt/content@v2.7.0...v2.8.2)

Updates `@nuxt/devtools` from 0.6.7 to 0.8.3
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/main/CHANGELOG.md)
- [Commits](nuxt/devtools@v0.6.7...v0.8.3)

Updates `@nuxtjs/eslint-config-typescript` from 12.0.0 to 12.1.0
- [Release notes](https://github.com/nuxt/eslint-config/releases)
- [Changelog](https://github.com/nuxt/eslint-config/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/eslint-config/commits)

Updates `@vee-validate/nuxt` from 4.10.5 to 4.11.6
- [Release notes](https://github.com/logaretm/vee-validate/releases)
- [Changelog](https://github.com/logaretm/vee-validate/blob/main/packages/nuxt/CHANGELOG.md)
- [Commits](https://github.com/logaretm/vee-validate/commits/v4.11.6/packages/nuxt)

Updates `nuxt` from 3.6.2 to 3.7.3
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](nuxt/nuxt@v3.6.2...v3.7.3)

Updates `nuxt-graphql-server` from 2.0.1 to 3.0.0
- [Release notes](https://github.com/tobiasdiez/nuxt-graphql-server/releases)
- [Changelog](https://github.com/tobiasdiez/nuxt-graphql-server/blob/main/CHANGELOG.md)
- [Commits](tobiasdiez/nuxt-graphql-server@v2.0.1...v3.0.0)

Updates `nuxt-icon` from 0.4.2 to 0.5.0
- [Release notes](https://github.com/nuxt-modules/icon/releases)
- [Commits](nuxt/icon@v0.4.2...v0.5.0)

Updates `nuxt-seo-kit` from 1.3.9 to 1.3.13
- [Release notes](https://github.com/harlan-zw/nuxt-seo-kit/releases)
- [Commits](harlan-zw/nuxt-seo@v1.3.9...v1.3.13)

Updates `nuxt-vitest` from 0.9.0 to 0.10.5
- [Release notes](https://github.com/danielroe/nuxt-vitest/releases)
- [Changelog](https://github.com/danielroe/nuxt-vitest/blob/main/CHANGELOG.md)
- [Commits](danielroe/nuxt-vitest@0.9.0...v0.10.5)

Updates `ufo` from 1.1.2 to 1.3.0
- [Release notes](https://github.com/unjs/ufo/releases)
- [Changelog](https://github.com/unjs/ufo/blob/main/CHANGELOG.md)
- [Commits](unjs/ufo@v1.1.2...v1.3.0)

---
updated-dependencies:
- dependency-name: "@vee-validate/zod"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: vee-validate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@bg-dev/nuxt-naiveui"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@nuxt/content"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@nuxt/devtools"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@nuxtjs/eslint-config-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@vee-validate/nuxt"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: nuxt
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: nuxt-graphql-server
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: nuxt
- dependency-name: nuxt-icon
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: nuxt-seo-kit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: nuxt
- dependency-name: nuxt-vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: ufo
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-a473910121 branch from f120d0d to e5ca56d Compare September 15, 2023 16:57
@github-actions
Copy link

@tobiasdiez tobiasdiez merged commit fb186e9 into main Sep 16, 2023
4 of 5 checks passed
@tobiasdiez tobiasdiez deleted the dependabot/npm_and_yarn/nuxt-a473910121 branch September 16, 2023 06:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant