Skip to content

chore(deps): bump the all-dependencies group across 1 directory with 43 updates - #886

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-dependencies-1b71e03522
Closed

chore(deps): bump the all-dependencies group across 1 directory with 43 updates#886
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-dependencies-1b71e03522

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 8, 2026

Copy link
Copy Markdown

Bumps the all-dependencies group with 43 updates in the / directory:

Package From To
@apollo/client 3.13.8 4.2.6
@fal-ai/client 1.6.2 1.10.1
@iconify-json/lucide 1.2.57 1.2.116
@iconify-json/simple-icons 1.2.43 1.2.89
@nuxt/fonts 0.11.4 0.14.0
@nuxt/icon 2.1.0 2.3.1
@nuxt/ui 4.1.0 4.9.0
@nuxtjs/i18n 10.1.2 10.4.0
@nuxtjs/seo 3.4.0 5.3.2
@pinia/nuxt 0.11.1 0.11.3
@polkadot/util-crypto 13.5.7 14.0.3
@posthog/nuxt 1.5.84 1.7.80
@tanstack/vue-query 5.83.0 5.101.2
@unhead/vue 2.0.12 3.1.7
@vueuse/core 13.9.0 14.3.0
@wagmi/vue 0.4.15 0.5.23
date-fns 4.1.0 4.4.0
dedot 0.14.1 1.3.0
gql.tada 1.8.11 1.11.2
markdown-it 14.1.0 14.3.0
nuxt 4.2.0 4.4.8
nuxt-svgo 4.2.6 5.3.0
ofetch 1.4.1 1.5.1
pinia 3.0.3 3.0.4
pinia-plugin-persistedstate 4.4.1 4.7.1
polkadot-api 1.20.0 2.1.7
try 1.0.0-beta.10 1.0.3
unzipit 1.4.3 2.0.3
valibot 1.1.0 1.4.2
vue 3.5.22 3.5.39
vue-chartjs 5.3.3 5.3.4
@antfu/eslint-config 6.1.0 9.1.0
@gql.tada/vue-support 1.0.1 1.0.3
@nuxt/eslint 1.14.0 1.16.0
@polkadot/apps-config 0.169.1 0.171.1
@types/lodash 4.17.20 4.17.24
@types/prismjs 1.26.5 1.26.6
baseline-browser-mapping 2.9.19 2.10.42
eslint 9.38.0 10.6.0
pino-pretty 13.1.1 13.1.3
typescript 5.8.3 6.0.3
vitest 4.0.18 4.1.10
vue-tsc 3.2.3 3.3.6

Updates @apollo/client from 3.13.8 to 4.2.6

Release notes

Sourced from @​apollo/client's releases.

@​apollo/client@​4.2.6

Patch Changes

  • #13315 a406cc9 Thanks @​fallintoplace! - Prevent relay multipart subscriptions from issuing a fetch request after serializing the request body fails.

  • #13307 abd0781 Thanks @​wolfie! - Speed up cache writes by avoiding a full AST visit of every written field to detect @stream. The check now runs only when the result carries stream info, and only inspects the field node's own directives. As a result, fields that merely contain @stream on a nested field are no longer treated as streamed themselves and now overwrite existing lists like regular fields instead of merging chunk-wise.

@​apollo/client@​4.2.5

Patch Changes

  • #13302 bb75dd3 Thanks @​tpict! - Export KeyArgsFunction and RelayFieldPolicy types from public entrypoints.

@​apollo/client@​4.2.4

Patch Changes

  • #13281 e4df809 Thanks @​jerelmiller! - Fixes an issue where client.readFragment and client.readQuery ignored the optimistic option when passed in the options object.

@​apollo/client@​4.2.3

Patch Changes

@​apollo/client@​4.2.2

Patch Changes

@​apollo/client@​4.2.1

Patch Changes

@​apollo/client@​4.2.0

Minor Changes

  • #13132 f3ce805 Thanks @​phryneas! - Introduce "classic" and "modern" method and hook signatures.

    Apollo Client 4.2 introduces two signature styles for methods and hooks. All signatures previously present are now "classic" signatures, and a new set of "modern" signatures are added alongside them.

    Classic signatures are the default and are identical to the signatures before Apollo Client 4.2, preserving backward compatibility. Classic signatures still work with manually specified TypeScript generics (e.g., useSuspenseQuery<MyData>(...)). However, manually specifying generics has been discouraged for a long time—instead, we recommend using TypedDocumentNode to automatically infer types, which provides more accurate results without any manual annotations.

    Modern signatures automatically incorporate your declared defaultOptions into return types, providing more accurate types. Modern signatures infer types from the document node and do not support manually passing generic type arguments; TypeScript will produce a type error if you attempt to do so.

    Methods and hooks automatically switch to modern signatures the moment any non-optional property is declared in DeclareDefaultOptions. The switch happens across all methods and hooks globally:

    // apollo.d.ts
    import "@apollo/client";
    declare module "@apollo/client" {
      namespace ApolloClient {

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

4.2.6

Patch Changes

  • #13315 a406cc9 Thanks @​fallintoplace! - Prevent relay multipart subscriptions from issuing a fetch request after serializing the request body fails.

  • #13307 abd0781 Thanks @​wolfie! - Speed up cache writes by avoiding a full AST visit of every written field to detect @stream. The check now runs only when the result carries stream info, and only inspects the field node's own directives. As a result, fields that merely contain @stream on a nested field are no longer treated as streamed themselves and now overwrite existing lists like regular fields instead of merging chunk-wise.

4.2.5

Patch Changes

  • #13302 bb75dd3 Thanks @​tpict! - Export KeyArgsFunction and RelayFieldPolicy types from public entrypoints.

4.2.4

Patch Changes

  • #13281 e4df809 Thanks @​jerelmiller! - Fixes an issue where client.readFragment and client.readQuery ignored the optimistic option when passed in the options object.

4.2.3

Patch Changes

4.2.2

Patch Changes

4.2.1

Patch Changes

4.2.0

Minor Changes

  • #13132 f3ce805 Thanks @​phryneas! - Introduce "classic" and "modern" method and hook signatures.

    Apollo Client 4.2 introduces two signature styles for methods and hooks. All signatures previously present are now "classic" signatures, and a new set of "modern" signatures are added alongside them.

    Classic signatures are the default and are identical to the signatures before Apollo Client 4.2, preserving backward compatibility. Classic signatures still work with manually specified TypeScript generics (e.g., useSuspenseQuery<MyData>(...)). However, manually specifying generics has been discouraged for a long time—instead, we recommend using TypedDocumentNode to automatically infer types, which provides more accurate results without any manual annotations.

    Modern signatures automatically incorporate your declared defaultOptions into return types, providing more accurate types. Modern signatures infer types from the document node and do not support manually passing generic type arguments; TypeScript will produce a type error if you attempt to do so.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​apollo/client since your current version.


Updates @fal-ai/client from 1.6.2 to 1.10.1

Release notes

Sourced from @​fal-ai/client's releases.

client-v1.10.1

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.10.0...client-v1.10.1

client-v1.10.0

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.9.6...client-v1.10.0

client-v1.9.6

What's Changed

New Contributors

Full Changelog: fal-ai/fal-js@client-v1.9.4...client-v1.9.6

client-v1.9.5

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.9.4...client-v1.9.5

client-v1.9.4

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.9.2...client-v1.9.4

client-v1.9.3

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.9.2...client-v1.9.3

... (truncated)

Commits
  • 442a757 fix(client): retry Node-level transport errors in subscribe/dispatch (#211)
  • f12065b feat(client): allow proxy middleware in non-browser runtimes (#209)
  • f22b69e chore(client): release 1.9.6 and update reference docs
  • 153ed56 feat(client): expose lifecycle ACL options in storage settings (#208)
  • 9830f25 chore: update endpoint types (#192)
  • 05d7302 cleanup realtime state machine and support live references (#202)
  • 5a97ffa fix(realtime): refresh tokens in background and clear on disconnect (#201)
  • b802926 fix(realtime): refresh tokens in background without dropping the WebSocket co...
  • ea9fc05 fix: use rest.fal.ai (#198)
  • 6603299 feat(client): pass normalized app+path to TokenProvider (#196)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​fal-ai/client since your current version.


Updates @iconify-json/lucide from 1.2.57 to 1.2.116

Commits

Updates @iconify-json/simple-icons from 1.2.43 to 1.2.89

Commits

Updates @nuxt/fonts from 0.11.4 to 0.14.0

Release notes

Sourced from @​nuxt/fonts's releases.

v0.14.0

0.14.0 is the next minor release.

🚨 Breaking changes

Default font format is now woff2 only

Font providers previously returned multiple formats (woff2, woff, truetype, etc.). The default behavior now only resolves woff2 fonts, which is supported by all modern browsers.

Your @font-face declarations will typically have fewer src entries, reducing CSS size. In most cases this is a transparent improvement.

To restore the previous behavior or add additional formats:

export default defineNuxtConfig({
  fonts: {
    defaults: {
      formats: ['woff2', 'woff', 'ttf'],
    },
  },
})

Available values: 'woff2', 'woff', 'ttf', 'otf', 'eot'.

Cache invalidation

Font metadata caches are now isolated per provider and per provider options. After upgrading, your font metadata cache (node_modules/.cache/nuxt/fonts/) will be invalidated and fonts will be re-fetched on the next build. This is a one-time occurrence.

✨ Features

Resolve fonts from node_modules

A new built-in npm provider can resolve fonts installed as npm packages. If no other provider matches a font family, @nuxt/fonts will now attempt to find it in your node_modules via CDN metadata.

export default defineNuxtConfig({
  fonts: {
    npm: {
      // options for the npm provider (optional)
    },
  },
})

Font format resolution

You can control which font formats are resolved via the new defaults.formats option:

</tr></table> 

... (truncated)

Commits
  • 95b332b v0.14.0
  • fce0318 feat: add support for resolving fonts from local node_modules (#781)
  • 035091a test: update snapshots for adobe preloads
  • 9d7715d fix(deps): bump unifont + reenable adobe tests
  • aedb0e1 chore(deps): update devdependency eslint to v10 (#778)
  • de70796 chore(deps): update all non-major dependencies (#762)
  • 25c87c4 chore: remove changelog (in favour of github releases)
  • 171c9a4 feat: support lightningcss transforms
  • 6e8e343 fix: include more css-ish files when injecting font-families
  • 0ec437e fix: prevent font flashes in development
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​nuxt/fonts since your current version.


Updates @nuxt/icon from 2.1.0 to 2.3.1

Release notes

Sourced from @​nuxt/icon's releases.

v2.3.1

   🐞 Bug Fixes

    View changes on GitHub

v2.3.0

   🚀 Features

    View changes on GitHub

v2.2.5

   🐞 Bug Fixes

    View changes on GitHub

v2.2.4

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v2.2.3

   🐞 Bug Fixes

    View changes on GitHub

v2.2.2

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • fe6a78a chore: release v2.3.1
  • 1345dc9 fix: include Nuxt layers in icon scanner context. (#505)
  • c56ee64 chore: release v2.3.0
  • b386fbb feat: standalone Vite plugin and reusable utils for client icon bundling (#506)
  • fa3c999 chore: release v2.2.5
  • 8733d53 chore(deps): lock file maintenance (#489)
  • c948339 chore(deps): update all non-major dependencies (#503)
  • c4f7935 fix: don't hard-fail on unresolvable hook-contributed client bundle icons (#504)
  • 23ef020 chore: release v2.2.4
  • c39349f chore(deps): update all non-major dependencies (#498)
  • Additional commits viewable in compare view

Updates @nuxt/ui from 4.1.0 to 4.9.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.9.0

✨ Highlights

📆 Calendar month and year selection

The Calendar component gains a single type prop (date | month | year, default date) that renders it as a day, month or year picker, covering both standalone pickers and quick navigation:

<script setup lang="ts">
const value = shallowRef(new CalendarDate(2026, 6, 17))
</script>
&lt;template>
<UCalendar v-model="value" type="month" />
</template>

[!TIP] In date mode the heading also becomes a clickable button that cycles day → month → year, so you can jump to a month or year without clicking through prev / next repeatedly. This is controlled by the new viewControls and viewButton props and works with range.

🧭 useTour composable

The new useTour composable drives guided tours by re-anchoring a single Popover across steps. It owns the step state and resolves each step's target into a reference you bind to <UPopover>, while you keep full control over the content and navigation:

<script setup lang="ts">
const card = useTemplateRef('card')
const tour = useTour([
{ target: '#cta', title: 'Get started' },
{ target: () => card.value, title: 'Profile', side: 'right' },
{ target: null, title: 'All set' }
])
</script>
&lt;template>
<UButton @​click="tour.start()">Start tour</UButton>
<UPopover :open="tour.open.value" :reference="tour.reference.value" :dismissible="false">
&lt;template #content>
<!-- your content + buttons -->
<UButton :disabled="!tour.hasPrev.value" @​click="tour.prev()">Back</UButton>
<UButton @​click="tour.next()">{{ tour.hasNext.value ? 'Next' : 'Finish' }}</UButton>
</template>
</UPopover>
</template>

✂️ Override default classes

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.9.0 (2026-06-17)

Features

Bug Fixes

  • CommandPalette: only scroll to highlighted item when focused (#6579) (02259a6)
  • Link: set default for locale prop (#6563) (e9ab758)
  • module: remove inline script in SPA mode for strict CSP (#6577) (7225e9f)
  • ProseCodeCollapse: cap root max-height instead of toggling pre height (#6565) (52d3c45)
  • ProseKbd: type default slot as VNode[] (52367b1)
  • SelectMenu: bind id and aria attributes on trigger (#6572) (c3bef7a)
  • Select: open menu on label click (#6575) (e8d18c3)
  • Tabs: render active indicator during SSR (#6570) (9e5b8a6)
  • templates: resolve vite root to an absolute path for #build aliases (#6586) (238e291)

4.8.2 (2026-06-04)

Bug Fixes

  • Form: support setting the name attribute (#6539) (f8186e2)
  • InputMenu/SelectMenu: re-highlight first item when items change (#6538) (0414dd0)
  • InputNumber/InputDate/InputTime/Calendar: restore locale prop (#6546) (ed2f955)
  • module: merge custom variants into AppConfig type (#6531) (f0571c3)

4.8.1 (2026-05-28)

Bug Fixes

  • ContentSearch/DashboardSearch: proxy missing CommandPalette props (#6505) (631f5dc)
  • Form: add method="post" to prevent credential leaking via GET before hydration (#6512) (7a0825a)
  • Icon: avoid recursive icon resolution (#6495) (d50c121)
  • locale: improve Thai translation accuracy and consistency (#6509) (5d82418)

... (truncated)

Commits
  • 2166ff7 chore(release): v4.9.0
  • 92b7e13 docs(tabs): add bottom tab bar example (#6585)
  • 7225e9f fix(module): remove inline script in SPA mode for strict CSP (#6577)
  • cccb3d5 feat(vite): add root option to override .nuxt-ui directory location (#6595)
  • 09eb639 feat(components): allow hiding icon with false (#6597)
  • 006324a feat(Modal/Slideover): add leave and enter events (#6596)
  • f99778e feat(ChatMessages): expose registerMessageRef (#6275)
  • c34ab92 chore(deps): update tiptap to ^3.26.1 (#6593)
  • 7e35950 chore(deps): update all non-major dependencies (#6592)
  • 3909032 chore(deps): update dependency @​nuxtjs/color-mode to v4 (#6050)
  • Additional commits viewable in compare view

Updates @nuxtjs/i18n from 10.1.2 to 10.4.0

Release notes

Sourced from @​nuxtjs/i18n's releases.

v10.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v10.3.0

   🚀 Features

  • Experimental regex routes  -  by @​BobbieGoede in nuxt-modules/i18n#3957 (07a9b)
    • consolidates per-locale route duplication into regex-based routes, significantly reducing the route count in apps with many locales. Opt-in via experimental.compactRoutes: true.

   🐞 Bug Fixes

    View changes on GitHub

v10.2.4

   🐞 Bug Fixes

    View changes on GitHub

v10.2.3

No significant changes

    View changes on GitHub

v10.2.2

   🐞 Bug Fixes

... (truncated)

Changelog

Sourced from @​nuxtjs/i18n's changelog.

v10.4.0 (2026-05-21T13:43:10Z)

This changelog is generated by GitHub Releases

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v10.3.0 (2026-04-24T14:20:59Z)

This changelog is generated by GitHub Releases

   🚀 Features

   🐞 Bug Fixes

…43 updates

Bumps the all-dependencies group with 43 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.13.8` | `4.2.6` |
| [@fal-ai/client](https://github.com/fal-ai/fal-js/tree/HEAD/libs/client) | `1.6.2` | `1.10.1` |
| [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.57` | `1.2.116` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.43` | `1.2.89` |
| [@nuxt/fonts](https://github.com/nuxt/fonts) | `0.11.4` | `0.14.0` |
| [@nuxt/icon](https://github.com/nuxt/icon) | `2.1.0` | `2.3.1` |
| [@nuxt/ui](https://github.com/nuxt/ui) | `4.1.0` | `4.9.0` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `10.1.2` | `10.4.0` |
| [@nuxtjs/seo](https://github.com/harlan-zw/nuxt-seo/tree/HEAD/packages/nuxt-seo) | `3.4.0` | `5.3.2` |
| [@pinia/nuxt](https://github.com/vuejs/pinia) | `0.11.1` | `0.11.3` |
| [@polkadot/util-crypto](https://github.com/polkadot-js/common/tree/HEAD/packages/util-crypto) | `13.5.7` | `14.0.3` |
| [@posthog/nuxt](https://github.com/PostHog/posthog-js/tree/HEAD/packages/nuxt) | `1.5.84` | `1.7.80` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.83.0` | `5.101.2` |
| [@unhead/vue](https://github.com/unjs/unhead/tree/HEAD/packages/vue) | `2.0.12` | `3.1.7` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `13.9.0` | `14.3.0` |
| [@wagmi/vue](https://github.com/wevm/wagmi/tree/HEAD/packages/vue) | `0.4.15` | `0.5.23` |
| [date-fns](https://github.com/date-fns/date-fns) | `4.1.0` | `4.4.0` |
| [dedot](https://github.com/dedotdev/dedot/tree/HEAD/packages/dedot) | `0.14.1` | `1.3.0` |
| [gql.tada](https://github.com/0no-co/gql.tada) | `1.8.11` | `1.11.2` |
| [markdown-it](https://github.com/markdown-it/markdown-it) | `14.1.0` | `14.3.0` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.2.0` | `4.4.8` |
| [nuxt-svgo](https://github.com/cpsoinos/nuxt-svgo) | `4.2.6` | `5.3.0` |
| [ofetch](https://github.com/unjs/ofetch) | `1.4.1` | `1.5.1` |
| [pinia](https://github.com/vuejs/pinia) | `3.0.3` | `3.0.4` |
| [pinia-plugin-persistedstate](https://github.com/prazdevs/pinia-plugin-persistedstate) | `4.4.1` | `4.7.1` |
| [polkadot-api](https://github.com/polkadot-api/polkadot-api) | `1.20.0` | `2.1.7` |
| [try](https://github.com/arthurfiorette/try) | `1.0.0-beta.10` | `1.0.3` |
| [unzipit](https://github.com/greggman/unzipit) | `1.4.3` | `2.0.3` |
| [valibot](https://github.com/open-circle/valibot) | `1.1.0` | `1.4.2` |
| [vue](https://github.com/vuejs/core) | `3.5.22` | `3.5.39` |
| [vue-chartjs](https://github.com/apertureless/vue-chartjs) | `5.3.3` | `5.3.4` |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `6.1.0` | `9.1.0` |
| [@gql.tada/vue-support](https://github.com/0no-co/gql.tada/tree/HEAD/packages/vue-support) | `1.0.1` | `1.0.3` |
| [@nuxt/eslint](https://github.com/nuxt/eslint/tree/HEAD/packages/module) | `1.14.0` | `1.16.0` |
| [@polkadot/apps-config](https://github.com/polkadot-js/apps/tree/HEAD/packages/apps-config) | `0.169.1` | `0.171.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.20` | `4.17.24` |
| [@types/prismjs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prismjs) | `1.26.5` | `1.26.6` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.9.19` | `2.10.42` |
| [eslint](https://github.com/eslint/eslint) | `9.38.0` | `10.6.0` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `13.1.1` | `13.1.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `6.0.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.10` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.2.3` | `3.3.6` |



Updates `@apollo/client` from 3.13.8 to 4.2.6
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](https://github.com/apollographql/apollo-client/compare/v3.13.8...@apollo/client@4.2.6)

Updates `@fal-ai/client` from 1.6.2 to 1.10.1
- [Release notes](https://github.com/fal-ai/fal-js/releases)
- [Commits](https://github.com/fal-ai/fal-js/commits/client-v1.10.1/libs/client)

Updates `@iconify-json/lucide` from 1.2.57 to 1.2.116
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify-json/simple-icons` from 1.2.43 to 1.2.89
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@nuxt/fonts` from 0.11.4 to 0.14.0
- [Release notes](https://github.com/nuxt/fonts/releases)
- [Commits](nuxt/fonts@v0.11.4...v0.14.0)

Updates `@nuxt/icon` from 2.1.0 to 2.3.1
- [Release notes](https://github.com/nuxt/icon/releases)
- [Commits](nuxt/icon@v2.1.0...v2.3.1)

Updates `@nuxt/ui` from 4.1.0 to 4.9.0
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.1.0...v4.9.0)

Updates `@nuxtjs/i18n` from 10.1.2 to 10.4.0
- [Release notes](https://github.com/nuxt-modules/i18n/releases)
- [Changelog](https://github.com/nuxt-modules/i18n/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/i18n@v10.1.2...v10.4.0)

Updates `@nuxtjs/seo` from 3.4.0 to 5.3.2
- [Release notes](https://github.com/harlan-zw/nuxt-seo/releases)
- [Changelog](https://github.com/harlan-zw/nuxt-seo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/harlan-zw/nuxt-seo/commits/v5.3.2/packages/nuxt-seo)

Updates `@pinia/nuxt` from 0.11.1 to 0.11.3
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](https://github.com/vuejs/pinia/compare/@pinia/nuxt@0.11.1...@pinia/nuxt@0.11.3)

Updates `@polkadot/util-crypto` from 13.5.7 to 14.0.3
- [Release notes](https://github.com/polkadot-js/common/releases)
- [Changelog](https://github.com/polkadot-js/common/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/common/commits/v14.0.3/packages/util-crypto)

Updates `@posthog/nuxt` from 1.5.84 to 1.7.80
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/nuxt/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/commits/@posthog/nuxt@1.7.80/packages/nuxt)

Updates `@tanstack/vue-query` from 5.83.0 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/vue-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/vue-query@5.101.2/packages/vue-query)

Updates `@unhead/vue` from 2.0.12 to 3.1.7
- [Release notes](https://github.com/unjs/unhead/releases)
- [Commits](https://github.com/unjs/unhead/commits/v3.1.7/packages/vue)

Updates `@vueuse/core` from 13.9.0 to 14.3.0
- [Release notes](https://github.com/vueuse/vueuse/releases)
- [Commits](https://github.com/vueuse/vueuse/commits/v14.3.0/packages/core)

Updates `@wagmi/vue` from 0.4.15 to 0.5.23
- [Release notes](https://github.com/wevm/wagmi/releases)
- [Changelog](https://github.com/wevm/wagmi/blob/main/packages/vue/CHANGELOG.md)
- [Commits](https://github.com/wevm/wagmi/commits/@wagmi/vue@0.5.23/packages/vue)

Updates `date-fns` from 4.1.0 to 4.4.0
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Commits](date-fns/date-fns@v4.1.0...v4.4.0)

Updates `dedot` from 0.14.1 to 1.3.0
- [Release notes](https://github.com/dedotdev/dedot/releases)
- [Commits](https://github.com/dedotdev/dedot/commits/v1.3.0/packages/dedot)

Updates `gql.tada` from 1.8.11 to 1.11.2
- [Release notes](https://github.com/0no-co/gql.tada/releases)
- [Changelog](https://github.com/0no-co/gql.tada/blob/main/CHANGELOG.md)
- [Commits](https://github.com/0no-co/gql.tada/compare/gql.tada@1.8.11...gql.tada@1.11.2)

Updates `markdown-it` from 14.1.0 to 14.3.0
- [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md)
- [Commits](markdown-it/markdown-it@14.1.0...14.3.0)

Updates `nuxt` from 4.2.0 to 4.4.8
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v4.4.8/packages/nuxt)

Updates `nuxt-svgo` from 4.2.6 to 5.3.0
- [Release notes](https://github.com/cpsoinos/nuxt-svgo/releases)
- [Changelog](https://github.com/cpsoinos/nuxt-svgo/blob/main/CHANGELOG.md)
- [Commits](cpsoinos/nuxt-svgo@v4.2.6...v5.3.0)

Updates `ofetch` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/unjs/ofetch/releases)
- [Changelog](https://github.com/unjs/ofetch/blob/main/CHANGELOG.md)
- [Commits](unjs/ofetch@v1.4.1...v1.5.1)

Updates `pinia` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](vuejs/pinia@v3.0.3...v3.0.4)

Updates `pinia-plugin-persistedstate` from 4.4.1 to 4.7.1
- [Release notes](https://github.com/prazdevs/pinia-plugin-persistedstate/releases)
- [Changelog](https://github.com/prazdevs/pinia-plugin-persistedstate/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prazdevs/pinia-plugin-persistedstate/commits)

Updates `polkadot-api` from 1.20.0 to 2.1.7
- [Release notes](https://github.com/polkadot-api/polkadot-api/releases)
- [Changelog](https://github.com/polkadot-api/polkadot-api/blob/main/NEWS.md)
- [Commits](https://github.com/polkadot-api/polkadot-api/compare/polkadot-api@1.20.0...polkadot-api@2.1.7)

Updates `try` from 1.0.0-beta.10 to 1.0.3
- [Release notes](https://github.com/arthurfiorette/try/releases)
- [Commits](arthurfiorette/try@v1.0.0-beta.10...v1.0.3)

Updates `unzipit` from 1.4.3 to 2.0.3
- [Commits](greggman/unzipit@v1.4.3...v2.0.3)

Updates `valibot` from 1.1.0 to 1.4.2
- [Release notes](https://github.com/open-circle/valibot/releases)
- [Commits](open-circle/valibot@v1.1.0...v1.4.2)

Updates `vue` from 3.5.22 to 3.5.39
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.22...v3.5.39)

Updates `vue-chartjs` from 5.3.3 to 5.3.4
- [Release notes](https://github.com/apertureless/vue-chartjs/releases)
- [Changelog](https://github.com/apertureless/vue-chartjs/blob/main/CHANGELOG.md)
- [Commits](apertureless/vue-chartjs@v5.3.3...v5.3.4)

Updates `@antfu/eslint-config` from 6.1.0 to 9.1.0
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v6.1.0...v9.1.0)

Updates `@gql.tada/vue-support` from 1.0.1 to 1.0.3
- [Release notes](https://github.com/0no-co/gql.tada/releases)
- [Changelog](https://github.com/0no-co/gql.tada/blob/main/packages/vue-support/CHANGELOG.md)
- [Commits](https://github.com/0no-co/gql.tada/commits/@gql.tada/vue-support@1.0.3/packages/vue-support)

Updates `@nuxt/eslint` from 1.14.0 to 1.16.0
- [Release notes](https://github.com/nuxt/eslint/releases)
- [Commits](https://github.com/nuxt/eslint/commits/v1.16.0/packages/module)

Updates `@polkadot/apps-config` from 0.169.1 to 0.171.1
- [Release notes](https://github.com/polkadot-js/apps/releases)
- [Changelog](https://github.com/polkadot-js/apps/blob/master/CHANGELOG.md)
- [Commits](https://github.com/polkadot-js/apps/commits/v0.171.1/packages/apps-config)

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

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

Updates `baseline-browser-mapping` from 2.9.19 to 2.10.42
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.9.19...v2.10.42)

Updates `eslint` from 9.38.0 to 10.6.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.38.0...v10.6.0)

Updates `pino-pretty` from 13.1.1 to 13.1.3
- [Release notes](https://github.com/pinojs/pino-pretty/releases)
- [Commits](pinojs/pino-pretty@v13.1.1...v13.1.3)

Updates `typescript` from 5.8.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.8.3...v6.0.3)

Updates `vitest` from 4.0.18 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)

Updates `vue-tsc` from 3.2.3 to 3.3.6
- [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/v3.3.6/packages/tsc)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-version: 4.2.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@fal-ai/client"
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@iconify-json/lucide"
  dependency-version: 1.2.116
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.89
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@nuxt/fonts"
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxt/icon"
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxt/ui"
  dependency-version: 4.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxtjs/i18n"
  dependency-version: 10.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxtjs/seo"
  dependency-version: 5.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@pinia/nuxt"
  dependency-version: 0.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@polkadot/util-crypto"
  dependency-version: 14.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@posthog/nuxt"
  dependency-version: 1.7.80
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@unhead/vue"
  dependency-version: 3.1.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vueuse/core"
  dependency-version: 14.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@wagmi/vue"
  dependency-version: 0.5.23
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: date-fns
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: dedot
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: gql.tada
  dependency-version: 1.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: markdown-it
  dependency-version: 14.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: nuxt
  dependency-version: 4.4.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: nuxt-svgo
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: ofetch
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: pinia
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: pinia-plugin-persistedstate
  dependency-version: 4.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: polkadot-api
  dependency-version: 2.1.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: try
  dependency-version: 1.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: unzipit
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: valibot
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vue
  dependency-version: 3.5.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: vue-chartjs
  dependency-version: 5.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@antfu/eslint-config"
  dependency-version: 9.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@gql.tada/vue-support"
  dependency-version: 1.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@nuxt/eslint"
  dependency-version: 1.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@polkadot/apps-config"
  dependency-version: 0.171.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/lodash"
  dependency-version: 4.17.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/prismjs"
  dependency-version: 1.26.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.42
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-version: 10.6.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: pino-pretty
  dependency-version: 13.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 Jul 8, 2026
@vercel

vercel Bot commented Jul 8, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
app Error Error Jul 8, 2026 12:08am
koda Error Error Jul 8, 2026 12:08am

@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying app with  Cloudflare Pages  Cloudflare Pages

Latest commit: ebd0390
Status:🚫  Build failed.

View logs

@railway-app

railway-app Bot commented Jul 8, 2026

Copy link
Copy Markdown

🚅 Deployed to the app-pr-886 environment in chaotic-art-preview

Service Status Web Updated (UTC)
app ❌ Build Failed (View Logs) Web Jul 8, 2026 at 12:08 am

@dependabot @github

dependabot Bot commented on behalf of github Jul 9, 2026

Copy link
Copy Markdown
Author

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

@dependabot dependabot Bot closed this Jul 9, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/all-dependencies-1b71e03522 branch July 9, 2026 00:04
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