Skip to content

build(deps): bump the all-npm-dependencies group with 13 updates - #2168

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

build(deps): bump the all-npm-dependencies group with 13 updates#2168
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-a159cd39d2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-npm-dependencies group with 13 updates:

Package From To
@electron/fuses 1.8.0 2.1.3
@nuxtjs/i18n 10.5.0 10.6.0
@playwright/test 1.62.0 1.62.1
@vueuse/core 14.3.0 14.4.0
@vueuse/integrations 14.3.0 14.4.0
@vueuse/nuxt 14.3.0 14.4.0
daisyui 5.7.4 5.7.9
jsdom 30.0.0 30.0.1
lint-staged 17.2.0 17.3.0
markdown-it 14.3.0 15.0.0
playwright 1.62.0 1.62.1
vue-tsc 3.3.8 3.3.9
vite 8.0.16 8.2.0

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 @nuxtjs/i18n from 10.5.0 to 10.6.0

Release notes

Sourced from @​nuxtjs/i18n's releases.

v10.6.0

This release is mostly about performance, and about making the domain features behave consistently.

Faster builds and faster SSR

Locale messages are no longer bundled into your server build as JavaScript, no longer shipped as client chunks when they are served from the messages endpoint, and no longer copied on every server-rendered request.

Building a Nuxt app with 10 locales of around 2,000 messages each and 10 pages:

10.5.0 10.6.0
build time 9.2s 5.7s 38% faster
peak build memory 3.6 GB 2.5 GB 30% less
build output added by the module 12.9 MB 3.2 MB 75% smaller
SSR throughput 785 req/s 1722 req/s 2.2× higher

Median of three runs on an M4 Pro with Nuxt 4.5; throughput over 10 concurrent connections. The same app without the module builds in 3.4s and outputs 3.2 MB.

How much of this you notice depends on how many messages your app loads: a few locales with a few hundred messages each will barely differ, larger message sets gain the most. It covers messages the module can read while building — .json, .yaml and .json5 files. Locale files written as .ts or .js produce their messages at runtime, so both their build and their SSR cost stay as they were. Apps that previously ran out of memory building large message sets should now complete.

This should work without any changes on your side. The new message handling can be turned off with experimental.optimizeMessageBundling: false if you run into trouble — and if you do, please let us know so we can sort it out.

Domains

differentDomains and multiDomainLocales now agree on which locale each domain serves, which URL a locale is advertised on, and where a visitor goes when the locale they asked for lives on another domain. hreflang and canonical links name one domain per locale, so every domain in your setup describes the same set of pages instead of each claiming the languages for itself.

10.5.0 could also stop serving a locale at its own domain root, redirecting / to the prefixed path and returning 404 for unprefixed paths. A domain that serves exactly one locale is treated as that locale's default again, so domainDefault is not needed for it.

Changelog

   🚀 Features

   🐞 Bug Fixes

... (truncated)

Changelog

Sourced from @​nuxtjs/i18n's changelog.

v10.6.0 (2026-07-30T10:49:10Z)

This changelog is generated by GitHub Releases

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 4c36bc9 release: v10.6.0
  • d17b9be refactor(routing): drop the unreachable on-host prefix strip (#4111)
  • ca32d4d docs: describe what the domain override cannot change and which links cross o...
  • 285f2d6 test: poll message counts instead of reading them once after a locale fetch (...
  • 187b364 fix(domain): serve every locale on a host matching no configured domain (#4108)
  • efb9d50 fix(domain): resolve a domain serving a single locale as its default (#4107)
  • 21e1ccd fix(seo): resolve alternate and canonical links from one domain per locale (#...
  • d6930a6 fix(types): prevent duplicate tsconfig paths for aliased deps (#4031)
  • 03eba9f fix(domain): redirect detection to the domain serving the detected locale (#4...
  • a4eee0f fix: keep params encoded when resolving a localized route by path (#4104)
  • Additional commits viewable in compare view

Updates @playwright/test from 1.62.0 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.
Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • See full diff in compare view

Updates @vueuse/core from 14.3.0 to 14.4.0

Release notes

Sourced from @​vueuse/core's releases.

v14.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 24160f9 chore: release v14.4.0 (#5552)
  • 6aa9d6d fix(useDraggable): end drag on pointercancel (#5550)
  • 5fe4945 fix(useElementSize): prefill size based on box option (#5524)
  • 0f6d55d fix(useVirtualList): recompute range when item size changes (#5533)
  • 8f26673 test(useTransition): widen lower bound for WebKit test (#5540)
  • 2cad765 fix(useEventBus): use tryOnScopeDispose to avoid operating Vue internal API...
  • 653283c fix(useGamepad): keep updating remaining gamepads after one disconnects (#5523)
  • d39699c docs(useTextareaAutosize): restore demo textarea autosizing (#5532)
  • 8442658 fix(useFetch): ignore stale abort error after refetch succeeds (#5525)
  • bccb159 fix: accept array template ref bound to v-for as observer target (#5514)
  • Additional commits viewable in compare view

Updates @vueuse/integrations from 14.3.0 to 14.4.0

Release notes

Sourced from @​vueuse/integrations's releases.

v14.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @vueuse/nuxt from 14.3.0 to 14.4.0

Release notes

Sourced from @​vueuse/nuxt's releases.

v14.4.0

   🚀 Features

   🐞 Bug Fixes

Bumps the all-npm-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@electron/fuses](https://github.com/electron/fuses) | `1.8.0` | `2.1.3` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `10.5.0` | `10.6.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.62.0` | `1.62.1` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `14.3.0` | `14.4.0` |
| [@vueuse/integrations](https://github.com/vueuse/vueuse/tree/HEAD/packages/integrations) | `14.3.0` | `14.4.0` |
| [@vueuse/nuxt](https://github.com/vueuse/vueuse/tree/HEAD/packages/nuxt) | `14.3.0` | `14.4.0` |
| [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui) | `5.7.4` | `5.7.9` |
| [jsdom](https://github.com/jsdom/jsdom) | `30.0.0` | `30.0.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.2.0` | `17.3.0` |
| [markdown-it](https://github.com/markdown-it/markdown-it) | `14.3.0` | `15.0.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.62.0` | `1.62.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.8` | `3.3.9` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.2.0` |


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 `@nuxtjs/i18n` from 10.5.0 to 10.6.0
- [Release notes](https://github.com/nuxt-modules/i18n/releases)
- [Changelog](https://github.com/nuxt-modules/i18n/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/i18n@v10.5.0...v10.6.0)

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

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

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

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

Updates `daisyui` from 5.7.4 to 5.7.9
- [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.9/packages/daisyui)

Updates `jsdom` from 30.0.0 to 30.0.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v30.0.0...v30.0.1)

Updates `lint-staged` from 17.2.0 to 17.3.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.2.0...v17.3.0)

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

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

Updates `vue-tsc` from 3.3.8 to 3.3.9
- [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.9/packages/tsc)

Updates `vite` from 8.0.16 to 8.2.0
- [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/create-vite@8.2.0/packages/vite)

---
updated-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: "@nuxtjs/i18n"
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: "@vueuse/core"
  dependency-version: 14.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@vueuse/integrations"
  dependency-version: 14.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@vueuse/nuxt"
  dependency-version: 14.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: daisyui
  dependency-version: 5.7.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: jsdom
  dependency-version: 30.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: markdown-it
  dependency-version: 15.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: playwright
  dependency-version: 1.62.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: vite
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-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 Aug 4, 2026
@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying metacubexd with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8a1c15a
Status:🚫  Build failed.

View logs

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