Skip to content

Comments

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

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-dependencies-866a2483e7
Open

chore(deps): bump the all-dependencies group across 1 directory with 37 updates#755
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-dependencies-866a2483e7

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 29, 2026

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

Package From To
@apollo/client 3.13.8 4.1.3
@fal-ai/client 1.6.2 1.8.4
@iconify-json/lucide 1.2.57 1.2.87
@iconify-json/simple-icons 1.2.43 1.2.68
@nuxt/fonts 0.11.4 0.13.0
@nuxt/icon 2.1.0 2.2.1
@nuxt/scripts 0.13.0 0.13.2
@nuxt/test-utils 3.20.1 3.23.0
@nuxt/ui 4.1.0 4.4.0
@nuxtjs/i18n 10.1.2 10.2.1
@nuxtjs/seo 3.3.0 3.4.0
@pinia/nuxt 0.11.1 0.11.3
@polkadot/util-crypto 13.5.7 14.0.1
@reown/appkit 1.8.12 1.8.17
@reown/appkit-adapter-wagmi 1.8.12 1.8.17
@tanstack/vue-query 5.83.0 5.92.9
@unhead/vue 2.0.12 2.1.2
@vueuse/core 13.9.0 14.1.0
@wagmi/vue 0.3.1 0.4.14
dedot 0.14.1 1.0.2
gql.tada 1.8.11 1.9.0
nuxt 4.2.0 4.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 1.23.3
try 1.0.0-beta.10 1.0.3
valibot 1.1.0 1.2.0
vue 3.5.22 3.5.27
@antfu/eslint-config 6.1.0 7.2.0
@nuxt/eslint 1.10.0 1.13.0
@polkadot/apps-config 0.166.1 0.169.1
@types/lodash 4.17.20 4.17.23
eslint 9.38.0 9.39.2
pino-pretty 13.1.1 13.1.3
typescript 5.8.3 5.9.3
vue-tsc 3.2.3 3.2.4

Updates @apollo/client from 3.13.8 to 4.1.3

Release notes

Sourced from @​apollo/client's releases.

@​apollo/client@​4.1.3

Patch Changes

  • #13111 bf46fe0 Thanks @​RogerHYang! - Fix createFetchMultipartSubscription to support cancellation via AbortController

    Previously, calling dispose() or unsubscribe() on a subscription created by createFetchMultipartSubscription had no effect - the underlying fetch request would continue running until completion. This was because no AbortController was created or passed to fetch(), and no cleanup function was returned from the Observable.

@​apollo/client@​4.1.2

Patch Changes

  • #13105 8b62263 Thanks @​phryneas! - ssrMode, ssrForceFetchDelay or prioritizeCacheValues should not override fetchPolicy: 'cache-only', fetchPolicy: 'no-cache', fetchPolicy: 'standby', skip: true, or skipToken when reading the initial value of an ObservableQuery.

  • #13105 8b62263 Thanks @​phryneas! - Fix skipToken in useQuery with prerenderStatic and related SSR functions.

  • #13105 8b62263 Thanks @​phryneas! - Avoid fetches with fetchPolicy: no-cache in useQuery with prerenderStatic and related SSR functions.

@​apollo/client@​4.1.1

Patch Changes

@​apollo/client@​4.1.0

Minor Changes

  • #13043 65e66ca Thanks @​jerelmiller! - Support headers transport for enhanced client awareness.

  • #12927 785e223 Thanks @​jerelmiller! - You can now provide a callback function as the context option on the mutate function returned by useMutation. The callback function is called with the value of the context option provided to the useMutation hook. This is useful if you'd like to merge the context object provided to the useMutation hook with a value provided to the mutate function.

    function MyComponent() {
      const [mutate, result] = useMutation(MUTATION, {
        context: { foo: true },
      });
    async function runMutation() {
    await mutate({
    // sends context as { foo: true, bar: true }
    context: (hookContext) => ({ ...hookContext, bar: true }),
    });
    }
    // ...
    }

  • #12923 94ea3e3 Thanks @​jerelmiller! - Fix an issue where deferred payloads that returned arrays with fewer items than the original cached array would retain items from the cached array. This change includes @stream arrays where stream arrays replace the cached arrays.

  • #12927 96b531f Thanks @​jerelmiller! - Don't set the fallback value of a @client field to null when a read function is defined. Instead the read function will be called with an existing value of undefined to allow default arguments to be used to set the returned value.

    When a read function is not defined nor is there a defined resolver for the field, warn and set the value to null only in that instance.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

4.1.3

Patch Changes

  • #13111 bf46fe0 Thanks @​RogerHYang! - Fix createFetchMultipartSubscription to support cancellation via AbortController

    Previously, calling dispose() or unsubscribe() on a subscription created by createFetchMultipartSubscription had no effect - the underlying fetch request would continue running until completion. This was because no AbortController was created or passed to fetch(), and no cleanup function was returned from the Observable.

4.1.2

Patch Changes

  • #13105 8b62263 Thanks @​phryneas! - ssrMode, ssrForceFetchDelay or prioritizeCacheValues should not override fetchPolicy: 'cache-only', fetchPolicy: 'no-cache', fetchPolicy: 'standby', skip: true, or skipToken when reading the initial value of an ObservableQuery.

  • #13105 8b62263 Thanks @​phryneas! - Fix skipToken in useQuery with prerenderStatic and related SSR functions.

  • #13105 8b62263 Thanks @​phryneas! - Avoid fetches with fetchPolicy: no-cache in useQuery with prerenderStatic and related SSR functions.

4.1.1

Patch Changes

4.1.0

Minor Changes

  • #13043 65e66ca Thanks @​jerelmiller! - Support headers transport for enhanced client awareness.

  • #12927 785e223 Thanks @​jerelmiller! - You can now provide a callback function as the context option on the mutate function returned by useMutation. The callback function is called with the value of the context option provided to the useMutation hook. This is useful if you'd like to merge the context object provided to the useMutation hook with a value provided to the mutate function.

    function MyComponent() {
      const [mutate, result] = useMutation(MUTATION, {
        context: { foo: true },
      });
    async function runMutation() {
    await mutate({
    // sends context as { foo: true, bar: true }
    context: (hookContext) => ({ ...hookContext, bar: true }),
    });
    }
    // ...
    }

  • #12923 94ea3e3 Thanks @​jerelmiller! - Fix an issue where deferred payloads that returned arrays with fewer items than the original cached array would retain items from the cached array. This change includes @stream arrays where stream arrays replace the cached arrays.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​apollo/client since your current version.


Updates @fal-ai/client from 1.6.2 to 1.8.4

Release notes

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

client-v1.8.3

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.8.2...client-v1.8.3

client-v1.8.2

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.8.1...client-v1.8.2

client-v1.8.1

What's Changed

Full Changelog: fal-ai/fal-js@client-v1.8.0...client-v1.8.1

client-v1.8.0

What's Changed

New Contributors

Full Changelog: fal-ai/fal-js@client-v1.7.2...client-v1.8.0

client-v1.7.2

What's Changed

New Contributors

Full Changelog: fal-ai/fal-js@client-v1.7.0...client-v1.7.2

client-v1.7.1

... (truncated)

Commits
  • 9b08a70 chore(client): bump version for 1.8.4 release (#183)
  • c72e7d4 feat: added user-defined timeouts (#182)
  • 414420f chore(client): bump version for 1.8.3 release
  • dd68d62 feat(realtime): introduce resultType="json" (#180)
  • d44e2ec chore(client): bump version for 1.8.2 release
  • 1c1f0c3 feat(realtime): add configurable path (#179)
  • da8e66d feat(client): object lifecycle option added (#174)
  • c68bd2e chore(proxy): bump version to 1.1.2 (#173)
  • 8dbedab chore(client): update README for credential and doc links (#172)
  • 7c81c20 chore: upgrade node and npm
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​fal-ai/client since your current version.


Updates @iconify-json/lucide from 1.2.57 to 1.2.87

Commits

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

Commits

Updates @nuxt/fonts from 0.11.4 to 0.13.0

Release notes

Sourced from @​nuxt/fonts's releases.

v0.12.1

0.12.1 is the next patch release.

This is a rerelease of 0.12.0, which encountered an issue in the publishing process. See release notes for v0.12.0.

👉 Changelog

compare changes

🏡 Chore

  • Update workspace version for devtools (#724)

❤️ Contributors

v0.12.0

0.12.0 is the next major release.

👀 Highlights

There are a few breaking changes here, including major upgrades in unifont, fontaine + moving to a new fontless abstraction, setting default font weight, and more.

A visual check on upgrade is important - and let me know if you encounter any issues.

👉 Changelog

compare changes

🔥 Performance

  • Implement plugin hook filter (#683)
  • Use code filter when processCSSVariables is disabled (509adfd)
  • Initialise providers in parallel with nuxt setup (#688)

🩹 Fixes

  • deps: ⚠️ Upgrade unifont (f0584d0)
  • ⚠️ Set default font weight to 400 700 (#658)

💅 Refactors

  • Extract core utilities in preparation for fontless (#627)
  • Use new fontless package (#645)
  • Use extendViteConfig to set up devtools (05212ff)

📖 Documentation

  • Add callout for variable font weight (#635)

... (truncated)

Commits
  • 2114bc9 v0.13.0
  • 8357f48 chore(deps): lock file maintenance (#755)
  • b2121d4 chore(deps): update all non-major dependencies (#754)
  • 2daad4e chore: include .nuxt types + migrate to ts projects
  • b2406ef chore(deps): update dependency h3 to v1.15.5 [security] (#761)
  • 593af6e feat: add fonts:public-asset-context hook (#758)
  • 08b8fcb ci: simplify
  • 8d1165b ci: update name + hash
  • e8ffe84 ci: pass base-ref + head-ref to reusable workflow
  • f40c07c ci: try pinning to a commit hash
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​nuxt/fonts since your current version.


Updates @nuxt/icon from 2.1.0 to 2.2.1

Release notes

Sourced from @​nuxt/icon's releases.

v2.2.1

No significant changes

    View changes on GitHub

v2.2.0

   🚀 Features

    View changes on GitHub

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @nuxt/scripts from 0.13.0 to 0.13.2

Release notes

Sourced from @​nuxt/scripts's releases.

v0.13.2

   🐞 Bug Fixes

    View changes on GitHub

v0.13.1

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @nuxt/test-utils from 3.20.1 to 3.23.0

Release notes

Sourced from @​nuxt/test-utils's releases.

v3.23.0

3.23.0 is the next minor release.

👉 Changelog

compare changes

🚀 Enhancements

  • runtime-utils: Support h3 v2 (#1515)
  • module: Add install wizard when freshly installed (#1538)

🩹 Fixes

  • e2e: Ensure $fetch is not typed as any (1f4754ea9)

🏡 Chore

✅ Tests

  • Add cleanup to resolve-config tests (#1537)

🤖 CI

  • Prepare build environment in autofix workflow (2c0864ed6)

❤️ Contributors

v3.22.0

3.22.0 is the next minor release.

👉 Changelog

compare changes

🚀 Enhancements

  • runtime-utils: Unify logic of mount + render helpers (#1522)
  • module: Run vitest in separate process (#1524)
  • runtime-utils: Allow skipping initial route change (fd77ec066)
  • runtime: Skip route sync emulation when NuxtPage exists (#1530)

🔥 Performance

... (truncated)

Commits
  • 0c5f263 v3.23.0
  • 9f050f2 feat(module): add install wizard when freshly installed (#1538)
  • 78ab3cb test: add cleanup to resolve-config tests (#1537)
  • 1792a5b chore(deps): update devdependency vue-tsc to v3.2.2 (#1536)
  • 1f4754e fix(e2e): ensure $fetch is not typed as any
  • aef6933 chore: remove leftover console.log
  • be1f1e4 chore(deps): update all non-major dependencies (#1533)
  • 9719a5b feat(runtime-utils): support h3 v2 (#1515)
  • 2c0864e ci: prepare build environment in autofix workflow
  • e1a7ebc v3.22.0
  • Additional commits viewable in compare view

Updates @nuxt/ui from 4.1.0 to 4.4.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.4.0

🚀 Features

  • Calendar: add weekNumbers prop (#4555) (7a1a71b)
  • ChangelogVersions: handle scroll options in indicator prop (#5257) (6a925cd)
  • CommandPalette/InputMenu/SelectMenu/Tree: handle virtualizer estimateSize as function (#5748) (d51b424)
  • CommandPalette: add input prop (#5736) (12052e8)
  • CommandPalette: add size prop (#5878) (3ae04c6)
  • components: add by prop (#5906) (36cd5e5)
  • components: add valueKey prop (#5905) (55646ea)
  • Editor: add placeholder.mode prop (d90acb3), closes #5785
  • Editor: add size prop in menus (#5889) (571d50d)
  • Editor: add taskList handler (#5837) (db04197)
  • Editor: add support for code inside links (2ed2d5d)
  • Editor: handle boolean in image and mention props (b6fa83a), closes #5820
  • EditorMentionMenu: handle async search with ignoreFilter prop (#5880) (f8d1883)
  • InputMenu/Select/SelectMenu: expose viewportRef for infinite scroll (#5836) (f4a945c)
  • InputMenu/SelectMenu: add clear prop (#5643) (ec6b8ec)
  • Link: support custom navigate function in vue (#5860) (f51e58a)
  • ProseTd/ProseTh: handle align prop (859390e), closes #5795
  • Timeline/Stepper: add wrapper slot and fix dynamic slot conditions (#5868) (8610d4d)
  • Timeline: add select event (#5826) (8e431be)

🐛 Bug Fixes

  • Banner: isolate banner visibility using per-instance CSS variables (#5751) (c7332eb)
  • Banner: prevent XSS via id prop injection (4e334a0)
  • CommandPalette/ContextMenu/DropdownMenu: keyboard selection on link items (3f5bdb3)
  • CommandPalette: prevent XSS in search highlight (e12ceb6)
  • ContentSurround: align next link to right on tablet without prev (#5833) (b3adccc)
  • defineShortcuts: check shift modifier for special character shortcuts (bd344d7), closes #5911
  • Editor: set contentType when updating value (c37d6f7), closes #5709
  • Editor: support all heading levels by default (3046c3e)
  • EditorToolbar: prevent onClick from being called twice on items (cbed0cc), closes #5784
  • EditorToolbar: prevent disabled dropdown when items have no kind (d473f63)
  • Error/Main: render as main instead of div (6ccb1f5)
  • FileUpload: emit null when clearing file (#5892) (1d9a2fd)
  • FileUpload: keep input visible when preview is disabled with multiple files (597ac29), closes #5875
  • locale: improve cs and sk terminology for correct inflection (#5789) (af6f288)
  • module: only override primary color and md size default variants (f422de8)
  • ProseCodeTree: prevent infinite update loop with expandAll prop (c79cb77), closes #5828
  • useOverlay: refine close event argument extraction (#5775) (182af20)

👋 New Contributors

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.4.0 (2026-01-21)

Features

  • Calendar: add weekNumbers prop (#4555) (7a1a71b)
  • ChangelogVersions: handle scroll options in indicator prop (#5257) (6a925cd)
  • CommandPalette/InputMenu/SelectMenu/Tree: handle virtualizer estimateSize as function (#5748) (d51b424)
  • CommandPalette: add input prop (#5736) (12052e8)
  • CommandPalette: add size prop (#5878) (3ae04c6)
  • components: add by prop (#5906) (36cd5e5)
  • components: add valueKey prop (#5905) (55646ea)
  • Editor: add placeholder.mode prop (d90acb3), closes #5785
  • Editor: add size prop in menus (#5889) (571d50d)
  • Editor: add taskList handler (#5837) (db04197)
  • Editor: add support for code inside links (2ed2d5d)
  • Editor: handle boolean in image and mention props (b6fa83a), closes #5820
  • EditorMentionMenu: handle async search with ignoreFilter prop (#5880) (f8d1883)
  • InputMenu/Select/SelectMenu: expose viewportRef for infinite scroll (#5836) (f4a945c)
  • InputMenu/SelectMenu: add clear prop (#5643) (ec6b8ec)
  • Link: support custom navigate function in vue (#5860) (f51e58a)
  • ProseTd/ProseTh: handle align prop (859390e), closes #5795
  • Timeline/Stepper: add wrapper slot and fix dynamic slot conditions (#5868) (8610d4d)
  • Timeline: add select event (#5826) (8e431be)

Bug Fixes

  • Banner: isolate banner visibility using per-instance CSS variables (#5751) (c7332eb)
  • Banner: prevent XSS via id prop injection (4e334a0)
  • CommandPalette/ContextMenu/DropdownMenu: keyboard selection on link items (3f5bdb3)
  • CommandPalette: prevent XSS in search highlight (e12ceb6)
  • ContentSurround: align next link to right on tablet without prev (#5833) (b3adccc)
  • defineShortcuts: check shift modifier for special character shortcuts (bd344d7), closes #5911
  • Editor: set contentType when updating value (c37d6f7), closes #5709
  • Editor: support all heading levels by default (3046c3e)
  • EditorToolbar: prevent onClick from being called twice on items (cbed0cc), closes #5784
  • EditorToolbar: prevent disabled dropdown when items have no kind (d473f63)
  • Error/Main: render as main instead of div (6ccb1f5)
  • FileUpload: emit null when clearing file (#5892) (1d9a2fd)
  • FileUpload: keep input visible when preview is disabled with multiple files (597ac29), closes #5875
  • locale: improve cs and sk terminology for correct inflection (#5789) (af6f288)
  • module: only override primary color and md size default variants (f422de8)
  • ProseCodeTree: prevent infinite update loop with expandAll prop (c79cb77), closes #5828
  • useOverlay: refine close event argument extraction (#5775) (182af20)

4.3.0 (2025-12-17)

Features

  • AuthForm: allow all input types (#5565) (1f9009f)
  • ContextMenu/DropdownMenu: expose sub prop on content slots (#5609) (b09e6bc)

... (truncated)

Commits
  • 59707ff chore(release): v4.4.0
  • 556f367 docs(mcp): add sections param to tools for reduced response size
  • f325890 docs(llms): improve mdc transform
  • 47b82ef docs(components): add missing external types (#5397)
  • 8e431be feat(Timeline): add select event (#5826)
  • 4c83430 docs(i18n): improve locale documentation for date/time formatting
  • 3046c3e fix(Editor): support all heading levels by default
  • 7a1a71b feat(Calendar): add weekNumbers prop (#4555)
  • 0cdd77a chore(deps): update all non-major dependencies (v4) (#5908)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jan 29, 2026
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jan 29, 2026

Deploying app with  Cloudflare Pages  Cloudflare Pages

Latest commit: 17884b8
Status: ✅  Deploy successful!
Preview URL: https://3c44469b.app-bzd.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-all-exaw.app-bzd.pages.dev

View logs

@dependabot dependabot bot added the javascript Pull requests that update javascript code label Jan 29, 2026
@vercel
Copy link

vercel bot commented Jan 29, 2026

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

Project Deployment Actions Updated (UTC)
koda Ready Ready Preview, Comment Feb 3, 2026 5:06am

Request Review

@railway-app
Copy link

railway-app bot commented Jan 29, 2026

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

Service Status Web Updated (UTC)
app ❌ Build Failed (View Logs) Web Feb 3, 2026 at 6:02 am

…37 updates

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

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.13.8` | `4.1.3` |
| [@fal-ai/client](https://github.com/fal-ai/fal-js/tree/HEAD/libs/client) | `1.6.2` | `1.8.4` |
| [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.57` | `1.2.87` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.43` | `1.2.68` |
| [@nuxt/fonts](https://github.com/nuxt/fonts) | `0.11.4` | `0.13.0` |
| [@nuxt/icon](https://github.com/nuxt/icon) | `2.1.0` | `2.2.1` |
| [@nuxt/scripts](https://github.com/nuxt/scripts) | `0.13.0` | `0.13.2` |
| [@nuxt/test-utils](https://github.com/nuxt/test-utils) | `3.20.1` | `3.23.0` |
| [@nuxt/ui](https://github.com/nuxt/ui) | `4.1.0` | `4.4.0` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `10.1.2` | `10.2.1` |
| [@nuxtjs/seo](https://github.com/harlan-zw/nuxt-seo) | `3.3.0` | `3.4.0` |
| [@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.1` |
| [@reown/appkit](https://github.com/reown-com/appkit) | `1.8.12` | `1.8.17` |
| [@reown/appkit-adapter-wagmi](https://github.com/reown-com/appkit) | `1.8.12` | `1.8.17` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.83.0` | `5.92.9` |
| [@unhead/vue](https://github.com/unjs/unhead/tree/HEAD/packages/vue) | `2.0.12` | `2.1.2` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `13.9.0` | `14.1.0` |
| [@wagmi/vue](https://github.com/wevm/wagmi/tree/HEAD/packages/vue) | `0.3.1` | `0.4.14` |
| [dedot](https://github.com/dedotdev/dedot/tree/HEAD/packages/dedot) | `0.14.1` | `1.0.2` |
| [gql.tada](https://github.com/0no-co/gql.tada) | `1.8.11` | `1.9.0` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.2.0` | `4.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` | `1.23.3` |
| [try](https://github.com/arthurfiorette/try) | `1.0.0-beta.10` | `1.0.3` |
| [valibot](https://github.com/open-circle/valibot) | `1.1.0` | `1.2.0` |
| [vue](https://github.com/vuejs/core) | `3.5.22` | `3.5.27` |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `6.1.0` | `7.2.0` |
| [@nuxt/eslint](https://github.com/nuxt/eslint/tree/HEAD/packages/module) | `1.10.0` | `1.13.0` |
| [@polkadot/apps-config](https://github.com/polkadot-js/apps/tree/HEAD/packages/apps-config) | `0.166.1` | `0.169.1` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.20` | `4.17.23` |
| [eslint](https://github.com/eslint/eslint) | `9.38.0` | `9.39.2` |
| [pino-pretty](https://github.com/pinojs/pino-pretty) | `13.1.1` | `13.1.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.2.3` | `3.2.4` |



Updates `@apollo/client` from 3.13.8 to 4.1.3
- [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.1.3)

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

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

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

Updates `@nuxt/fonts` from 0.11.4 to 0.13.0
- [Release notes](https://github.com/nuxt/fonts/releases)
- [Changelog](https://github.com/nuxt/fonts/blob/main/CHANGELOG.md)
- [Commits](nuxt/fonts@v0.11.4...v0.13.0)

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

Updates `@nuxt/scripts` from 0.13.0 to 0.13.2
- [Release notes](https://github.com/nuxt/scripts/releases)
- [Changelog](https://github.com/nuxt/scripts/blob/main/CHANGELOG.md)
- [Commits](nuxt/scripts@v0.13.0...v0.13.2)

Updates `@nuxt/test-utils` from 3.20.1 to 3.23.0
- [Release notes](https://github.com/nuxt/test-utils/releases)
- [Commits](nuxt/test-utils@v3.20.1...v3.23.0)

Updates `@nuxt/ui` from 4.1.0 to 4.4.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.4.0)

Updates `@nuxtjs/i18n` from 10.1.2 to 10.2.1
- [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.2.1)

Updates `@nuxtjs/seo` from 3.3.0 to 3.4.0
- [Release notes](https://github.com/harlan-zw/nuxt-seo/releases)
- [Commits](harlan-zw/nuxt-seo@v3.3.0...v3.4.0)

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.1
- [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.1/packages/util-crypto)

Updates `@reown/appkit` from 1.8.12 to 1.8.17
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit@1.8.12...@reown/appkit@1.8.17)

Updates `@reown/appkit-adapter-wagmi` from 1.8.12 to 1.8.17
- [Release notes](https://github.com/reown-com/appkit/releases)
- [Commits](https://github.com/reown-com/appkit/compare/@reown/appkit-adapter-wagmi@1.8.12...@reown/appkit-adapter-wagmi@1.8.17)

Updates `@tanstack/vue-query` from 5.83.0 to 5.92.9
- [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.92.9/packages/vue-query)

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

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

Updates `@wagmi/vue` from 0.3.1 to 0.4.14
- [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.4.14/packages/vue)

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

Updates `gql.tada` from 1.8.11 to 1.9.0
- [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.9.0)

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

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 1.23.3
- [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@1.23.3)

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 `valibot` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/open-circle/valibot/releases)
- [Commits](open-circle/valibot@v1.1.0...v1.2.0)

Updates `vue` from 3.5.22 to 3.5.27
- [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.27)

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

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

Updates `@polkadot/apps-config` from 0.166.1 to 0.169.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.169.1/packages/apps-config)

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

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

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 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.3)

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

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-version: 4.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@fal-ai/client"
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@iconify-json/lucide"
  dependency-version: 1.2.87
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.68
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@nuxt/fonts"
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxt/icon"
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxt/scripts"
  dependency-version: 0.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@nuxt/test-utils"
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxt/ui"
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxtjs/i18n"
  dependency-version: 10.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@nuxtjs/seo"
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@reown/appkit"
  dependency-version: 1.8.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@reown/appkit-adapter-wagmi"
  dependency-version: 1.8.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.92.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@unhead/vue"
  dependency-version: 2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@vueuse/core"
  dependency-version: 14.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@wagmi/vue"
  dependency-version: 0.4.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: dedot
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: gql.tada
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: nuxt
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: 1.23.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: valibot
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vue
  dependency-version: 3.5.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@antfu/eslint-config"
  dependency-version: 7.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@nuxt/eslint"
  dependency-version: 1.13.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@polkadot/apps-config"
  dependency-version: 0.169.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/lodash"
  dependency-version: 4.17.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
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