Skip to content

chore(deps): bump the npm-dependencies group across 1 directory with 19 updates#72

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-3759090fd9
Open

chore(deps): bump the npm-dependencies group across 1 directory with 19 updates#72
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-3759090fd9

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the npm-dependencies group with 17 updates in the / directory:

Package From To
@biomejs/biome 2.5.1 2.5.4
@types/node 26.0.1 26.1.1
vue-tsc 3.3.5 3.3.7
tsdown 0.22.3 0.22.12
@lucide/vue 1.21.0 1.25.0
@nuxtjs/i18n 10.4.0 10.4.1
@nvisy/sdk 0.3.0 0.4.0
@pinia/colada 1.3.1 1.4.2
@pinia/colada-nuxt 1.0.1 1.0.2
@unhead/vue 3.1.6 3.2.1
@tailwindcss/vite 4.3.1 4.3.3
@tanstack/vue-virtual 3.13.30 3.13.32
@unovis/ts 1.6.6 1.6.7
@unovis/vue 1.6.6 1.6.7
nuxt 4.4.8 4.5.0
vue 3.5.39 3.5.40
@tauri-apps/cli 2.11.3 2.11.4

Updates @biomejs/biome from 2.5.1 to 2.5.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.4

2.5.4

Patch Changes

  • #10665 55ff995 Thanks @​dyc3! - Improved the performance of the HTML parser slightly in our synthetic benchmarks.

  • #10894 f4fb10e Thanks @​ematipico! - Fixed #6392: On-type formatting no longer moves comments before an if statement into its body.

  • #10939 f2799db Thanks @​Netail! - Fixed #10930: noLabelWithoutControl now correctly detects text interpolation in Astro, Svelte & Vue as valid accessible content.

  • #10945 ae15d98 Thanks @​Netail! - Fixed #10942: Svelte directives don't throw an accidental debug log anymore.

  • #10842 5e1abfe Thanks @​JamBalaya56562! - Fixed #9196: biome check --write --unsafe no longer hangs forever when applying the noCommentText code fix.

    The rule's fix now wraps the comment in a real JSX expression container ({/* comment */}) instead of re-inserting the braces as plain JSX text, so the fixed code is no longer reported again by the same rule.

  • #10891 ecca79e Thanks @​ematipico! - Fixed [#10885](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10885): prevented a module-inference regression introduced by a housekeeping change.

  • #10886 60c8043 Thanks @​dyc3! - Fixed #10727: Biome now breaks the arguments of curried test.each, it.each, describe.each, and test.for calls when they exceed the configured line width.

    - test.each([[1, 2]])("a description that is long enough to push the hugged opening line beyond the print width", (a, b) => {
    -   expect(a).toBe(b);
    - });
    + test.each([[1, 2]])(
    +   "a description that is long enough to push the hugged opening line beyond the print width",
    +   (a, b) => {
    +     expect(a).toBe(b);
    +   },
    + );
  • #10895 01a85f0 Thanks @​ematipico! - Biome will now remove stale Unix daemon sockets from older Biome versions when starting a newer daemon.

What's Changed

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.4

Patch Changes

  • #10665 55ff995 Thanks @​dyc3! - Improved the performance of the HTML parser slightly in our synthetic benchmarks.

  • #10894 f4fb10e Thanks @​ematipico! - Fixed #6392: On-type formatting no longer moves comments before an if statement into its body.

  • #10939 f2799db Thanks @​Netail! - Fixed #10930: noLabelWithoutControl now correctly detects text interpolation in Astro, Svelte & Vue as valid accessible content.

  • #10945 ae15d98 Thanks @​Netail! - Fixed #10942: Svelte directives don't throw an accidental debug log anymore.

  • #10842 5e1abfe Thanks @​JamBalaya56562! - Fixed #9196: biome check --write --unsafe no longer hangs forever when applying the noCommentText code fix.

    The rule's fix now wraps the comment in a real JSX expression container ({/* comment */}) instead of re-inserting the braces as plain JSX text, so the fixed code is no longer reported again by the same rule.

  • #10891 ecca79e Thanks @​ematipico! - Fixed [#10885](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/10885): prevented a module-inference regression introduced by a housekeeping change.

  • #10886 60c8043 Thanks @​dyc3! - Fixed #10727: Biome now breaks the arguments of curried test.each, it.each, describe.each, and test.for calls when they exceed the configured line width.

    - test.each([[1, 2]])("a description that is long enough to push the hugged opening line beyond the print width", (a, b) => {
    -   expect(a).toBe(b);
    - });
    + test.each([[1, 2]])(
    +   "a description that is long enough to push the hugged opening line beyond the print width",
    +   (a, b) => {
    +     expect(a).toBe(b);
    +   },
    + );
  • #10895 01a85f0 Thanks @​ematipico! - Biome will now remove stale Unix daemon sockets from older Biome versions when starting a newer daemon.

2.5.3

Patch Changes

  • #10815 86613d5 Thanks @​WaterWhisperer! - Fixed a parser panic reported in #10708: Biome now recovers when unsupported CSS Modules @value rules or scoped @keyframes names end at EOF.

  • #10534 da9b403 Thanks @​Mokto! - Fixed noUnusedVariables false positives in Svelte files: Svelte store subscriptions ($store references in templates now keep the underlying store binding from being flagged), and $bindable() props that are only written to in the script block (write-only is intentional for bindable props) are no longer reported as unused.

  • #10827 098ba41 Thanks @​Aqu1bp! - Fixed #10698: The noUnsafeOptionalChaining rule now reports unsafe optional chains wrapped in TypeScript as, satisfies, type assertion, and instantiation expressions, such as new (value?.constructor as Constructor)().

  • #10773 3c6513d Thanks @​otkrickey! - Fixed #10772: useVueValidVOn no longer reports a missing handler for v-on directives using a verb modifier (.stop / .prevent) without an expression, e.g. <div @click.stop></div>. The rule also accepts the arg-less object syntax <div v-on="$listeners"></div> instead of reporting a missing event name.

  • #10721 d83c66b Thanks @​minseong0324! - Improved type-aware lint rule inference for built-in globals and indexed function calls. Biome now resolves Error(...), new Error(...), optional Error#stack, and calls through indexed function values such as handlers[0](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/0) more accurately.

  • #10865 6450276 Thanks @​ematipico! - Fixed #10845. Biome Language Server no longer goes in deadlock when the scanner is enabled.

... (truncated)

Commits

Updates @types/node from 26.0.1 to 26.1.1

Commits

Updates vue-tsc from 3.3.5 to 3.3.7

Release notes

Sourced from vue-tsc's releases.

v3.3.7

language-core

  • fix: wrap single expression event handlers to avoid ASI after return (#6115) - Thanks to @​KazariEX!

typescript-plugin

  • fix: filter const globals from template completions

Our Sponsors ❤️

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.3.7 (2026-07-08)

language-core

  • fix: wrap single expression event handlers to avoid ASI after return (#6115) - Thanks to @​KazariEX!

typescript-plugin

  • fix: filter const globals from template completions

3.3.6 (2026-06-30)

language-core

  • fix: make generic component internal context inference type-safe across .d.ts boundary (#6104) - Thanks to @​Holiden!
  • fix: do not treat non-trivial property accesses as compound - Thanks to @​KazariEX!
  • fix: treat semicolon-terminated expressions as compound - Thanks to @​KazariEX!
  • fix: preserve return types for compound event handlers - Thanks to @​KazariEX!
  • fix: use WeakMap to cache inline TS ASTs - Thanks to @​KazariEX!
  • fix: match upstream CSS v-bind parsing behavior - Thanks to @​KazariEX!
  • fix: include setup bindings as potential component names (#6111) - Thanks to @​KazariEX!
  • perf: reduce boundary code feature allocations - Thanks to @​KazariEX!
  • refactor: centralize code features and deprecate allCodeFeatures - Thanks to @​KazariEX!
Commits

Updates tsdown from 0.22.3 to 0.22.12

Release notes

Sourced from tsdown's releases.

v0.22.12

   🚨 Breaking Changes

    View changes on GitHub

v0.22.11

   🚀 Features

    View changes on GitHub

v0.22.10

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.22.9

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.22.8

   🚀 Features

   🐞 Bug Fixes

  • config: Concat plugins arrays when merging config  -  by @​sxzz (b1c80)
    View changes on GitHub

v0.22.7

   🚀 Features

... (truncated)

Commits
  • bd7b522 chore: release v0.22.12
  • 85f23ea feat(exe)!: standardize minimum Node.js version
  • 3157082 refactor: reorganize UserConfig interface
  • 466d756 chore: release v0.22.11
  • a6df89e ci: migrate Void deploy to GitHub OIDC (#1025)
  • 346cb00 feat(deps): add resolveDepSubpath option (#1026)
  • e2ddc05 chore: upgrade deps
  • 95a04d2 chore: release v0.22.10
  • 074e4f7 fix(exe): handle Windows node archives on Linux
  • 0d24a0e feat(exe): support custom node index and download url (#1023)
  • Additional commits viewable in compare view

Updates @lucide/vue from 1.21.0 to 1.25.0

Release notes

Sourced from @​lucide/vue's releases.

Version 1.25.0

What's Changed

Full Changelog: lucide-icons/lucide@1.24.0...1.25.0

Version 1.24.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.23.0...1.24.0

Version 1.23.0

What's Changed

... (truncated)

Commits

Updates @nuxtjs/i18n from 10.4.0 to 10.4.1

Release notes

Sourced from @​nuxtjs/i18n's releases.

v10.4.1

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from @​nuxtjs/i18n's changelog.

v10.4.1 (2026-07-10T16:21:00Z)

This changelog is generated by GitHub Releases

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • d262f55 release: v10.4.1
  • 36056ba chore: compatibility with @unhead/vue v3 head input types (#4029)
  • fa199ad fix: derive og:locale:alternate from locale language tags with `strictSeo...
  • 31fbb01 fix: use domainLocales runtime config in localeProperties and locales (...
  • 5b28432 fix: pass strictSeo.canonicalQueries to runtime head options (#4026)
  • 3dc3b07 fix: strip base URL from path in SSR locale redirect (#4000)
  • 04c3bbd fix: drop full-path \<NuxtPage> keys for compactRoutes (#4025)
  • 8564ea1 fix: route argument narrowing with experimental.typedPages (#4024)
  • 89cf5c1 fix: type locale detector file in server tsconfig (#4023)
  • ea1e0bb ci: skip edge-release job on pull requests
  • Additional commits viewable in compare view

Updates @nvisy/sdk from 0.3.0 to 0.4.0

Release notes

Sourced from @​nvisy/sdk's releases.

Release v0.4.0

Release 0.4.0

Installation

npm install @nvisy/sdk@0.4.0

What's New

Documentation

Full Changelog: nvisycom/sdk-ts@v0.4.0...HEAD

Changelog

Sourced from @​nvisy/sdk's changelog.

[0.4.0] - 2026-07-12

Added

  • contexts service and datatypes (Context, CreateContext, UpdateContext, ContextEntry, ContextsPage)
  • connections service and datatypes (Connection, CreateConnection, UpdateConnection, ConnectionsQuery, ConnectionsPage)
  • pipelines service and datatypes (Pipeline, CreatePipeline, UpdatePipeline, PipelineDefinition, PipelineStatus, PipelineSummary, PipelineSummariesPage, and more)
  • policies service and datatypes (Policy, CreatePolicy, UpdatePolicy, PolicyRule, PolicyAction, PoliciesPage)
  • Health datatypes for the health endpoint (Health, HealthStatus, ComponentHealth, CheckHealth)

Changed

  • Regenerated the API schema against the redacted-pipeline platform API
  • BREAKING: runs is now a pipeline-run service: listRuns(pipelineId), createRun(pipelineId), getRun(runId), getDetections(runId), redact(runId) (was integration-run based)
  • BREAKING: status.checkHealth() now returns Health (was MonitorStatus)
  • BREAKING: NvisyApiError.resource and .suggestion are now string | undefined (were string | null)

Removed

  • BREAKING: annotations, comments, documents, and integrations services and their datatypes (no longer part of the API)
Commits
  • 0b973cb chore(release): 0.4.0 (#41)
  • 89137a2 ci(release): publish to npm via OIDC trusted publishing (#40)
  • 358e3e7 chore(actions): bump actions/checkout in the github-actions group (#37)
  • 55fe67c feat!: migrate SDK to the redacted-pipeline platform API (#39)
  • 448d557 docs: align root README with the nvisycom SDK house style
  • 9cd53a4 chore(build): switch to tsdown (#36)
  • 25abe9b chore(deps-dev): bump the npm-dependencies group across 1 directory with 5 up...
  • de7de4b chore(actions): bump softprops/action-gh-release (#35)
  • 1170880 chore(actions): bump the github-actions group with 2 updates (#32)
  • 8bd6144 chore(deps): bump the npm-dependencies group across 1 directory with 8 update...
  • Additional commits viewable in compare view
Maintainer changes

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


Updates @pinia/colada from 1.3.1 to 1.4.2

Changelog

Sourced from @​pinia/colada's changelog.

1.4.2 (2026-07-15)

Bug Fixes

  • keep asyncStatus loading when canceled request settles after refetch (4208a6b), closes #620

1.4.1 (2026-07-15)

  • Add pinia 4 to valid peerDeps

1.4.0 (2026-07-14)

Features

Commits
  • 3a254ad release: @​pinia/colada@​1.4.2
  • 4208a6b fix: keep asyncStatus loading when canceled request settles after refetch
  • ff18327 release: @​pinia/colada@​1.4.1
  • ba672aa feat: support pinia 4
  • ae20296 release: @​pinia/colada@​1.4.0 @​pinia/colada-nuxt@​1.0.2 @​pinia/colada-devtools@...
  • aa8c8a3 feat: use nostics for better errors
  • 12be593 refactor: simplify errors
  • 10d1ec1 fix(devtools): lazily initialize devtools info of entries (#619)
  • 6faffb9 chore: up ts native preview
  • 0dc9797 chore: up deps
  • Additional commits viewable in compare view

Updates @pinia/colada-nuxt from 1.0.1 to 1.0.2

Release notes

Sourced from @​pinia/colada-nuxt's releases.

@​pinia/colada-nuxt@​1.0.2

   🚀 Features

…19 updates

Bumps the npm-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.1` | `2.5.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.0.1` | `26.1.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.5` | `3.3.7` |
| [tsdown](https://github.com/rolldown/tsdown) | `0.22.3` | `0.22.12` |
| [@lucide/vue](https://github.com/lucide-icons/lucide/tree/HEAD/packages/vue) | `1.21.0` | `1.25.0` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `10.4.0` | `10.4.1` |
| [@nvisy/sdk](https://github.com/nvisycom/sdk-ts) | `0.3.0` | `0.4.0` |
| [@pinia/colada](https://github.com/posva/pinia-colada) | `1.3.1` | `1.4.2` |
| [@pinia/colada-nuxt](https://github.com/posva/pinia-colada) | `1.0.1` | `1.0.2` |
| [@unhead/vue](https://github.com/unjs/unhead/tree/HEAD/packages/vue) | `3.1.6` | `3.2.1` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.1` | `4.3.3` |
| [@tanstack/vue-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/vue-virtual) | `3.13.30` | `3.13.32` |
| [@unovis/ts](https://github.com/f5/unovis/tree/HEAD/packages/ts) | `1.6.6` | `1.6.7` |
| [@unovis/vue](https://github.com/f5/unovis/tree/HEAD/packages/vue) | `1.6.6` | `1.6.7` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.4.8` | `4.5.0` |
| [vue](https://github.com/vuejs/core) | `3.5.39` | `3.5.40` |
| [@tauri-apps/cli](https://github.com/tauri-apps/tauri) | `2.11.3` | `2.11.4` |



Updates `@biomejs/biome` from 2.5.1 to 2.5.4
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.4/packages/@biomejs/biome)

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

Updates `vue-tsc` from 3.3.5 to 3.3.7
- [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.7/packages/tsc)

Updates `tsdown` from 0.22.3 to 0.22.12
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.22.3...v0.22.12)

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

Updates `@nuxtjs/i18n` from 10.4.0 to 10.4.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.4.0...v10.4.1)

Updates `@nvisy/sdk` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/nvisycom/sdk-ts/releases)
- [Changelog](https://github.com/nvisycom/sdk-ts/blob/main/CHANGELOG.md)
- [Commits](nvisycom/sdk-ts@v0.3.0...v0.4.0)

Updates `@pinia/colada` from 1.3.1 to 1.4.2
- [Release notes](https://github.com/posva/pinia-colada/releases)
- [Changelog](https://github.com/posva/pinia-colada/blob/main/CHANGELOG.md)
- [Commits](posva/pinia-colada@v1.3.1...v1.4.2)

Updates `@pinia/colada-nuxt` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/posva/pinia-colada/releases)
- [Changelog](https://github.com/posva/pinia-colada/blob/main/CHANGELOG.md)
- [Commits](https://github.com/posva/pinia-colada/compare/@pinia/colada-nuxt@1.0.1...@pinia/colada-nuxt@1.0.2)

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

Updates `@tailwindcss/vite` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/@tailwindcss-vite)

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

Updates `@unovis/ts` from 1.6.6 to 1.6.7
- [Release notes](https://github.com/f5/unovis/releases)
- [Commits](https://github.com/f5/unovis/commits/1.6.7/packages/ts)

Updates `@unovis/vue` from 1.6.6 to 1.6.7
- [Release notes](https://github.com/f5/unovis/releases)
- [Commits](https://github.com/f5/unovis/commits/1.6.7/packages/vue)

Updates `tailwindcss` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

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

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

Updates `vue-router` from 5.1.0 to 5.2.0
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v5.1.0...v5.2.0)

Updates `@tauri-apps/cli` from 2.11.3 to 2.11.4
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v2.11.3...@tauri-apps/cli-v2.11.4)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: tsdown
  dependency-version: 0.22.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@lucide/vue"
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@nuxtjs/i18n"
  dependency-version: 10.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@nvisy/sdk"
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@pinia/colada"
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@pinia/colada-nuxt"
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@unhead/vue"
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@tanstack/vue-virtual"
  dependency-version: 3.13.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@unovis/ts"
  dependency-version: 1.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@unovis/vue"
  dependency-version: 1.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: nuxt
  dependency-version: 4.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue
  dependency-version: 3.5.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: vue-router
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@tauri-apps/cli"
  dependency-version: 2.11.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the chore maintenance, dependency updates, code cleanup label Jul 20, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore maintenance, dependency updates, code cleanup

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants