Skip to content

chore(deps): bump the npm-dependencies group in /client with 27 updates - #1434

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/client/npm-dependencies-3514d8533c
Closed

chore(deps): bump the npm-dependencies group in /client with 27 updates#1434
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/client/npm-dependencies-3514d8533c

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group in /client with 27 updates:

Package From To
@vueuse/core 14.0.0 14.3.0
es-toolkit 1.49.0 1.50.0
fuse.js 7.1.0 7.5.0
humanize-duration 3.33.1 3.34.0
nuxt-snackbar 1.3.0 1.4.0
pinia 3.0.4 4.0.2
reka-ui 2.9.4 2.10.1
vue 3.5.35 3.5.40
@nuxt/devtools 3.2.4 3.3.1
@nuxt/icon 2.1.0 2.3.1
@nuxt/test-utils 4.0.3 4.1.0
@nuxtjs/color-mode 4.0.0 4.0.1
@nuxtjs/robots 5.5.6 6.1.3
@pinia/nuxt 0.11.3 1.0.1
@tailwindcss/forms 0.5.10 0.5.11
@types/luxon 3.7.1 3.7.2
@vue/test-utils 2.4.6 2.4.11
globals 17.4.0 17.8.0
happy-dom 20.9.0 20.11.1
nuxt 4.4.7 4.5.1
nuxt-security 2.5.1 2.6.0
oxfmt 0.59.0 0.61.0
oxlint 1.74.0 1.76.0
oxlint-tsgolint 0.25.0 7.0.2001
vitest 4.1.8 4.1.10
vue-router 5.1.0 5.2.0
vue-tsc 3.2.6 3.3.8

Updates @vueuse/core from 14.0.0 to 14.3.0

Release notes

Sourced from @​vueuse/core's releases.

v14.3.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v14.2.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v14.2.0

   🚀 Features

... (truncated)

Commits
  • 99c5df9 chore: release v14.3.0
  • 1a3e572 feat(useTextareaAutosize): add optional maxHeight to limit autosize growth ...
  • d886c2f fix(useCached): update comparator type and improve documentation (#5376)
  • acf182e docs(useCloned): add tip about watch flush timing (#5375)
  • 5ec568d fix(useClipboard): prevents fail in Safari for async operation (#5369)
  • 52d688f fix(directive): create disposable directive func cleanup of side effects unmo...
  • df72450 chore: update deps
  • 1aa211e Make demo of useElementSize readonly (#5365)
  • 0d98998 fix: add explicit ./package.json export to all packages (#5343)
  • 8c252c3 refactor: change primitive to shallowReadonly, rename readonly usage to `...
  • Additional commits viewable in compare view

Updates es-toolkit from 1.49.0 to 1.50.0

Release notes

Sourced from es-toolkit's releases.

v1.50.0

Released on July 24th, 2026.

  • Added the es-toolkit/types entrypoint: a declaration-only module of compile-time type utilities TypeScript lacks natively — ValueOf, Simplify, Writable, NonEmptyArray, DeepPartial, and DeepReadonly. ([#1818])
  • Added flow to es-toolkit/fp, a reusable data-last composition built on pipe. ([#1812])

The following bring es-toolkit/compat closer to Lodash. Behavior for the affected edge cases now matches Lodash, so results may differ if you relied on the previous output.

  • Fixed compat/intersectionBy to dedupe a single array (including by the iteratee) and to keep results consistent with Lodash. ([#1935])

  • Fixed compat/findIndex and compat/findLastIndex to coerce a NaN fromIndex to 0 and to convert fromIndex to an integer. ([#1828], [#1834], [#1938])

  • Fixed compat/lastIndexOf to coerce fromIndex like Lodash. ([#1832])

  • Fixed compat/every to treat a falsy, non-nullish doesMatch as a _.property shorthand instead of identity. ([#1940])

  • Fixed compat/nth to support string inputs. ([#1833])

  • Fixed compat/inRange to not throw on a lone negative bound. ([#1835])

  • Fixed compat/toArray to convert Sets to arrays like Lodash. ([#1840])

  • Fixed compat/values to treat sparse array holes as undefined. ([#1894])

  • Fixed compat/maxBy and compat/minBy to restore Lodash-compatible comparison. ([#1893])

  • Fixed compat/includes to exclude the length property when matching array-like values. ([#1886])

  • Fixed the case functions to split ordinal numbers like Lodash, and to count string size and padding by code points for multi-byte characters. ([#1836], [#1852], [#1853])

  • Fixed compat/unset to not treat an own literal dotted key as a deep path. ([#1808])

  • Moved compat/flattenDepth's flattening logic out of flatten. ([#1847])

  • Restored the standalone eq and templateSettings entry points. ([#1895])

  • Fixed deburr to remove all combining diacritical marks, matching Lodash. ([#1807])

  • Fixed partition to accept any predicate return value, like Array.prototype.filter. ([#1937])

  • Fixed has and hasIn to prioritize nullish literal keys over paths. ([#1810])

  • Fixed invokeMap to normalize a string path via toPath for this binding. ([#1814])

  • Fixed isDeepKey to detect deep keys with stricter patterns. ([#1621])

  • Fixed unzipWith to return an empty array instead of throwing on empty input. ([#1816])

  • Improved documentation, JSDoc accuracy, and internal refactoring across compat and fp. ([#1817], [#1820], [#1822], [#1823], [#1825], [#1829], [#1830], [#1842], [#1845], [#1851], [#1858], [#1867], [#1879])

... (truncated)

Changelog

Sourced from es-toolkit's changelog.

Version v1.50.0

Released on July 24th, 2026.

  • Added the es-toolkit/types entrypoint: a declaration-only module of compile-time type utilities TypeScript lacks natively — ValueOf, Simplify, Writable, NonEmptyArray, DeepPartial, and DeepReadonly. (#1818)
  • Added flow to es-toolkit/fp, a reusable data-last composition built on pipe. (#1812)

The following bring es-toolkit/compat closer to Lodash. Behavior for the affected edge cases now matches Lodash, so results may differ if you relied on the previous output.

  • Fixed compat/intersectionBy to dedupe a single array (including by the iteratee) and to keep results consistent with Lodash. (#1935)

  • Fixed compat/findIndex and compat/findLastIndex to coerce a NaN fromIndex to 0 and to convert fromIndex to an integer. (#1828, #1834, #1938)

  • Fixed compat/lastIndexOf to coerce fromIndex like Lodash. (#1832)

  • Fixed compat/every to treat a falsy, non-nullish doesMatch as a _.property shorthand instead of identity. (#1940)

  • Fixed compat/nth to support string inputs. (#1833)

  • Fixed compat/inRange to not throw on a lone negative bound. (#1835)

  • Fixed compat/toArray to convert Sets to arrays like Lodash. (#1840)

  • Fixed compat/values to treat sparse array holes as undefined. (#1894)

  • Fixed compat/maxBy and compat/minBy to restore Lodash-compatible comparison. (#1893)

  • Fixed compat/includes to exclude the length property when matching array-like values. (#1886)

  • Fixed the case functions to split ordinal numbers like Lodash, and to count string size and padding by code points for multi-byte characters. (#1836, #1852, #1853)

  • Fixed compat/unset to not treat an own literal dotted key as a deep path. (#1808)

  • Moved compat/flattenDepth's flattening logic out of flatten. (#1847)

  • Restored the standalone eq and templateSettings entry points. (#1895)

  • Fixed deburr to remove all combining diacritical marks, matching Lodash. (#1807)

  • Fixed partition to accept any predicate return value, like Array.prototype.filter. (#1937)

  • Fixed has and hasIn to prioritize nullish literal keys over paths. (#1810)

  • Fixed invokeMap to normalize a string path via toPath for this binding. (#1814)

  • Fixed isDeepKey to detect deep keys with stricter patterns. (#1621)

  • Fixed unzipWith to return an empty array instead of throwing on empty input. (#1816)

  • Improved documentation, JSDoc accuracy, and internal refactoring across compat and fp. (#1817, #1820, #1822, #1823, #1825, #1829, #1830, #1842, #1845, #1851, #1858, #1867, #1879)

We sincerely thank @​Antoliny0919, @​raon0211, @​dayongkr, @​spokodev, @​sarathfrancis90, @​mayur-shenoy, @​mahirhir, @​kojesung, @​Hprogram, @​BangDori, and everyone else who contributed. We appreciate your great efforts!

Commits
  • a443efd v1.50.0
  • 9232c57 test(check-dist): skip declaration-only ./types in CJS/ESM check (#1949)
  • 4bac390 fix(types): register ./types entrypoint in check-dist test (#1948)
  • 8ea1291 feat(types): add es-toolkit/types module with compile-time type utilities (#1...
  • b854e15 fix(partition): accept any predicate return value like Array.prototype.filter...
  • 953920b fix(compat/findIndex): convert fromIndex to an integer like lodash (#1938)
  • 9b92739 fix(compat/every): treat falsy doesMatch as property shorthand, not identity ...
  • 278b4fe build(deps): bump github/codeql-action/upload-sarif (#1942)
  • 9d05639 build(deps): bump actions/checkout from 7.0.0 to 7.0.1 (#1944)
  • ffea687 fix(compat/intersectionBy): resolve Lodash compatibility issues (#1935)
  • Additional commits viewable in compare view

Updates fuse.js from 7.1.0 to 7.5.0

Release notes

Sourced from fuse.js's releases.

v7.5.0

⚠️ Behavior changes

Every change in this release is a bug fix, but each one corrects a scoring or ranking bug. Scores and result ordering will shift for some queries. That is why this ships as a minor rather than a patch: the public API is unchanged and upgrading is a drop-in, but the results you get back can differ, and that should not arrive silently in a patch bump.

If you assert on exact score values or on a specific result order, expect those assertions to need updating. Re-baseline them against 7.5.0 rather than pinning to 7.4.x, since the 7.4.x behavior was wrong in the cases below.

  • Field-length normalisation now counts words correctly. Tabs and newlines were not treated as word separators, so a multi-line or tab-delimited field was scored as though it were one long word, making it look far shorter than it is. Fields containing \t, \n, or \r now score differently (#830).
  • Key weights are now normalised in object and keyless-logical search. Weights that did not sum to 1 were applied unnormalised, skewing the relative influence of each key. If your keys weights do not already sum to 1, your relative ranking changes (#833).
  • limit now returns the correct top-N when scores tie. A tie at the cutoff boundary could evict a result that should have been kept, so limit could return the wrong items, not merely the right items in a different order (#835).
  • Bitap respects minMatchCharLength in the exact-match shortcut. Matches shorter than minMatchCharLength were still reported via the exact-match fast path, so the matches array could contain entries it was configured to exclude (#831).

Bug Fixes

  • bitap: respect minMatchCharLength in exact-match shortcut (dbb98b6), closes #831
  • fieldNorm: count tabs and newlines as word separators (6fe85b0), closes #830
  • fieldNorm: count word-starts instead of space transitions (2946f97)
  • scoring: normalise key weights in object and keyless-logical search (e164b61), closes #833
  • search: keep the correct top-N under limit when scores tie (437f8f3), closes #835, thanks @​spokodev for the report and the fix

Full Changelog: krisk/Fuse@v7.4.2...v7.5.0

v7.4.2

Bug Fixes

  • types: ship CommonJS type declarations (.d.cts) so consumers on moduleResolution: node16/nodenext no longer hit TS1479 ("masquerading as ESM") when importing the package from a CommonJS project. The lib entries now resolve to a runtime-accurate export = declaration and the worker to its named declaration, via the require exports condition. (#780)

Full Changelog: krisk/Fuse@v7.4.1...v7.4.2

v7.4.1

Bug Fixes

  • types: ship TypeScript declarations for fuse.js/worker (572ad1e), closes #828
  • types: add TypeScript declarations for fuse.js/worker-script (6ef6c33), closes #828

Both worker subpaths now resolve types under node16/nodenext and bundler module resolution.

v7.4.0

First stable on the 7.4 line. Aggregates everything from the 7.4.0-beta.17.4.0-beta.8 cycle. See CHANGELOG.md for the per-beta breakdown.

Features

  • FuseWorker — parallel search via Web Workers (9ba192c). New FuseWorker class shards the collection across workers, runs searches in parallel, and preserves the same result ordering as Fuse. See the Web Workers guide.
  • token-search: tokenMatch: 'all' | 'any' option for AND/OR semantics (#827, 9f979d0). Default 'any' preserves existing behavior; 'all' requires every query word to match somewhere in a record (term-centric AND), useful for filter-style queries.
  • token-search: customizable tokenizer with unicode-aware default (#821, 8e55cae). New tokenize?: RegExp | (text: string) => string[] option; the default regex now segments CJK, Cyrillic, Greek, Arabic, etc. out of the box.

Bug Fixes

  • matches: report array-path keys as dotted strings (acd54e8). Previously match.key leaked a raw string[] for keys declared as path arrays (e.g. keys: [['author', 'firstName']]), contradicting the documented FuseResultMatch.key: string type. Now emits the canonical dotted string ('author.firstName'). Behavior change: consumers relying on the array shape need to update.
  • bitap: restrict highlight indices to matched window (#792, 622f105). Closes #505, #611, #691, #793.

... (truncated)

Changelog

Sourced from fuse.js's changelog.

7.5.0 (2026-07-13)

⚠️ Behavior changes

Every change in this release is a bug fix, but each one corrects a scoring or ranking bug. Scores and result ordering will shift for some queries. That is why this ships as a minor rather than a patch: the public API is unchanged and upgrading is a drop-in, but the results you get back can differ, and that should not arrive silently in a patch bump.

If you assert on exact score values or on a specific result order, expect those assertions to need updating. Re-baseline them against 7.5.0 rather than pinning to 7.4.x, since the 7.4.x behavior was wrong in the cases below.

  • Field-length normalisation now counts words correctly. Tabs and newlines were not treated as word separators, so a multi-line or tab-delimited field was scored as though it were one long word, making it look far shorter than it is. Fields containing \t, \n, or \r now score differently (#830).
  • Key weights are now normalised in object and keyless-logical search. Weights that did not sum to 1 were applied unnormalised, skewing the relative influence of each key. If your keys weights do not already sum to 1, your relative ranking changes (#833).
  • limit now returns the correct top-N when scores tie. A tie at the cutoff boundary could evict a result that should have been kept, so limit could return the wrong items, not merely the right items in a different order (#835).
  • Bitap respects minMatchCharLength in the exact-match shortcut. Matches shorter than minMatchCharLength were still reported via the exact-match fast path, so the matches array could contain entries it was configured to exclude (#831).

Bug Fixes

  • bitap: respect minMatchCharLength in exact-match shortcut (dbb98b6), closes #831
  • fieldNorm: count tabs and newlines as word separators (6fe85b0), closes #830
  • fieldNorm: count word-starts instead of space transitions (2946f97)
  • scoring: normalise key weights in object and keyless-logical search (e164b61), closes #833
  • search: keep the correct top-N under limit when scores tie (437f8f3), closes #835, thanks @​spokodev for the report and the fix

7.4.2 (2026-06-05)

Bug Fixes

  • types: emit CommonJS declarations (.d.cts) for node16/nodenext (#780) (33f5d29)

7.4.1 (2026-06-02)

Bug Fixes

  • types: add TypeScript declarations for fuse.js/worker-script (6ef6c33), closes #828
  • types: ship TypeScript declarations for fuse.js/worker (572ad1e), closes #828

7.4.0 (2026-05-30)

7.4.0-beta.8 (2026-05-25)

Bug Fixes

  • matches: report array-path keys as dotted strings (acd54e8)

7.4.0-beta.7 (2026-05-22)

Features

... (truncated)

Commits
  • 45bac9f chore(release): 7.5.0
  • 437f8f3 fix(search): keep the correct top-N under limit when scores tie
  • b8142cf test(fieldNorm): cover full separator set; narrow "any whitespace" comment
  • 6fe85b0 fix(fieldNorm): count tabs and newlines as word separators
  • e164b61 fix(scoring): normalise key weights in object and keyless-logical search
  • dbb98b6 fix(bitap): respect minMatchCharLength in exact-match shortcut
  • e2ee793 chore: rebuild dist for #830 (fieldNorm whitespace fix)
  • 2946f97 fix(fieldNorm): count word-starts instead of space transitions
  • 2fadbfa chore: bump doc versions to 7.4.2
  • 9e63058 chore(release): 7.4.2
  • Additional commits viewable in compare view

Updates humanize-duration from 3.33.1 to 3.34.0

Changelog

Sourced from humanize-duration's changelog.

3.34.0 / 2026-06-29

  • new: Norwegian Nynorsk support (nn)
  • fix: Lithuanian now uses the singular form for counts such as 101 and 201 (for example "101 diena" instead of "101 dienų")

3.33.2 / 2025-12-07

  • fix: Romanian now correctly uses "de" before nouns for numbers >= 20 such as "20 de minute" instead of "20 minute" (see #235)
Commits
  • 49fa19c 3.34.0
  • 47ab942 Update changelog and bower.json for 3.34.0 release
  • 545a37b Update devDependencies to latest versions
  • 23607f9 Update TypeScript to latest (RC) version
  • 0883f5d Update changelog with Norwegian Nynorsk change
  • ffcfa2a Update ESLint dependencies to latest version
  • c2791af Update Git URL
  • 0f69e09 Fix Lithuanian form for counts like 101 and 201 (#237)
  • fd49da2 Add Norwegian Nynorsk (nn) language
  • b961e8c Mention Intl.DurationFormat in the readme
  • Additional commits viewable in compare view

Updates nuxt-snackbar from 1.3.0 to 1.4.0

Release notes

Sourced from nuxt-snackbar's releases.

v1.4.0

   🚀 Features

  • Support Nuxt 4, modernize toolchain, add docs  -  by modbender (1bc7e)
    View changes on GitHub
Changelog

Sourced from nuxt-snackbar's changelog.

v1.4.0

compare changes

🚀 Enhancements

  • Support Nuxt 4, modernize toolchain, add docs (1bc7ef4)

❤️ Contributors

v1.1.2

compare changes

🩹 Fixes

🏡 Chore

  • Publish remove workflow (1c52568)

❤️ Contributors

  • Modbender

v1.1.1

compare changes

🩹 Fixes

  • Try fixing problems with plugin loading (dc219f1)

🏡 Chore

❤️ Contributors

  • Modbender

v1.1.0

compare changes

🚀 Enhancements

... (truncated)

Commits
  • 6853a62 ci: publish via npm OIDC trusted publishing
  • c61af75 chore(release): v1.4.0
  • 1bc7ef4 feat: support Nuxt 4, modernize toolchain, add docs
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for nuxt-snackbar since your current version.


Updates pinia from 3.0.4 to 4.0.2

Commits
  • ae4e3b2 release: pinia@4.0.2 @​pinia/testing@​2.0.1
  • 0203b2d ci: fix size check
  • 39aae41 refactor: build configuration (#3158)
  • 75009b0 release: pinia@4.0.1
  • 2ed563c chore: update pinia readme
  • fb21766 fix: Re-add missing types exports field (#3154)
  • d797385 fix(ci): pin pnpm to 11.7.0 to match action-setup bootstrap
  • bd3d9b3 ci: install pnpm standalone to avoid self-switch crash in release
  • acad9f2 ci: pin pnpm version in release workflow
  • 1374c9d release: pinia@4.0.0 @​pinia/testing@​2.0.0 @​pinia/nuxt@​1.0.0
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for pinia since your current version.


Updates reka-ui from 2.9.4 to 2.10.1

Release notes

Sourced from reka-ui's releases.

v2.10.1

   🐞 Bug Fixes

    View changes on GitHub

v2.10.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

... (truncated)

Commits

Bumps the npm-dependencies group in /client with 27 updates:

| Package | From | To |
| --- | --- | --- |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `14.0.0` | `14.3.0` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.49.0` | `1.50.0` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.1.0` | `7.5.0` |
| [humanize-duration](https://github.com/EvanHahn/HumanizeDuration.js) | `3.33.1` | `3.34.0` |
| [nuxt-snackbar](https://github.com/modbender/nuxt-snackbar) | `1.3.0` | `1.4.0` |
| [pinia](https://github.com/vuejs/pinia) | `3.0.4` | `4.0.2` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.9.4` | `2.10.1` |
| [vue](https://github.com/vuejs/core) | `3.5.35` | `3.5.40` |
| [@nuxt/devtools](https://github.com/nuxt/devtools/tree/HEAD/packages/devtools) | `3.2.4` | `3.3.1` |
| [@nuxt/icon](https://github.com/nuxt/icon) | `2.1.0` | `2.3.1` |
| [@nuxt/test-utils](https://github.com/nuxt/test-utils) | `4.0.3` | `4.1.0` |
| [@nuxtjs/color-mode](https://github.com/nuxt-modules/color-mode) | `4.0.0` | `4.0.1` |
| [@nuxtjs/robots](https://github.com/nuxt-modules/robots) | `5.5.6` | `6.1.3` |
| [@pinia/nuxt](https://github.com/vuejs/pinia) | `0.11.3` | `1.0.1` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.10` | `0.5.11` |
| [@types/luxon](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/luxon) | `3.7.1` | `3.7.2` |
| [@vue/test-utils](https://github.com/vuejs/test-utils) | `2.4.6` | `2.4.11` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.8.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.9.0` | `20.11.1` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.4.7` | `4.5.1` |
| [nuxt-security](https://github.com/Baroshem/nuxt-security) | `2.5.1` | `2.6.0` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.59.0` | `0.61.0` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.74.0` | `1.76.0` |
| [oxlint-tsgolint](https://github.com/oxc-project/tsgolint) | `0.25.0` | `7.0.2001` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.8` | `4.1.10` |
| [vue-router](https://github.com/vuejs/router) | `5.1.0` | `5.2.0` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.2.6` | `3.3.8` |


Updates `@vueuse/core` from 14.0.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 `es-toolkit` from 1.49.0 to 1.50.0
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.49.0...v1.50.0)

Updates `fuse.js` from 7.1.0 to 7.5.0
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.1.0...v7.5.0)

Updates `humanize-duration` from 3.33.1 to 3.34.0
- [Changelog](https://github.com/EvanHahn/HumanizeDuration.js/blob/main/HISTORY.md)
- [Commits](EvanHahn/HumanizeDuration.js@v3.33.1...v3.34.0)

Updates `nuxt-snackbar` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/modbender/nuxt-snackbar/releases)
- [Changelog](https://github.com/modbender/nuxt-snackbar/blob/master/CHANGELOG.md)
- [Commits](modbender/nuxt-snackbar@v1.3.0...v1.4.0)

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

Updates `reka-ui` from 2.9.4 to 2.10.1
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.9.4...v2.10.1)

Updates `vue` from 3.5.35 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.35...v3.5.40)

Updates `@nuxt/devtools` from 3.2.4 to 3.3.1
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/v3.3.1/CHANGELOG.md)
- [Commits](https://github.com/nuxt/devtools/commits/v3.3.1/packages/devtools)

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/test-utils` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/nuxt/test-utils/releases)
- [Commits](nuxt/test-utils@v4.0.3...v4.1.0)

Updates `@nuxtjs/color-mode` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/nuxt-modules/color-mode/releases)
- [Commits](nuxt-modules/color-mode@v4.0.0...v4.0.1)

Updates `@nuxtjs/robots` from 5.5.6 to 6.1.3
- [Release notes](https://github.com/nuxt-modules/robots/releases)
- [Changelog](https://github.com/nuxt-modules/robots/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/robots@v5.5.6...v6.1.3)

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

Updates `@tailwindcss/forms` from 0.5.10 to 0.5.11
- [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-forms@v0.5.10...v0.5.11)

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

Updates `@vue/test-utils` from 2.4.6 to 2.4.11
- [Release notes](https://github.com/vuejs/test-utils/releases)
- [Commits](vuejs/test-utils@v2.4.6...v2.4.11)

Updates `globals` from 17.4.0 to 17.8.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.8.0)

Updates `happy-dom` from 20.9.0 to 20.11.1
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.9.0...v20.11.1)

Updates `nuxt` from 4.4.7 to 4.5.1
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v4.5.1/packages/nuxt)

Updates `nuxt-security` from 2.5.1 to 2.6.0
- [Release notes](https://github.com/Baroshem/nuxt-security/releases)
- [Changelog](https://github.com/Baroshem/nuxt-security/blob/main/CHANGELOG.md)
- [Commits](Baroshem/nuxt-security@v2.5.1...v2.6.0)

Updates `oxfmt` from 0.59.0 to 0.61.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.61.0/npm/oxfmt)

Updates `oxlint` from 1.74.0 to 1.76.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.76.0/npm/oxlint)

Updates `oxlint-tsgolint` from 0.25.0 to 7.0.2001
- [Release notes](https://github.com/oxc-project/tsgolint/releases)
- [Commits](oxc-project/tsgolint@v0.25.0...v7.0.2001)

Updates `vitest` from 4.1.8 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-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 `vue-tsc` from 3.2.6 to 3.3.8
- [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.8/packages/tsc)

---
updated-dependencies:
- dependency-name: "@vueuse/core"
  dependency-version: 14.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: es-toolkit
  dependency-version: 1.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: fuse.js
  dependency-version: 7.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: humanize-duration
  dependency-version: 3.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: nuxt-snackbar
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: pinia
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: reka-ui
  dependency-version: 2.10.1
  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: "@nuxt/devtools"
  dependency-version: 3.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@nuxt/icon"
  dependency-version: 2.3.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@nuxt/test-utils"
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@nuxtjs/color-mode"
  dependency-version: 4.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@nuxtjs/robots"
  dependency-version: 6.1.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@pinia/nuxt"
  dependency-version: 1.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@tailwindcss/forms"
  dependency-version: 0.5.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@types/luxon"
  dependency-version: 3.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@vue/test-utils"
  dependency-version: 2.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: globals
  dependency-version: 17.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: happy-dom
  dependency-version: 20.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: nuxt
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: nuxt-security
  dependency-version: 2.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: oxfmt
  dependency-version: 0.61.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: oxlint
  dependency-version: 1.76.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: oxlint-tsgolint
  dependency-version: 7.0.2001
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: vitest
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: vue-router
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-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 27, 2026
@rudimatz rudimatz closed this Aug 10, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/client/npm-dependencies-3514d8533c branch August 10, 2026 13:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant