Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 25 updates - #22

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-47b07c83b8
Open

chore(deps): bump the minor-and-patch group across 1 directory with 25 updates#22
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-47b07c83b8

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the minor-and-patch group with 25 updates in the / directory:

Package From To
@nuxt/ui 4.10.0 4.11.0
@nuxtjs/i18n 10.4.1 10.6.0
@nuxtjs/sitemap 8.2.2 8.5.0
@nuxtjs/supabase 2.0.9 2.0.10
@sentry/nuxt 10.66.0 10.71.0
@upstash/redis 1.38.0 1.38.3
nuxt 4.4.8 4.5.2
nuxt-og-image 6.7.2 6.7.8
posthog-js 1.404.1 1.422.0
satori 0.28.0 0.33.4
vue 3.5.40 3.5.42
vue-router 5.2.0 5.3.0
@faker-js/faker 10.5.0 10.6.0
@iconify-json/lucide 1.2.117 1.2.126
@iconify-json/simple-icons 1.2.90 1.2.93
@playwright/test 1.61.1 1.62.1
@supabase/supabase-js 2.110.7 2.112.4
@types/node 26.1.1 26.4.0
@vitest/coverage-v8 4.1.10 4.1.11
oxfmt 0.58.0 0.65.0
oxlint 1.74.0 1.80.0
supabase 2.109.1 2.116.0
tsx 4.23.1 4.23.12
vitest 4.1.10 4.1.11
vue-tsc 3.3.7 3.3.11

Updates @nuxt/ui from 4.10.0 to 4.11.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.11.0

✨ Highlights

↔️ Splitter component

A new Splitter component lets you build layouts with resizable panels separated by draggable handles, with min/max sizes, collapsible panels, nesting and vertical orientation:

<script setup lang="ts">
import type { SplitterItem } from '@nuxt/ui'
const items: SplitterItem[] = [
{ slot: 'sidebar', minSize: 15, maxSize: 40, defaultSize: 25 },
{ slot: 'main', defaultSize: 75 }
]
</script>
&lt;template>
<USplitter id="layout" :items="items" class="h-96">
&lt;template #sidebar>
Sidebar
</template>
\&lt;template #main&gt;
  Main
&lt;/template&gt;

</USplitter>
</template>

[!TIP] Set the id prop when rendering on the server so ids match on hydration, and auto-save-id to persist the layout to localStorage.

📊 ProgressGroup component

A new ProgressGroup component displays multiple values as segments of a single progress bar, with a legend listing each item. Items take any theme color or a CSS color, and the status prop shows the total:

<script setup lang="ts">
import type { ProgressGroupItem } from '@nuxt/ui'
const items: ProgressGroupItem[] = [
{ label: 'System', value: 24, color: 'neutral', icon: 'i-lucide-cog' },
{ label: 'Apps', value: 8, color: 'error', icon: 'i-lucide-app-window' },
{ label: 'Multimedia', value: 42, color: 'success', icon: 'i-lucide-film' }
]
</tr></table>

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.11.0 (2026-08-21)

Features

Bug Fixes

  • AuthForm: type submit payload with the schema output (#6816) (795c353)
  • Calendar: correct size scale (#6832) (29f9890)
  • CommandPalette: always escape search highlight to prevent XSS (#6741) (2a172ef)
  • components: resolve theme props consistently in form controls (#6834) (7c74269)
  • ContentToc: prevent list from collapsing (#6778) (706cfd0)
  • Editor: ignore updates without document changes (#6807) (7e615e1)
  • Icon: render bundled icons during SSR in Vue (#6841) (545f9e3)
  • locale: correct native names and tajik language code (#6823) (e333e8d)
  • locale: correct slide placeholder casing in lb (#6822) (10ec237)
  • Marquee: use logical properties and drop broken vertical RTL animation (#6833) (9b08a84)
  • Modal: emit transition events from overlay when scrollable (#6786) (5afbd5c)
  • Slider: bind form aria attributes on thumbs instead of root (#6768) (f3c2ac2)
  • Slider: forward aria attributes to the thumb (#6848) (d6c3802)
  • theme: blank top-level base in applyUnstyled (#6825) (3e89ea7)
  • theme: keep variants when replacing slot classes in app config (#6824) (0fabbe5)
  • Theme: merge class from props with the component class (#6842) (731ff26)
  • theme: replace deprecated bare tailwind aliases (#6865) (d4f2ca0)
  • theme: respect reduced motion on remaining movement transitions (ce5b1df)
  • theme: unify motion easing and respect prefers-reduced-motion (#6742) (735b264)
  • Tree: use logical padding for indentation (#6815) (958a3ba)

Performance Improvements

  • Button/Select/SelectMenu/InputMenu: narrow reactive dependencies (#6736) (6bd1dfc)
  • components: memoize tv slot invocations with simple args (#6737) (4200e80)
Commits
  • f62aa14 chore(release): v4.11.0
  • d6c3802 fix(Slider): forward aria attributes to the thumb (#6848)
  • 07f3fe8 feat(CheckboxGroup/RadioGroup): support icon in items (#6726)
  • a7f26a3 docs(showcase): add brusnika-lms.com (#6863)
  • d4f2ca0 fix(theme): replace deprecated bare tailwind aliases (#6865)
  • e2a253e docs(header): prevent focus on toggle button animations
  • be58f3f docs(table): pin TanStack Table links to v8 (#6864)
  • 545f9e3 fix(Icon): render bundled icons during SSR in Vue (#6841)
  • 14ac243 feat(ProgressGroup): new component (#6860)
  • a630c94 docs(showcase): add triadtrainer.vercel.app
  • Additional commits viewable in compare view

Updates @nuxtjs/i18n from 10.4.1 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

v10.5.0 (2026-07-21T14:05:18Z)

... (truncated)

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 @nuxtjs/sitemap from 8.2.2 to 8.5.0

Release notes

Sourced from @​nuxtjs/sitemap's releases.

v8.5.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v8.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v8.3.4

   🚀 Features

    View changes on GitHub

v8.3.3

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

... (truncated)

Commits

Updates @nuxtjs/supabase from 2.0.9 to 2.0.10

Release notes

Sourced from @​nuxtjs/supabase's releases.

v2.0.10

What's Changed

Full Changelog: nuxt-modules/supabase@v2.0.9...v2.0.10

Changelog

Sourced from @​nuxtjs/supabase's changelog.

2.0.10 (2026-08-10)

Commits
  • 2027b73 chore(release): release v2.0.10
  • 976002a chore(deps): upgrade (#639)
  • 2d35f36 chore(deps): update actions/stale action to v11 (#636)
  • 74c6757 chore(deps): update devdependency @​release-it/conventional-changelog to v12 (...
  • d58a885 chore(deps): update actions/setup-node action to v7 (#629)
  • fb9cfa6 docs(deps): pin h3 to fix ssr (#631)
  • 9e88535 chore(deps): upgrade (#626)
  • a27044c chore(deps): lock file maintenance (#614)
  • 14c3331 chore(deps): update actions/checkout action to v7 (#624)
  • a159978 chore(deps): update nuxt framework to ^4.4.8 (#622)
  • Additional commits viewable in compare view

Updates @sentry/nuxt from 10.66.0 to 10.71.0

Release notes

Sourced from @​sentry/nuxt's releases.

10.71.0

Important Changes

  • feat(v10/core)!: Enable logs by default (#23311)

The enableLogs client option now defaults to true, so Sentry Logs work without any manual opt-in. Nothing is captured unless you call the Sentry.logger.* APIs or add a log-forwarding integration (such as consoleLoggingIntegration, pinoIntegration, or the winston transport), and you can set enableLogs: false to opt out. Although a default change like this would normally land in a major release, we are shipping it in a minor after careful consideration, since it sends no data on its own and only takes effect once you actively use the logging APIs or a logging integration.

Other Changes

  • feat(v10/core): Deprecate scope.clear() method (#23231)
  • fix(v10/core): Bound child span tracking on long-lived spans (#23406)
  • fix(v10/core): Read Supabase PostgREST headers from Headers instances (#23241)
  • fix(v10/hono): Use captureException from scope, not from Client (#23280)
  • fix(v10/nuxt): Delete source maps after Nitro finishes building (#23508)
  • fix(v10/react-router): Carry multi-byte UTF-8 across SSR stream chunk boundaries (#23421)
  • fix(v10/react): Match TanStack Router pageload against the router location (#23494)
  • test(v10/nextjs): Add e2e app for a user-owned OpenTelemetry setup (#23278)

Bundle size 📦

Path Size
@​sentry/browser 27.1 KB
@​sentry/browser - with treeshaking flags 25.58 KB
@​sentry/browser (incl. Tracing) 45.51 KB
@​sentry/browser (incl. Tracing + Span Streaming) 47.25 KB
@​sentry/browser (incl. Tracing, Profiling) 50.15 KB
@​sentry/browser (incl. Tracing, Replay) 83.83 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 73.71 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 88.45 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 100.79 KB
@​sentry/browser (incl. Feedback) 43.87 KB
@​sentry/browser (incl. sendFeedback) 31.78 KB
@​sentry/browser (incl. FeedbackAsync) 36.79 KB
@​sentry/browser (incl. Metrics) 28.16 KB
@​sentry/browser (incl. Logs) 28.38 KB
@​sentry/browser (incl. Metrics & Logs) 29.06 KB
@​sentry/react 28.86 KB
@​sentry/react (incl. Tracing) 47.72 KB
@​sentry/vue 32.4 KB
@​sentry/vue (incl. Tracing) 47.43 KB
@​sentry/svelte 27.12 KB
CDN Bundle 29.43 KB
CDN Bundle (incl. Tracing) 47.43 KB

... (truncated)

Changelog

Sourced from @​sentry/nuxt's changelog.

10.71.0

Important Changes

  • feat(v10/core)!: Enable logs by default (#23311)

The enableLogs client option now defaults to true, so Sentry Logs work without any manual opt-in. Nothing is captured unless you call the Sentry.logger.* APIs or add a log-forwarding integration (such as consoleLoggingIntegration, pinoIntegration, or the winston transport), and you can set enableLogs: false to opt out. Although a default change like this would normally land in a major release, we are shipping it in a minor after careful consideration, since it sends no data on its own and only takes effect once you actively use the logging APIs or a logging integration.

Other Changes

  • feat(v10/core): Deprecate scope.clear() method (#23231)
  • fix(v10/core): Bound child span tracking on long-lived spans (#23406)
  • fix(v10/core): Read Supabase PostgREST headers from Headers instances (#23241)
  • fix(v10/hono): Use captureException from scope, not from Client (#23280)
  • fix(v10/nuxt): Delete source maps after Nitro finishes building (#23508)
  • fix(v10/react-router): Carry multi-byte UTF-8 across SSR stream chunk boundaries (#23421)
  • fix(v10/react): Match TanStack Router pageload against the router location (#23494)
  • test(v10/nextjs): Add e2e app for a user-owned OpenTelemetry setup (#23278)

10.70.0

  • feat(v10/core): Support stable MCP SDK v2 (#22986)
  • feat(v10/deps): Bump @sentry/node-cpu-profiler to 2.4.3 (#22992)
  • feat(v10/solid,solidstart): Support @solidjs/router v1 (#23163)
  • fix(v10/cloudflare): Fork the isolation scope for Durable Object methods (#23189)
  • fix(v10/cloudflare): Get original waituntil in workflows (#23192)
  • fix(v10/cloudflare): Instrument DO RPC methods on the prototype, not a Proxy (#23190)
  • fix(v10/cloudflare): Set agent conversation id on the onRequest path (#22985)
  • fix(v10/cloudflare): Set conversation id independent of session name (#23193)
  • fix(v10/cloudflare): Try/catch on non-configurable prototypes (#23191)
  • fix(v10/cloudflare): Use gen_ai.agent.name for class names (#22987)
  • fix(v10/core,browser): Handle errors from other realms (#23201)
  • fix(v10/core): Sample errors after beforeSend while preserving session updates (#22819)
  • fix(v10/hono): Include originalException in captured exception hint (#22990)
  • fix(v10/nextjs): meriyah issue for standalone build (#23055)
  • fix(v10/nextjs): Remove tracing from middleware wrappers (#22904)
  • fix(v10/profiling-node): Respect profileSessionSampleRate in trace profile lifecycle (#22940)
  • fix(v10/react-router): Preserve sourcemaps.disable when unstable_sentryVitePluginOptions is set (#22966)
  • fix(v10/react): Remove routes from shared set on <Routes> unmount (#22948)
  • fix(v10/sveltekit): Export metrics from worker entry point (#23027)

... (truncated)

Commits
  • 9fcb063 release: 10.71.0
  • fbc14d8 meta(changelog): Update changelog for 10.71.0 (#23517)
  • 671f4b1 fix(v10/nuxt): Delete source maps after Nitro finishes building (#23508)
  • 0211227 fix(v10/react): Match TanStack Router pageload against the router location (#...
  • bbea828 feat(v10/core)!: Enable logs by default (#23311)
  • 7ded310 fix(v10/core): Bound child span tracking on long-lived spans (#23406)
  • 245d807 fix(v10/react-router): Carry multi-byte UTF-8 across SSR stream chunk boundar...
  • 1d439a3 fix(v10/core): Read Supabase PostgREST headers from Headers instances (#23241)
  • 8f03efe test(v10/nextjs): Add e2e app for a user-owned OpenTelemetry setup (#23278)
  • c884ae1 fix(v10/hono): Use captureException from scope, not from Client (#23280)
  • Additional commits viewable in compare view

Updates @upstash/redis from 1.38.0 to 1.38.3

Release notes

Sourced from @​upstash/redis's releases.

@​upstash/redis@​1.38.3

Patch Changes

  • f020866: Send an Upstash-Telemetry-Retry header with the retry count on retried requests so retry rates are visible in server-side telemetry
  • 777dc30: Trim telemetry header values before deduplicating so whitespace around existing values does not defeat the dedup check

@​upstash/redis@​1.38.3-canary-20260807072941-777dc30585ae61e5826bb95f5a957e6dea277900

What's Changed

Full Changelog: https://github.com/upstash/redis-js/compare/@​upstash/redis@1.38.2...@​upstash/redis@1.38.3-canary-20260807072941-777dc30585ae61e5826bb95f5a957e6dea277900

@​upstash/redis@​1.38.2

Patch Changes

  • c0f5ad7: Deduplicate telemetry header values so repeated mergeTelemetry calls no longer append the same sdk, platform or runtime tag multiple times

@​upstash/redis@​1.38.1

Patch Changes

  • bd7a19f: Add a quick tip about creating a database via https://upstash.com/start-redis to the warnings shown when the Redis url or token is missing. On Cloudflare, the warning shown when both the url and the token are missing now names both wrangler secret put commands instead of only one.
Commits
  • 74da1df chore: version packages (#1443)
  • f020866 DX-2960: send Upstash-Telemetry-Retry header with the attempt number (DX-2960...
  • 777dc30 fix: trim telemetry values before dedup and cover distinct-version case (#1442)
  • fc3089b chore: version packages (#1441)
  • c0f5ad7 fix: deduplicate telemetry header values in mergeTelemetry (#1440)
  • e45fb78 chore: version packages (#1439)
  • bd7a19f DX-2866: add start-redis tip to missing url/token warnings (#1438)
  • 8cf6209 fix: stabilize flaky evalshaRo test by waiting for script replication
  • 3024bb2 DX-2750: add ai sdk telemetry to redis search example (<...

    Description has been truncated

…5 updates

Bumps the minor-and-patch group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@nuxt/ui](https://github.com/nuxt/ui) | `4.10.0` | `4.11.0` |
| [@nuxtjs/i18n](https://github.com/nuxt-modules/i18n) | `10.4.1` | `10.6.0` |
| [@nuxtjs/sitemap](https://github.com/nuxt-modules/sitemap) | `8.2.2` | `8.5.0` |
| [@nuxtjs/supabase](https://github.com/nuxt-modules/supabase) | `2.0.9` | `2.0.10` |
| [@sentry/nuxt](https://github.com/getsentry/sentry-javascript) | `10.66.0` | `10.71.0` |
| [@upstash/redis](https://github.com/upstash/redis-js) | `1.38.0` | `1.38.3` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `4.4.8` | `4.5.2` |
| [nuxt-og-image](https://github.com/nuxt-modules/og-image) | `6.7.2` | `6.7.8` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.404.1` | `1.422.0` |
| [satori](https://github.com/vercel/satori) | `0.28.0` | `0.33.4` |
| [vue](https://github.com/vuejs/core) | `3.5.40` | `3.5.42` |
| [vue-router](https://github.com/vuejs/router) | `5.2.0` | `5.3.0` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `10.5.0` | `10.6.0` |
| [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.117` | `1.2.126` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.90` | `1.2.93` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.62.1` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js/tree/HEAD/packages/core/supabase-js) | `2.110.7` | `2.112.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.1` | `26.4.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.10` | `4.1.11` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.58.0` | `0.65.0` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.74.0` | `1.80.0` |
| [supabase](https://github.com/supabase/cli/tree/HEAD/apps/cli) | `2.109.1` | `2.116.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.1` | `4.23.12` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `4.1.11` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.7` | `3.3.11` |



Updates `@nuxt/ui` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.10.0...v4.11.0)

Updates `@nuxtjs/i18n` from 10.4.1 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.4.1...v10.6.0)

Updates `@nuxtjs/sitemap` from 8.2.2 to 8.5.0
- [Release notes](https://github.com/nuxt-modules/sitemap/releases)
- [Commits](nuxt-modules/sitemap@v8.2.2...v8.5.0)

Updates `@nuxtjs/supabase` from 2.0.9 to 2.0.10
- [Release notes](https://github.com/nuxt-modules/supabase/releases)
- [Changelog](https://github.com/nuxt-modules/supabase/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/supabase@v2.0.9...v2.0.10)

Updates `@sentry/nuxt` from 10.66.0 to 10.71.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.71.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.66.0...10.71.0)

Updates `@upstash/redis` from 1.38.0 to 1.38.3
- [Release notes](https://github.com/upstash/redis-js/releases)
- [Commits](https://github.com/upstash/redis-js/compare/@upstash/redis@1.38.0...@upstash/redis@1.38.3)

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

Updates `nuxt-og-image` from 6.7.2 to 6.7.8
- [Release notes](https://github.com/nuxt-modules/og-image/releases)
- [Changelog](https://github.com/nuxt-modules/og-image/blob/main/CHANGELOG.md)
- [Commits](nuxt-modules/og-image@v6.7.2...v6.7.8)

Updates `posthog-js` from 1.404.1 to 1.422.0
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/compare/posthog-js@1.404.1...posthog-js@1.422.0)

Updates `satori` from 0.28.0 to 0.33.4
- [Release notes](https://github.com/vercel/satori/releases)
- [Commits](vercel/satori@0.28.0...0.33.4)

Updates `vue` from 3.5.40 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.40...v3.5.42)

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

Updates `@faker-js/faker` from 10.5.0 to 10.6.0
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v10.5.0...v10.6.0)

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

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

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

Updates `@supabase/supabase-js` from 2.110.7 to 2.112.4
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/packages/core/supabase-js/CHANGELOG.md)
- [Commits](https://github.com/supabase/supabase-js/commits/v2.112.4/packages/core/supabase-js)

Updates `@types/node` from 26.1.1 to 26.4.0
- [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 4.1.11
- [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.11/packages/coverage-v8)

Updates `oxfmt` from 0.58.0 to 0.65.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.65.0/npm/oxfmt)

Updates `oxlint` from 1.74.0 to 1.80.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.80.0/npm/oxlint)

Updates `supabase` from 2.109.1 to 2.116.0
- [Release notes](https://github.com/supabase/cli/releases)
- [Changelog](https://github.com/supabase/cli/blob/develop/apps/cli/docs/release-process.md)
- [Commits](https://github.com/supabase/cli/commits/v2.116.0/apps/cli)

Updates `tsx` from 4.23.1 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.1...v4.23.12)

Updates `vitest` from 4.1.10 to 4.1.11
- [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.11/packages/vitest)

Updates `vue-tsc` from 3.3.7 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)

---
updated-dependencies:
- dependency-name: "@nuxt/ui"
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@nuxtjs/i18n"
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@nuxtjs/sitemap"
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@nuxtjs/supabase"
  dependency-version: 2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@sentry/nuxt"
  dependency-version: 10.71.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@upstash/redis"
  dependency-version: 1.38.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: nuxt
  dependency-version: 4.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: nuxt-og-image
  dependency-version: 6.7.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: posthog-js
  dependency-version: 1.422.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: satori
  dependency-version: 0.33.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vue
  dependency-version: 3.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vue-router
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@faker-js/faker"
  dependency-version: 10.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@iconify-json/lucide"
  dependency-version: 1.2.126
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@iconify-json/simple-icons"
  dependency-version: 1.2.93
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@supabase/supabase-js"
  dependency-version: 2.112.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: oxfmt
  dependency-version: 0.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: oxlint
  dependency-version: 1.80.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: supabase
  dependency-version: 2.116.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vue-tsc
  dependency-version: 3.3.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 30, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 30, 2026

Copy link
Copy Markdown

Deploying gstack with  Cloudflare Pages  Cloudflare Pages

Latest commit: 5db6d93
Status: ✅  Deploy successful!
Preview URL: https://4368a21f.gstack-b93.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-mino-urqs.gstack-b93.pages.dev

View logs

@dependabot dependabot Bot added the javascript Pull requests that update javascript code label Aug 30, 2026
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