Skip to content

build(deps): bump the all-npm-dependencies group across 1 directory with 24 updates - #2191

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

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-10cdee764b

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
@antfu/eslint-config 9.3.0 9.5.1
@electron/fuses 1.8.0 2.1.3
@playwright/test 1.62.1 1.63.0
@tanstack/vue-query 5.101.4 5.102.8
@tanstack/vue-virtual 3.13.35 3.13.36
@types/node 24.13.2 26.4.1
@vitest/coverage-v8 4.1.10 5.0.0
daisyui 5.7.17 5.7.28
dayjs 1.11.21 1.11.23
electron 43.4.0 44.2.0
eslint 10.8.1 10.10.0
highcharts 13.0.0 13.0.2
ky 2.0.2 2.1.0
lint-staged 17.3.0 17.5.0
markdown-it 15.0.0 15.0.1
meta-json-schema 1.19.29 1.19.30
playwright 1.62.1 1.63.0
tailwindcss 3.4.19 4.3.3
tsx 4.23.12 4.23.13
vitest 4.1.10 5.0.0
vue-router 5.2.0 5.3.1
vue-tsc 3.3.10 3.3.11
vue 3.5.41 3.5.42
vite 8.0.16 8.2.2

Updates @antfu/eslint-config from 9.3.0 to 9.5.1

Release notes

Sourced from @​antfu/eslint-config's releases.

v9.5.1

   🐞 Bug Fixes

    View changes on GitHub

v9.5.0

   🚀 Features

    View changes on GitHub

v9.4.1

   🚀 Features

  • pnpm: Enforce new-line style for pnpm-workspace.yaml  -  by @​antfu (ab400)
    View changes on GitHub

v9.4.0

   🚀 Features

    View changes on GitHub
Commits
  • df4d896 chore: release v9.5.1
  • a213d4e fix: antislop plugins composition, refactor
  • 0870a3a chore: release v9.5.0
  • f6906f6 feat: add antislop option (#861)
  • 8808d4e chore: release v9.4.1
  • ab4004a feat(pnpm): enforce new-line style for pnpm-workspace.yaml
  • c058aa0 chore: release v9.4.0
  • 33a41b4 feat: update plugins jsdoc v64 unicorn v74 e18e v0.8 solid v0.17
  • 4e17083 chore: update deps
  • aa64d59 feat(pnpm): improve the pnpm workspaces fields ordering
  • Additional commits viewable in compare view

Updates @electron/fuses from 1.8.0 to 2.1.3

Release notes

Sourced from @​electron/fuses's releases.

v2.1.3

2.1.3 (2026-06-29)

Bug Fixes

v2.1.2

2.1.2 (2026-06-05)

Bug Fixes

  • replace extract-zip with @​electron-internal/extract-zip (#120) (67d4eed)

v2.1.1

2.1.1 (2026-03-27)

Performance Improvements

  • optimize binary scanning with streaming and concurrent chunk processing (#96) (0b8ac07)

v2.1.0

2.1.0 (2026-02-26)

Features

  • add FuseV1Options.WasmTrapHandlers (#89) (c76019b)

v2.0.0

2.0.0 (2025-08-01)

Breaking Changes

  • feat!: bump engines requirement to Node 22. This module is now ESM-only. (#67)
Commits
  • 00f2479 fix: only detect real .app bundle paths in pathToFuseFile (#123)
  • c83c88e docs: clarify when to call flipFuses() (#124)
  • 2bb9189 build(deps): bump markdown-it from 14.1.1 to 14.2.0 (#122)
  • 9400b99 build(deps): bump vite from 8.0.8 to 8.0.16 (#121)
  • 67d4eed fix: replace extract-zip with @​electron-internal/extract-zip (#120)
  • abf5e3d build(deps): bump electron/github-app-auth-action from 2.0.0 to 2.1.0 (#117)
  • 8c2ba18 build: run yarn dedupe (#116)
  • 1d86813 build(deps): bump dsanders11/project-actions from 2.0.0 to 2.0.1 (#114)
  • 32dc905 build(deps): bump actions/setup-node from 6.3.0 to 6.4.0 (#115)
  • bbf0792 build(deps): bump postcss from 8.5.8 to 8.5.10 (#113)
  • Additional commits viewable in compare view
Maintainer changes

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

Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates @playwright/test from 1.62.1 to 1.63.0

Release notes

Sourced from @​playwright/test's releases.

v1.63.0

🔒 Test locks

Tests that access a shared resource — an external service, a global account setting — can now declare a named lock. Tests that share a lock name never run concurrently, across files, workers and projects, while everything else keeps running in parallel:

test('update user settings', { lock: 'user-settings' }, async ({ page }) => {
  // never runs at the same time as other tests holding 'user-settings'
});

A test can hold multiple locks, and test.describe() accepts a lock for the whole group. Learn more about test locks.

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
await page.frameLocator().getByRole('button').click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

await page.locator('button').visible().click();

🧾 Step params and subtitles

Steps now carry structured data for reporters. Playwright API steps report the target locator and call arguments, and test.step() accepts subtitle and params options for your own steps:

await test.step('Login', async () => {
  // ...
}, { subtitle: 'as admin', params: { user: 'admin' } });

Reporters receive them via testStep.subtitle and testStep.params. For Playwright API

... (truncated)

Commits
  • 1b025d7 chore: mark v1.63.0 (#42569)
  • 0b9956d cherry-pick(#42568): docs(test): mark test.step subtitle option as since v1.63
  • 13dbf10 cherry-pick(#42552): docs: release notes for v1.63
  • e93b64e cherry-pick(#42566): feat(test): add subtitle option to test.step (#42567)
  • 2b7a5f2 test: response.body() for content-encoding:identity (#42537)
  • 648a67c fix(mcp): create parent directories for explicitly named files (#42540)
  • 7894f56 docs(mcp): clarify how tool file names are resolved (#42538)
  • 52900a1 devops: restore npm publishing from GitHub Actions (#42550)
  • 8c47f59 docs(csharp): fix nonexistent method names in guide examples (#42507)
  • bd6e552 chore(video): emit frames with real timestamps, drop frame number quantizatio...
  • Additional commits viewable in compare view

Updates @tanstack/vue-query from 5.101.4 to 5.102.8

Release notes

Sourced from @​tanstack/vue-query's releases.

@​tanstack/vue-query@​5.102.8

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.8

@​tanstack/vue-query@​5.102.7

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.7

@​tanstack/vue-query@​5.102.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.6

@​tanstack/vue-query@​5.102.5

Patch Changes

  • Updated dependencies [578e5c2]:
    • @​tanstack/query-core@​5.102.5
Changelog

Sourced from @​tanstack/vue-query's changelog.

5.102.8

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.8

5.102.7

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.7

5.102.6

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.6

5.102.5

Patch Changes

  • Updated dependencies [578e5c2]:
    • @​tanstack/query-core@​5.102.5

5.102.4

Patch Changes

  • Updated dependencies [a05df6a]:
    • @​tanstack/query-core@​5.102.4

5.102.3

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.102.3

5.102.2

Patch Changes

  • Updated dependencies [80fbf73]:
    • @​tanstack/query-core@​5.102.2

5.102.1

... (truncated)

Commits

Updates @tanstack/vue-virtual from 3.13.35 to 3.13.36

Release notes

Sourced from @​tanstack/vue-virtual's releases.

@​tanstack/vue-virtual@​3.13.36

Patch Changes

Changelog

Sourced from @​tanstack/vue-virtual's changelog.

3.13.36

Patch Changes

Commits

Updates @types/node from 24.13.2 to 26.4.1

Commits

Updates @vitest/coverage-v8 from 4.1.10 to 5.0.0

Release notes

Sourced from @​vitest/coverage-v8's releases.

v5.0.0

Vitest 5 is officially out! This release focuses on performance and brings a lot of new features while fixing long-standing bugs. See our blog post for the official announcement.

   🚨 Breaking Changes

... (truncated)

Commits

Updates daisyui from 5.7.17 to 5.7.28

Release notes

Sourced from daisyui's releases.

v5.7.28

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.7.28

💚 Thank you for using daisyUI!

v5.7.27

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.7.27

💚 Thank you for using daisyUI!

v5.7.26

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.7.26

💚 Thank you for using daisyUI!

v5.7.25

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.7.25

💚 Thank you for using daisyUI!

v5.7.24

🌼 Read changelog: https://daisyui.com/docs/changelog/

📦 Install this update:

npm i -D daisyui@5.7.24

💚 Thank you for using daisyUI!

... (truncated)

Changelog

Sourced from daisyui's changelog.

5.7.28 (2026-09-03)

Bug Fixes

  • breadcrumbs item focus ring being cropped (#4724) (cc339e7)

5.7.27 (2026-09-01)

Bug Fixes

  • join item border overlap when there's a wrapper (#4719) (96fd80a)

5.7.26 (2026-09-01)

Bug Fixes

5.7.25 (2026-09-01)

Bug Fixes

  • checkbox - add style for aria-checked="mixed" like :indeterminate (#4713) (5e5b8b4)

5.7.24 (2026-09-01)

Bug Fixes

5.7.23 (2026-08-31)

Bug Fixes

  • menu-paged summary hides children (badge, icon, etc) when details is open (#4710) (4929505)

5.7.22 (2026-08-24)

Bug Fixes

5.7.21 (2026-08-23)

Bug Fixes

  • FAB selector style leack for fab-flower actions (#4683) (e4e6419)

5.7.20 (2026-08-20)

Bug Fixes

  • text-rotate - selector targets direct children, to avoid style leaking (#4682) (44856dc)

5.7.19 (2026-08-19)

Bug Fixes

... (truncated)

Commits

Updates dayjs from 1.11.21 to 1.11.23

Release notes

Sourced from dayjs's releases.

v1.11.23

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

v1.11.22

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169
Changelog

Sourced from dayjs's changelog.

1.11.23 (2026-08-17)

Bug Fixes

  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (dad46e6)
  • plugin: timezone plugin prevent RangeError for invalid Day.js values (#3180) (#3181) (2a3785f)

1.11.22 (2026-08-16)

Bug Fixes

  • plugin: timezone compute instance .tz() offset without host DST (#3174) (e27ee80), closes #3169
Commits
  • 4549b8d chore(release): 1.11.23 [skip ci]
  • 2a3785f fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • dad46e6 fix(plugin): timezone plugin prevent RangeError for invalid Day.js values (#3...
  • ae3a550 chore(release): 1.11.22 [skip ci]
  • accfc67 D2M (#3177)
  • e27ee80 fix(plugin): timezone compute instance .tz() offset without host DST (#3174)
  • 98364bc chore: update doc
  • f6a1556 chore: update doc
  • 6609c5e chore: update doc
  • See full diff in compare view

Updates electron from 43.4.0 to 44.2.0

Release notes

Sourced from electron's releases.

electron v44.2.0

Release Notes for v44.2.0

Fixes

  • Fixed a pending read on a net.request chunked upload stream inside a protocol handler never settling when the request failed or was aborted. #53373 (Also in 43, 45)
  • Fixed a potential crash when using menu.popup with a frame from an offscreen rendered window. #53362 (Also in 43)
  • Fixed an intermittent crash (access violation) on Windows when an ASAR integrity violation is detected, so the process now exits with code 1 as intended. #53455 (Also in 43, 45)
  • Fixed application crash after a large number of IPC messages from renderers. #53417 (Also in 42, 43, 45)
  • Fixed native addons deriving from node::ObjectWrap aborting during garbage collection on Node.js 24.19.0 and later. #53392 (Also in 42, 43, 45)

Other Changes

  • Backported fixes from upstream ANGLE, Chromium, Skia and V8. #53479
  • Improved throughput of responses that protocol.handle handlers return straight from net.fetch. #53378
  • Updated Chromium to 152.0.7977.76. #53382
  • Updated Node.js to v24.20.0. #53250

electron v44.1.1

Release Notes for v44.1.1

Fixes

  • Fixed chrome.tabs.query() returning tab url and title to extensions without the tabs permission or host access, aligning with tabs.get. #53354 (Also in 42, 43, 45)
  • Fixed a renderer crash when an array with a throwing property getter is passed across contextBridge, and several main/utility-process crashes when option objects passed to Electron APIs contain throwing accessors or Proxy traps. #53331 (Also in 42, 43)
  • Fixed an intermittent crash at startup on Linux caused by a race between Pango and the main thread initializing fontconfig. #53340 (Also in 43, 45)
  • Fixed an issue where an exception thrown by a property getter on an object passed through contextBridge was swallowed instead of being thrown back to the caller. #53335 (Also in 43, 45)
  • Fixed main process crashes when navigating to http://accessibility/ or http://devtools/, when an extension background page used navigator.mediaDevices, and when calling SerialPort.forget() for a disconnected device. #53333 (Also in 43, 45)
  • Fixed the PDF viewer failing to save an edited PDF with NotAllowedError: Third party iframes are not allowed to show a file picker. #53328 (Also in 43, 45)

electron v44.1.0

Release Notes for v44.1.0

Fixes

  • Fixed fs.constants.O_DIRECTORY, O_NOFOLLOW and O_DIRECT holding x86 values on Linux arm64 and armv7l, which made opening a directory fail with EINVAL, and made require('trace_events') behave the same on cross-compiled builds as on native ones. #53320 (Also in 42, 43, 45)
  • Fixed webContents.executeJavaScriptInIsolatedWorld resolving with undefined when worldId was not an integer. #53238 (Also in

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 8, 2026

Copy link
Copy Markdown

Deploying metacubexd with  Cloudflare Pages  Cloudflare Pages

Latest commit: fc0553f
Status:🚫  Build failed.

View logs

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 8, 2026
…ith 24 updates

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

| Package | From | To |
| --- | --- | --- |
| [@antfu/eslint-config](https://github.com/antfu/eslint-config) | `9.3.0` | `9.5.1` |
| [@electron/fuses](https://github.com/electron/fuses) | `1.8.0` | `2.1.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.62.1` | `1.63.0` |
| [@tanstack/vue-query](https://github.com/TanStack/query/tree/HEAD/packages/vue-query) | `5.101.4` | `5.102.8` |
| [@tanstack/vue-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/vue-virtual) | `3.13.35` | `3.13.36` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.13.2` | `26.4.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.10` | `5.0.0` |
| [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui) | `5.7.17` | `5.7.28` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.21` | `1.11.23` |
| [electron](https://github.com/electron/electron) | `43.4.0` | `44.2.0` |
| [eslint](https://github.com/eslint/eslint) | `10.8.1` | `10.10.0` |
| [highcharts](https://github.com/highcharts/highcharts-dist) | `13.0.0` | `13.0.2` |
| [ky](https://github.com/sindresorhus/ky) | `2.0.2` | `2.1.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.3.0` | `17.5.0` |
| [markdown-it](https://github.com/markdown-it/markdown-it) | `15.0.0` | `15.0.1` |
| [meta-json-schema](https://github.com/dongchengjie/meta-json-schema) | `1.19.29` | `1.19.30` |
| [playwright](https://github.com/microsoft/playwright) | `1.62.1` | `1.63.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.19` | `4.3.3` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.12` | `4.23.13` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `5.0.0` |
| [vue-router](https://github.com/vuejs/router) | `5.2.0` | `5.3.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.10` | `3.3.11` |
| [vue](https://github.com/vuejs/core) | `3.5.41` | `3.5.42` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.2.2` |



Updates `@antfu/eslint-config` from 9.3.0 to 9.5.1
- [Release notes](https://github.com/antfu/eslint-config/releases)
- [Commits](antfu/eslint-config@v9.3.0...v9.5.1)

Updates `@electron/fuses` from 1.8.0 to 2.1.3
- [Release notes](https://github.com/electron/fuses/releases)
- [Commits](electron/fuses@v1.8.0...v2.1.3)

Updates `@playwright/test` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.1...v1.63.0)

Updates `@tanstack/vue-query` from 5.101.4 to 5.102.8
- [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.102.8/packages/vue-query)

Updates `@tanstack/vue-virtual` from 3.13.35 to 3.13.36
- [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.36/packages/vue-virtual)

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

Updates `@vitest/coverage-v8` from 4.1.10 to 5.0.0
- [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/v5.0.0/packages/coverage-v8)

Updates `daisyui` from 5.7.17 to 5.7.28
- [Release notes](https://github.com/saadeghi/daisyui/releases)
- [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/saadeghi/daisyui/commits/v5.7.28/packages/daisyui)

Updates `dayjs` from 1.11.21 to 1.11.23
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.23/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.21...v1.11.23)

Updates `electron` from 43.4.0 to 44.2.0
- [Release notes](https://github.com/electron/electron/releases)
- [Commits](electron/electron@v43.4.0...v44.2.0)

Updates `eslint` from 10.8.1 to 10.10.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.8.1...v10.10.0)

Updates `highcharts` from 13.0.0 to 13.0.2
- [Commits](highcharts/highcharts-dist@v13.0.0...v13.0.2)

Updates `ky` from 2.0.2 to 2.1.0
- [Release notes](https://github.com/sindresorhus/ky/releases)
- [Commits](sindresorhus/ky@v2.0.2...v2.1.0)

Updates `lint-staged` from 17.3.0 to 17.5.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.3.0...v17.5.0)

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

Updates `meta-json-schema` from 1.19.29 to 1.19.30
- [Release notes](https://github.com/dongchengjie/meta-json-schema/releases)
- [Changelog](https://github.com/dongchengjie/meta-json-schema/blob/main/CHANGELOG.md)
- [Commits](dongchengjie/meta-json-schema@v1.19.29...v1.19.30)

Updates `playwright` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.1...v1.63.0)

Updates `tailwindcss` from 3.4.19 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 `tsx` from 4.23.12 to 4.23.13
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.12...v4.23.13)

Updates `vitest` from 4.1.10 to 5.0.0
- [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/v5.0.0/packages/vitest)

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

Updates `vue-tsc` from 3.3.10 to 3.3.11
- [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.11/packages/tsc)

Updates `vue` from 3.5.41 to 3.5.42
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.41...v3.5.42)

Updates `vite` from 8.0.16 to 8.2.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.2.2/packages/vite)

---
updated-dependencies:
- dependency-name: "@antfu/eslint-config"
  dependency-version: 9.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@electron/fuses"
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@tanstack/vue-query"
  dependency-version: 5.102.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@tanstack/vue-virtual"
  dependency-version: 3.13.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.4.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: daisyui
  dependency-version: 5.7.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: dayjs
  dependency-version: 1.11.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: electron
  dependency-version: 44.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: eslint
  dependency-version: 10.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: highcharts
  dependency-version: 13.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: ky
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: lint-staged
  dependency-version: 17.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: markdown-it
  dependency-version: 15.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: meta-json-schema
  dependency-version: 1.19.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: playwright
  dependency-version: 1.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: tsx
  dependency-version: 4.23.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: vitest
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: vue
  dependency-version: 3.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: vue-router
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-npm-dependencies-10cdee764b branch from d900c5e to fc0553f Compare September 10, 2026 07:03
@dependabot @github

dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Sep 15, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/all-npm-dependencies-10cdee764b branch September 15, 2026 22:12
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