Skip to content

chore(deps): bump the node-dependencies group across 1 directory with 28 updates - #64

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/node-dependencies-e2e132f6e8
Open

chore(deps): bump the node-dependencies group across 1 directory with 28 updates#64
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/node-dependencies-e2e132f6e8

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the node-dependencies group with 28 updates in the / directory:

Package From To
drizzle-orm 1.0.0-beta.22 1.0.0-rc.5-169397b
ws 8.21.1 8.21.3
@tsconfig/node24 24.0.4 24.0.5
drizzle-kit 1.0.0-beta.22 1.0.0-rc.5-ab785fc
@lucide/vue 1.24.0 1.40.0
@vueuse/core 14.3.0 14.4.0
reka-ui 2.10.1 2.10.4
protobufjs 7.6.5 8.8.0
protobufjs-cli 1.3.3 2.7.0
typescript 5.9.3 7.0.2
@hono/node-server 2.0.9 2.1.1
@playwright/test 1.61.1 1.62.1
@tailwindcss/vite 4.3.2 4.3.3
@vue/server-renderer 3.5.39 3.5.42
@vue/test-utils 2.4.11 2.5.0
eslint-plugin-better-tailwindcss 4.6.1 4.7.0
happy-dom 17.6.3 20.14.0
hono 4.12.30 4.13.5
oxfmt 0.58.0 0.66.0
oxlint-tsgolint 0.24.0 7.0.2001
oxlint 1.74.0 1.81.0
pinia 3.0.4 4.0.3
tailwindcss 4.3.2 4.3.3
turbo 2.10.2 2.10.12
vite 8.1.4 8.2.2
vitest 4.1.10 5.0.0
vue-tsc 3.3.7 3.3.11
vue 3.5.39 3.5.42

Updates drizzle-orm from 1.0.0-beta.22 to 1.0.0-rc.5-169397b

Release notes

Sourced from drizzle-orm's releases.

v1.0.0-rc.4

  • Fixed broken View types when using Subquery in selection
  • Fixed custom types' JSON field API not being applied when column is used as a decoder on SQL fields
  • Fixed codecs not getting applied to SQL field when .mapWith(column) is set (fixes #5724)
  • Fixed Subquery fields' columns' codecs not being applied to subquery
  • Fixed broken in rc.3 db.select in bun-sql/pg driver (fixes #5779)
  • Updated SQLite db.$count builder to include .sync() executor for sync drivers
  • Removed RQBv1 from sqlite, removed RQBv1 TSchema, TFullSchema arguments from sqlite entities' generics
  • Fixed instances of sqlite query errors not being wrapped in DrizzleQueryError (db.batch() excluded due to api incompatibility)
  • Fixed type error on CockroachArrayBuilder constructor caused by referencing internal field's type
  • Removed mapResult method from PreparedQuery interface, removed mapResult, mapBatchResult from pg and sqlite raw queries
  • Fixed wrong bun-sqlite run result type
  • Switched sqlite RQBv2 to array mode
  • Enabled optimized default query mappers for sqlite
  • Reworked sqlite sessions: replaced per-driver PreparedQuery instances with executors passed via sessions, similar to current postgresql and mysql implementations, moved useJitMappers flag handling to dialect
  • Fixed missing string overload on .comment(sqlCommenterComment) in query builders
  • Supported nested transactions in @tursodatabase/database, @tursodatabase/database-wasm
  • Added filesytem-less migrator for @tursodatabase/database-wasm at drizzle-orm/tursodatbase/wasm-migrator
  • Split SQLite into async, effect versions (sync remains subtype of async)
  • Removed SQLiteSyncDialect, SQLiteAsyncDialect, moved generic SQLite async\sync migrators to sqlite-core/async/session as migrateSync, migrateAsync
  • Fixed sqlite cache using same cache entry for different execute methods
  • Moved EffectDrizzlePgConfig to drizzle-orm/pg-core/effect/utils
  • Made cache field in EffectCacheShape optional
  • Split mysql into async, effect versions
  • Added codec system to mysql
  • Fixed mysql float rounding to either 6 digits or double
  • Fixed mysql cropping .000 from timestamp(3)
  • Moved subquery mapper selection from dialect.buildSelection to orderSelectedFields;
  • [PG, MySQL] Improved codec system in set operators:
    • When different db types are crossed in a union, db casts them to type it deems as closest compatible to all types involved
    • If columns with codecs are set on both sides of union - codec of combined type will apply
    • If only the left-hand side of union has field with codec - left hand side's codec is preserved
    • If left-hand side field is devoid of codecs - field is not processed by codecs;
    • Set operator queries are switched from [QUERY 1] UNION [QUERY 2] to SELECT ... FROM ([QUERY 1] UNION [QUERY 2]) "drizzle_union" so cast codecs would apply after union's type mutation
    • Retrieved data of union with different types still may be lossy due to db's own conversion
  • Bump required effect package versions to 4.0.0-beta.83
  • Fixed sql.param passing Placeholder as expected input value to encoder function instead of Placeholder's value type
  • Fixed unguarded Buffer reference in drizzle-orm/effect-schema that caused error in environments without Buffer
  • Fixed sqlite blob column runtime-type default mode mismatch (fixes #1064)
  • Improved typed sql operator - preserved nullability, inferred initial data type to mapWithcallback argument, added .nullable() method to modify output type with | null (fixes #571):
      // Before:
      sql<Type | null>`...`.mapWith((v: any) => String(v)) // Output type: string
      // After:
      sql<Type | null>`...`.mapWith((v: Type) => String(v)) // Output type: string | null
      // `.nullable()` method:
      sql`...`.mapWith((v: unknown) => new Type(v)).nullable() // Output type: Type | null
  • Fixed generatedByDefaultAsIdentity columns not being filtered from inserts in runtime in postgres dialect

... (truncated)

Commits

Updates ws from 8.21.1 to 8.21.3

Release notes

Sourced from ws's releases.

8.21.3

Bug fixes

  • The server now correctly rejects permessage-deflate offers if the incoming client_max_window_bits parameter value is smaller than its configured clientMaxWindowBits (e97a20ea).

8.21.2

Bug fixes

  • Fixed a test for CITGM (2eb3be0b).
Commits
  • c791e70 [dist] 8.21.3
  • e97a20e [fix] Reject offers with client_max_window_bits below config
  • 787ebf2 [dist] 8.21.2
  • b4d62eb Revert "[ci] Trust Coveralls Homebrew tap"
  • e4bb883 [security] Use GitHub PVR as main reporting channel
  • 2eb3be0 [test] Skip test on Node.js versions where it does not apply
  • See full diff in compare view

Updates @tsconfig/node24 from 24.0.4 to 24.0.5

Commits

Updates drizzle-kit from 1.0.0-beta.22 to 1.0.0-rc.5-ab785fc

Commits

Updates @lucide/vue from 1.24.0 to 1.40.0

Release notes

Sourced from @​lucide/vue's releases.

Version 1.40.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.39.0...1.40.0

Version 1.39.0

What's Changed

Full Changelog: lucide-icons/lucide@1.38.0...1.39.0

Version 1.38.0

What's Changed

Full Changelog: lucide-icons/lucide@1.36.0...1.38.0

Version 1.37.0

What's Changed

... (truncated)

Commits
  • 7367c8f chore(deps): bump vue in the vue-deps group across 1 directory (#4695)
  • 0f8d48b test(packages): updates unit test snapshots with face-slightly-smiling (#4676)
  • 53766c7 chore(deps): bump the vue-deps group with 3 updates (#4670)
  • f229f83 chore(depedencies): Update dependencies (#4553)
  • 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 reka-ui from 2.10.1 to 2.10.4

Release notes

Sourced from reka-ui's releases.

v2.10.4

   🐞 Bug Fixes

    View changes on GitHub

v2.10.3

No significant changes

    View changes on GitHub

v2.10.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 35dde22 chore: release v2.10.4
  • f6f75d0 fix(FocusScope): confirm focus is orphaned before pulling it to the container...
  • c543b1d fix(Drawer): lock the swipe gesture to one axis on scrollable content (#2887)
  • 48a851c fix(Combobox): defer highlight scroll until Popper placement (#2885)
  • d5cb437 fix(Drawer): toggle open state on trigger click (#2881)
  • e65b3de fix(DismissableLayer): remove the stale branch element from the registry on u...
  • 6d2de0c fix(Select,Popover): drop aria-controls while the content is not rendered (#2...
  • 66d2c56 chore(deps): update test (#2878)
  • f1a04d0 chore(deps): update dependency @​types/jsdom to v30 (#2879)
  • 4fb114a docs: fix typos and grammar issues (#2880)
  • Additional commits viewable in compare view

Updates protobufjs from 7.6.5 to 8.8.0

Release notes

Sourced from protobufjs's releases.

protobufjs: v8.8.0

8.8.0 (2026-08-26)

Features

Bug Fixes

protobufjs: v8.7.2

8.7.2 (2026-08-08)

Bug Fixes

  • Also use TextDecoder for loose UTF-8 decoding (#2408) (5851a3b)
  • Parse numeric defaults according to field type (#2402) (bb2d836)
  • Parse numeric descriptor defaults by field type (#2406) (09f24ec)
  • preserve first enum alias from JSON descriptors (#2389) (8304739)
  • Preserve negative zero in codegen formatters (#2403) (92ddc9b)
  • Preserve non-finite defaults in toObject (#2393) (a38b925)

Performance Improvements

  • Optimize writer allocs and packed varint reads (#2405) (64cc8f1)

protobufjs: v8.7.1

8.7.1 (2026-07-12)

Bug Fixes

  • Accept repeated NullValue elements in ProtoJSON (#2373) (ad0b9bb)
  • Apply enum options regardless of declaration order (#2384) (b5009b0)
  • Base64-encode bytes field defaults in toObject (#2375) (e552511)
  • cli: Handle extensions during sparse generation (#2386) (1965d37)
  • cli: Match declaration imports to generated modules (#2385) (3cf7420)
  • cli: Preserve array element union precedence in pbts (#2378) (2a697a5)
  • cli: Resolve imports from cwd by default (#2381) (65f659a)
  • Merge repeated message-valued fields within map entries (#2364) (13b417b)
  • Parse aggregate objects in option arrays (#2379) (71c2532)
  • Parse Any type URLs in aggregate options (#2383) (666fa6b)

... (truncated)

Changelog

Sourced from protobufjs's changelog.

8.8.0 (2026-08-26)

Features

Bug Fixes

8.7.2 (2026-08-08)

Bug Fixes

  • Also use TextDecoder for loose UTF-8 decoding (#2408) (5851a3b)
  • Parse numeric defaults according to field type (#2402) (bb2d836)
  • Parse numeric descriptor defaults by field type (#2406) (09f24ec)
  • preserve first enum alias from JSON descriptors (#2389) (8304739)
  • Preserve negative zero in codegen formatters (#2403) (92ddc9b)
  • Preserve non-finite defaults in toObject (#2393) (a38b925)

Performance Improvements

  • Optimize writer allocs and packed varint reads (#2405) (64cc8f1)

8.7.1 (2026-07-12)

Bug Fixes

  • accept repeated NullValue elements in ProtoJSON (#2373) (ad0b9bb)
  • Apply enum options regardless of declaration order (#2384) (b5009b0)
  • Base64-encode bytes field defaults in toObject (#2375) (e552511)
  • cli: Handle extensions during sparse generation (#2386) (1965d37)
  • cli: Match declaration imports to generated modules (#2385) (3cf7420)
  • cli: Preserve array element union precedence in pbts (#2378) (2a697a5)
  • cli: Resolve imports from cwd by default (#2381) (65f659a)
  • Merge repeated message-valued fields within map entries (#2364) (13b417b)
  • Parse aggregate objects in option arrays (#2379) (71c2532)
  • Parse Any type URLs in aggregate options (#2383) (666fa6b)
  • Parse bracketed special field names in options (#2377) (dd1870b)
  • Parse map fields inside groups (#2382) (8a2c427)

... (truncated)

Commits

Updates protobufjs-cli from 1.3.3 to 2.7.0

Release notes

Sourced from protobufjs-cli's releases.

protobufjs-cli: v2.7.0

2.7.0 (2026-08-26)

Features

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • protobufjs bumped from file:.. to 8.8.0
    • peerDependencies
      • protobufjs bumped from ^8.7.2 to ^8.8.0

protobufjs-cli: v2.6.2

2.6.2 (2026-08-08)

Bug Fixes

  • Preserve non-finite defaults in toObject (#2393) (a38b925)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies
      • protobufjs bumped from file:.. to 8.7.2
    • peerDependencies
      • protobufjs bumped from ^8.7.1 to ^8.7.2

protobufjs-cli: v2.6.1

2.6.1 (2026-07-12)

Bug Fixes

  • cli: Handle extensions during sparse generation (#2386) (1965d37)
  • cli: Match declaration imports to generated modules (#2385) (<...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 30, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/node-dependencies-e2e132f6e8 branch from da29a9e to c616feb Compare August 31, 2026 01:16
… 28 updates

Bumps the node-dependencies group with 28 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `1.0.0-beta.22` | `1.0.0-rc.5-169397b` |
| [ws](https://github.com/websockets/ws) | `8.21.1` | `8.21.3` |
| [@tsconfig/node24](https://github.com/tsconfig/bases/tree/HEAD/bases) | `24.0.4` | `24.0.5` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `1.0.0-beta.22` | `1.0.0-rc.5-ab785fc` |
| [@lucide/vue](https://github.com/lucide-icons/lucide/tree/HEAD/packages/vue) | `1.24.0` | `1.40.0` |
| [@vueuse/core](https://github.com/vueuse/vueuse/tree/HEAD/packages/core) | `14.3.0` | `14.4.0` |
| [reka-ui](https://github.com/unovue/reka-ui) | `2.10.1` | `2.10.4` |
| [protobufjs](https://github.com/protobufjs/protobuf.js) | `7.6.5` | `8.8.0` |
| [protobufjs-cli](https://github.com/protobufjs/protobuf.js) | `1.3.3` | `2.7.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
| [@hono/node-server](https://github.com/honojs/node-server) | `2.0.9` | `2.1.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.1` | `1.62.1` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.2` | `4.3.3` |
| [@vue/server-renderer](https://github.com/vuejs/core/tree/HEAD/packages/server-renderer) | `3.5.39` | `3.5.42` |
| [@vue/test-utils](https://github.com/vuejs/test-utils) | `2.4.11` | `2.5.0` |
| [eslint-plugin-better-tailwindcss](https://github.com/schoero/eslint-plugin-better-tailwindcss) | `4.6.1` | `4.7.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `17.6.3` | `20.14.0` |
| [hono](https://github.com/honojs/hono) | `4.12.30` | `4.13.5` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.58.0` | `0.66.0` |
| [oxlint-tsgolint](https://github.com/oxc-project/tsgolint) | `0.24.0` | `7.0.2001` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.74.0` | `1.81.0` |
| [pinia](https://github.com/vuejs/pinia) | `3.0.4` | `4.0.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.2` | `4.3.3` |
| [turbo](https://github.com/vercel/turborepo) | `2.10.2` | `2.10.12` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.4` | `8.2.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.10` | `5.0.0` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.7` | `3.3.11` |
| [vue](https://github.com/vuejs/core) | `3.5.39` | `3.5.42` |



Updates `drizzle-orm` from 1.0.0-beta.22 to 1.0.0-rc.5-169397b
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

Updates `ws` from 8.21.1 to 8.21.3
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.21.1...8.21.3)

Updates `@tsconfig/node24` from 24.0.4 to 24.0.5
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `drizzle-kit` from 1.0.0-beta.22 to 1.0.0-rc.5-ab785fc
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits)

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

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 `reka-ui` from 2.10.1 to 2.10.4
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.10.1...v2.10.4)

Updates `protobufjs` from 7.6.5 to 8.8.0
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md)
- [Commits](protobufjs/protobuf.js@protobufjs-v7.6.5...protobufjs-v8.8.0)

Updates `protobufjs-cli` from 1.3.3 to 2.7.0
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/master/CHANGELOG.md)
- [Commits](protobufjs/protobuf.js@protobufjs-cli-v1.3.3...protobufjs-cli-v2.7.0)

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

Updates `@hono/node-server` from 2.0.9 to 2.1.1
- [Release notes](https://github.com/honojs/node-server/releases)
- [Commits](honojs/node-server@v2.0.9...v2.1.1)

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 `@tailwindcss/vite` from 4.3.2 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/@tailwindcss-vite)

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

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

Updates `eslint-plugin-better-tailwindcss` from 4.6.1 to 4.7.0
- [Release notes](https://github.com/schoero/eslint-plugin-better-tailwindcss/releases)
- [Changelog](https://github.com/schoero/eslint-plugin-better-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](schoero/eslint-plugin-better-tailwindcss@v4.6.1...v4.7.0)

Updates `happy-dom` from 17.6.3 to 20.14.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v17.6.3...v20.14.0)

Updates `hono` from 4.12.30 to 4.13.5
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.12.30...v4.13.5)

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

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

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

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

Updates `tailwindcss` from 4.3.2 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 `turbo` from 2.10.2 to 2.10.12
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.10.2...v2.10.12)

Updates `vite` from 8.1.4 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)

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-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)

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

---
updated-dependencies:
- dependency-name: "@hono/node-server"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: "@lucide/vue"
  dependency-version: 1.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: "@tsconfig/node24"
  dependency-version: 24.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: "@vue/server-renderer"
  dependency-version: 3.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: "@vue/test-utils"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: "@vueuse/core"
  dependency-version: 14.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: drizzle-kit
  dependency-version: 1.0.0-rc.5-ab785fc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: drizzle-orm
  dependency-version: 1.0.0-rc.5-169397b
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: eslint-plugin-better-tailwindcss
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: happy-dom
  dependency-version: 20.11.10
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: hono
  dependency-version: 4.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: oxfmt
  dependency-version: 0.65.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: oxlint
  dependency-version: 1.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: oxlint-tsgolint
  dependency-version: 7.0.2001
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: pinia
  dependency-version: 4.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: protobufjs
  dependency-version: 8.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: protobufjs-cli
  dependency-version: 2.7.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: reka-ui
  dependency-version: 2.10.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: turbo
  dependency-version: 2.10.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: vite
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: vue
  dependency-version: 3.5.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: ws
  dependency-version: 8.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/node-dependencies-e2e132f6e8 branch from c616feb to ae82ffd Compare September 7, 2026 01:17
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