Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/node-dependencies-55cdfa1116
Closed

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

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the node-dependencies group with 25 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
drizzle-kit 1.0.0-beta.22 1.0.0-rc.5-ab785fc
@lucide/vue 1.24.0 1.31.0
@vueuse/core 14.3.0 14.4.0
reka-ui 2.10.1 2.10.3
protobufjs 7.6.5 8.7.2
protobufjs-cli 1.3.3 2.6.2
typescript 5.9.3 7.0.2
@hono/node-server 2.0.9 2.1.0
@playwright/test 1.61.1 1.62.1
@tailwindcss/vite 4.3.2 4.3.3
@vue/server-renderer 3.5.39 3.5.41
eslint-plugin-better-tailwindcss 4.6.1 4.7.0
happy-dom 17.6.3 20.11.2
hono 4.12.30 4.13.2
oxfmt 0.58.0 0.63.0
oxlint-tsgolint 0.24.0 7.0.2001
oxlint 1.74.0 1.78.0
pinia 3.0.4 4.0.3
tailwindcss 4.3.2 4.3.3
turbo 2.10.2 2.10.9
vite 8.1.4 8.2.1
vue-tsc 3.3.7 3.3.9
vue 3.5.39 3.5.41

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 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.31.0

Release notes

Sourced from @​lucide/vue's releases.

Version 1.31.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.30.0...1.31.0

Version 1.30.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.29.0...1.30.0

Version 1.29.0

What's Changed

Full Changelog: lucide-icons/lucide@1.28.0...1.29.0

Version 1.28.0

... (truncated)

Commits
  • 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.3

Release notes

Sourced from reka-ui's releases.

v2.10.3

No significant changes

    View changes on GitHub

v2.10.2

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • e74dc85 chore: release v2.10.3
  • f1a4fec chore: release v2.10.2
  • 96509cd chore(deps-dev): bump nuxt from 3.14.159 to 3.21.10 in /playground/nuxt (#2855)
  • 54e20ce chore(deps): update dependency vite to ^8.2.1 (#2858)
  • 5e5a43c chore(deps): update dependency @​testing-library/user-event to ^14.6.3 (#2857)
  • 140bd9b chore(docs): update contributors and sponsors
  • 35fd068 fix(NumberField): allow backspacing through a formatted unit suffix (#2851)
  • 719d59a fix(Drawer): track drags in non-dismissable directions so the drawer pulls el...
  • 6f635ea docs: note core build is required before docs:dev (#2853)
  • cc010be chore(deps-dev): bump postcss from 8.4.24 to 8.5.23 in /playground/vue3 (#2847)
  • Additional commits viewable in compare view

Updates protobufjs from 7.6.5 to 8.7.2

Release notes

Sourced from protobufjs's releases.

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)
  • Parse bracketed special field names in options (#2377) (dd1870b)
  • Parse map fields inside groups (#2382) (8a2c427)
  • Preserve proto names in bundled definitions (#2390) (7ba0557)
  • Remove circular LongBits dependency (#2387) (829f5cd)

protobufjs: v8.7.0

8.7.0 (2026-07-06)

Features

  • Rework encoder architecture and add additional fast paths (#2359) (e912baf)

Bug Fixes

... (truncated)

Changelog

Sourced from protobufjs's changelog.

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)
  • Preserve proto names in bundled definitions (#2390) (7ba0557)
  • Remove circular LongBits dependency (#2387) (829f5cd)

8.7.0 (2026-07-06)

Features

  • Rework encoder architecture and add additional fast paths (#2359) (e912baf)

Bug Fixes

  • Preserve parsed json_name in field options (#2363) (1cdd91e)
  • Reject truncated declarations without TypeError (#2358) (5995f2a)
  • Resolve feature defaults before lazy codegen (d59d100)

... (truncated)

Commits
  • 91cdef0 chore: release master (#2391)
  • c362fe3 chore(deps-dev): Bump shell-quote from 1.8.4 to 1.10.0 (#2399)
  • 7999776 chore(deps-dev): Bump browserify-sign from 4.2.1 to 4.2.6 (#2398)
  • 549aa7a chore(deps): Bump linkify-it from 5.0.1 to 5.0.2 in /cli (#2397)
  • 5851a3b fix: Also use TextDecoder for loose UTF-8 decoding (#2408)
  • aca5b83 docs: Clarify README
  • adce445 chore(deps): update dev dependencies (#2395)
  • a38b925 fix: Preserve non-finite defaults in toObject (#2393)
  • 09f24ec fix: Parse numeric descriptor defaults by field type (#2406)
  • 64cc8f1 perf: Optimize writer allocs and packed varint reads (#2405)
  • Additional commits viewable in compare view

Updates protobufjs-cli from 1.3.3 to 2.6.2

Release notes

Sourced from protobufjs-cli's releases.

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) (3cf7420)
  • cli: Preserve array element union precedence in pbts (#2378) (2a697a5)
  • cli: Resolve imports from cwd by default (#2381) (65f659a)

Dependencies

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

protobufjs-cli: v2.6.0

2.6.0 (2026-07-06)

Features

  • Rework encoder architecture and add additional fast paths (#2359) (e912baf)

Dependencies

  • The following workspace dependencies were updated
    • devDependencies

... (truncated)

Commits
  • 91cdef0 chore: release master (#2391)
  • c362fe3 chore(deps-dev): Bump shell-quote from 1.8.4 to 1.10.0 (#2399)
  • 7999776 chore(deps-dev): Bump browserify-sign from 4.2.1 to 4.2.6 (#2398)
  • 549aa7a chore(deps): Bump linkify-it from 5.0.1 to 5.0.2 in /cli (#2397)
  • 5851a3b fix: Also use TextDecoder for loose UTF-8 decoding (#2408)
  • aca5b83 docs: Clarify README
  • adce445 chore(deps): update dev dependencies (#2395)
  • a38b925 fix: Preserve non-finite defaults in toObject (#2393)
  • 09f24ec fix: Parse numeric descriptor defaults by field type (#2406)
  • 64cc8f1 perf: Optimize writer allocs and packed varint reads (#2405)
  • Additional commits viewable in compare view

Updates typescript from 5.9.3 to 7.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript ...

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 13, 2026
@dependabot dependabot Bot changed the title Bump the node-dependencies group across 1 directory with 25 updates chore(deps): bump the node-dependencies group across 1 directory with 25 updates Aug 13, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/node-dependencies-55cdfa1116 branch from 3128227 to 975146e Compare August 13, 2026 14:44
… 25 updates

Bumps the node-dependencies group with 25 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` |
| [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.31.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.3` |
| [protobufjs](https://github.com/protobufjs/protobuf.js) | `7.6.5` | `8.7.2` |
| [protobufjs-cli](https://github.com/protobufjs/protobuf.js) | `1.3.3` | `2.6.2` |
| [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.0` |
| [@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.41` |
| [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.11.2` |
| [hono](https://github.com/honojs/hono) | `4.12.30` | `4.13.2` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.58.0` | `0.63.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.78.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.9` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.1.4` | `8.2.1` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `3.3.7` | `3.3.9` |
| [vue](https://github.com/vuejs/core) | `3.5.39` | `3.5.41` |



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 `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.31.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.31.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.3
- [Release notes](https://github.com/unovue/reka-ui/releases)
- [Commits](unovue/reka-ui@v2.10.1...v2.10.3)

Updates `protobufjs` from 7.6.5 to 8.7.2
- [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.7.2)

Updates `protobufjs-cli` from 1.3.3 to 2.6.2
- [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.6.2)

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

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

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.41
- [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.41/packages/server-renderer)

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.11.2
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v17.6.3...v20.11.2)

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

Updates `oxfmt` from 0.58.0 to 0.63.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.63.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.78.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.78.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.9
- [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.9)

Updates `vite` from 8.1.4 to 8.2.1
- [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.1/packages/vite)

Updates `vue-tsc` from 3.3.7 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 `vue` from 3.5.39 to 3.5.41
- [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.41)

---
updated-dependencies:
- dependency-name: "@hono/node-server"
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: "@lucide/vue"
  dependency-version: 1.31.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: "@vue/server-renderer"
  dependency-version: 3.5.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: drizzle-orm
  dependency-version: 1.0.0-rc.4
  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.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: hono
  dependency-version: 4.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: oxfmt
  dependency-version: 0.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: oxlint
  dependency-version: 1.78.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.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: protobufjs
  dependency-version: 8.7.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: protobufjs-cli
  dependency-version: 2.6.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: node-dependencies
- dependency-name: reka-ui
  dependency-version: 2.10.3
  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.9
  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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: node-dependencies
- dependency-name: vue
  dependency-version: 3.5.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: node-dependencies
- dependency-name: vue-tsc
  dependency-version: 3.3.9
  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-55cdfa1116 branch from 975146e to beb019e Compare August 17, 2026 01:16
@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Author

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

@dependabot dependabot Bot closed this Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/node-dependencies-55cdfa1116 branch August 24, 2026 01:16
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