Skip to content

chore(deps-dev): bump the dev-dependencies group across 1 directory with 12 updates - #52

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

chore(deps-dev): bump the dev-dependencies group across 1 directory with 12 updates#52
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 12 updates in the / directory:

Package From To
@biomejs/biome 2.5.2 2.5.6
@size-limit/esbuild 12.1.0 13.0.2
@size-limit/file 12.1.0 13.0.2
@types/node 26.1.0 26.1.2
@zvndev/powdb-client 0.20.0 0.21.0
@zvndev/powdb-embedded 0.20.0 0.21.0
c8 11.0.0 12.0.0
lint-staged 17.0.8 17.2.0
mysql2 3.22.5 3.23.2
size-limit 12.1.0 13.0.2
tsx 4.22.5 4.23.1
typescript 6.0.3 7.0.2

Updates @biomejs/biome from 2.5.2 to 2.5.6

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.6

2.5.6

Patch Changes

  • #11035 0e4b03b Thanks @​ematipico! - Fixed a performance regression in noMisusedPromises that caused type inference to run repeatedly while linting a file.

  • #11043 22ec076 Thanks @​denbezrukov! - Fixed CSS formatting for multiline function arguments preceded by comments:

     .example {
       value: outer(
         1,
         /* comment */
         nested(
    -      first,
    -      second
    -    )
    +        first,
    +        second
    +      )
       );
     }
  • #11007 c9acb25 Thanks @​BTF-Kabir-2020! - Fixed #9195: useHookAtTopLevel no longer reports hooks in named forwardRef components that receive a ref parameter.

  • #10152 50a9bd8 Thanks @​Zelys-DFKH! - Fixed #10131: Biome now correctly parses curried arrow functions in ternary consequents when the inner arrow's parameters use a destructuring pattern, e.g. cond ? (x) => ({ a, b }) => body : alt.

  • #11105 8ffe2b9 Thanks @​dadavidtseng! - Fixed #11092: The noUselessTernary quick fix now preserves operator spacing when simplifying or inverting boolean ternary expressions.

  • #10533 5809875 Thanks @​Mokto! - Fixed #10515: biome check --write was not idempotent on Svelte files — multi-line template literals in <script> blocks and block comments in <style> blocks gained an extra indent level on every run.

  • #11040 0abb620 Thanks @​Mokto! - Fixed an issue where the HTML formatter would duplicate a comment placed directly before a Svelte {@const ...} or {@debug ...} block. The duplication compounded on every subsequent --write, causing the file to grow exponentially.

  • #10858 6d18204 Thanks @​ruidosujeira! - Fixed #10839: Svelte {#each} array destructuring no longer includes spaces inside square brackets, and multiline bind function expressions now indent their getter, setter, and function body correctly.

  • #11009 2c36626 Thanks @​ematipico! - Improved the accuracy of type-aware lint rules by resolving more inferred types. For example, noFloatingPromises now detects floating Promises returned by aliased callbacks and arrays of Promises created by async mapping callbacks.

    The following statements are now reported:

    type AsyncCallback = () => Promise<void>;
    declare const callback: AsyncCallback;
    callback();
    [1, 2, 3].map(async (value) => value);

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.6

Patch Changes

  • #11035 0e4b03b Thanks @​ematipico! - Fixed a performance regression in noMisusedPromises that caused type inference to run repeatedly while linting a file.

  • #11043 22ec076 Thanks @​denbezrukov! - Fixed CSS formatting for multiline function arguments preceded by comments:

     .example {
       value: outer(
         1,
         /* comment */
         nested(
    -      first,
    -      second
    -    )
    +        first,
    +        second
    +      )
       );
     }
  • #11007 c9acb25 Thanks @​BTF-Kabir-2020! - Fixed #9195: useHookAtTopLevel no longer reports hooks in named forwardRef components that receive a ref parameter.

  • #10152 50a9bd8 Thanks @​Zelys-DFKH! - Fixed #10131: Biome now correctly parses curried arrow functions in ternary consequents when the inner arrow's parameters use a destructuring pattern, e.g. cond ? (x) => ({ a, b }) => body : alt.

  • #11105 8ffe2b9 Thanks @​dadavidtseng! - Fixed #11092: The noUselessTernary quick fix now preserves operator spacing when simplifying or inverting boolean ternary expressions.

  • #10533 5809875 Thanks @​Mokto! - Fixed #10515: biome check --write was not idempotent on Svelte files — multi-line template literals in <script> blocks and block comments in <style> blocks gained an extra indent level on every run.

  • #11040 0abb620 Thanks @​Mokto! - Fixed an issue where the HTML formatter would duplicate a comment placed directly before a Svelte {@const ...} or {@debug ...} block. The duplication compounded on every subsequent --write, causing the file to grow exponentially.

  • #10858 6d18204 Thanks @​ruidosujeira! - Fixed #10839: Svelte {#each} array destructuring no longer includes spaces inside square brackets, and multiline bind function expressions now indent their getter, setter, and function body correctly.

  • #11009 2c36626 Thanks @​ematipico! - Improved the accuracy of type-aware lint rules by resolving more inferred types. For example, noFloatingPromises now detects floating Promises returned by aliased callbacks and arrays of Promises created by async mapping callbacks.

    The following statements are now reported:

    type AsyncCallback = () => Promise<void>;
    declare const callback: AsyncCallback;
    callback();
    [1, 2, 3].map(async (value) => value);

  • #10973 9cb044c Thanks @​ematipico! - Fixed false positives in noMisleadingReturnType when generic-constraint, normalization, substitution, or structural return-type comparison cannot complete. The rule now suppresses diagnostics rather than suggesting a return type derived from partial information. For example, this unresolved return type is no longer reported:

... (truncated)

Commits

Updates @size-limit/esbuild from 12.1.0 to 13.0.2

Release notes

Sourced from @​size-limit/esbuild's releases.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Changelog

Sourced from @​size-limit/esbuild's changelog.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​size-limit/esbuild since your current version.


Updates @size-limit/file from 12.1.0 to 13.0.2

Release notes

Sourced from @​size-limit/file's releases.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Changelog

Sourced from @​size-limit/file's changelog.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​size-limit/file since your current version.


Updates @types/node from 26.1.0 to 26.1.2

Commits

Updates @zvndev/powdb-client from 0.20.0 to 0.21.0

Release notes

Sourced from @​zvndev/powdb-client's releases.

v0.21.0

What's Changed

Full Changelog: ZVN-DEV/powdb@v0.20.0...v0.21.0

Changelog

Sourced from @​zvndev/powdb-client's changelog.

0.21.0 - 2026-07-27

Commits

Updates @zvndev/powdb-embedded from 0.20.0 to 0.21.0

Release notes

Sourced from @​zvndev/powdb-embedded's releases.

v0.21.0

What's Changed

Full Changelog: ZVN-DEV/powdb@v0.20.0...v0.21.0

Changelog

Sourced from @​zvndev/powdb-embedded's changelog.

[0.21.0] - 2026-07-27

Fixed (correctness)

  • Unqualified columns in a join returned a row of NULLs. The 0.20.0 "silent wrong answers become errors" round did not reach join scope. Validation accepted a bare field name inside a join on the strength of a runtime suffix match that evaluation did not actually implement, so User join Order on User.id = Order.user_id { .name, .amount } returned NULL for every column while the qualified form returned the right answer. The runtime now performs the suffix match, and one resolver serves the projection, filter, join-key, and sort paths instead of three that disagreed. A bare name that two joined tables both expose is a typed ambiguity error telling you to qualify it, never a silent pick.
  • order on an unqualified join column claimed the column did not exist, one clause after the same query projected it successfully. The read-write and read-only sort paths now use the same resolver as everything else.
  • Window sum reported a false overflow on a partition whose emitted total fits in int64, because a transient running total was converted per row. sum(.v) over () over [5e18, 5e18, -5e18] now agrees with the scalar sum, which is what "which path fired cannot change the answer" requires.
  • Aggregates over non-numeric values silently answered 0. sum over a str, datetime, bool, uuid, bytes, or json column returned Int(0) and avg returned NULL. All aggregate paths now raise a typed error and agree with each other.
  • Integer aggregate overflow silently clamped to i64::MAX instead of reporting overflow.
  • Arithmetic on a non-numeric operand silently produced NULL. .ts + 1 on a datetime column and .id + "x" both evaluated to a missing value. Datetime arithmetic is deliberately an error rather than microsecond arithmetic: datetime + int has no single meaning and date_add / date_diff already spell both operations unambiguously. Widening an error into support later is backward compatible; the reverse is not.
  • date_add, date_diff, and abs used unchecked arithmetic, which panicked under overflow checks and wrapped to a bogus timestamp in release.

Security

  • DDL inside an explicit transaction destroyed data while reporting success. begin; drop T; rollback reported "transaction rolled back" and the table and its rows were permanently gone, across a full restart. DDL is now refused inside a transaction with a typed error, at every entry point including drop view, which previously left the view destroyed, its backing table orphaned, and the name permanently unusable. DDL is not transactional in PowDB; see docs/POWQL.md.
  • An unbounded per-transaction dirty page set could OOM the process. Under panic = "abort" that is a client-reachable denial of service. Unflushed pages are now charged against a budget (default 256 MiB, configurable via POWDB_DIRTY_PAGE_BUDGET) and an oversized transaction is refused with a typed error instead of growing until the host kills the server.

... (truncated)

Commits

Updates c8 from 11.0.0 to 12.0.0

Release notes

Sourced from c8's releases.

v12.0.0

12.0.0 (2026-07-14)

⚠ BREAKING CHANGES

  • yargs enforces a stricter range of Node versions ^20.19.0 || ^22.12.0 || >=23

Features

Changelog

Sourced from c8's changelog.

12.0.0 (2026-07-14)

⚠ BREAKING CHANGES

  • yargs enforces a stricter range of Node versions ^20.19.0 || ^22.12.0 || >=23

Features

Commits

Updates lint-staged from 17.0.8 to 17.2.0

Release notes

Sourced from lint-staged's releases.

v17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

    Where the spawned command is literally "tsc" without any extra arguments. Previously, this was still chunked when a lot of files were staged. Now, it probably won't be chunked because the length of the command is just three letters.

    Also, native JavaScript/Node.js function tasks won't be chunked at all, when previously they were run multiple times when chunked:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.js": {
        title: "Log staged JS files to console",
        task: async (files) => {
          console.log("Staged JS files:", files);
        },
      },
    };

v17.1.1

Patch Changes

  • #1820 a626a9f - It's now possible to set --max-arg-length=Infinity to effectively disable chunking of tasks based on the number of staged files. The parsing and validation of the numeric CLI options --max-arg-length and --concurrency has been improved.

v17.1.0

Minor Changes

  • #1816 7568d4f - The console output of lint-staged has been simplified so that there's less interactive spinners and more explicit messages like "Started…" -> "Done!". The primary purpose of this was to remove Listr2, a very large dependency.

    Before:

    Size of node_modules/ after installing: 1561.7 kB with 29 packages.

    Fancy interactive spinners, but output dynamically changes:

    ✔ Backed up original state in git stash (0b191303)
    ✔ Running tasks for staged files...
    ✔ Staging changes from tasks...
    ✔ Cleaning up temporary files...

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

    Where the spawned command is literally "tsc" without any extra arguments. Previously, this was still chunked when a lot of files were staged. Now, it probably won't be chunked because the length of the command is just three letters.

    Also, native JavaScript/Node.js function tasks won't be chunked at all, when previously they were run multiple times when chunked:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.js": {
        title: "Log staged JS files to console",
        task: async (files) => {
          console.log("Staged JS files:", files);
        },
      },
    };

17.1.1

Patch Changes

  • #1820 a626a9f - It's now possible to set --max-arg-length=Infinity to effectively disable chunking of tasks based on the number of staged files. The parsing and validation of the numeric CLI options --max-arg-length and --concurrency has been improved.

17.1.0

Minor Changes

  • #1816 7568d4f - The console output of lint-staged has been simplified so that there's less interactive spinners and more explicit messages like "Started…" -> "Done!". The primary purpose of this was to remove Listr2, a very large dependency.

    Before:

    Size of node_modules/ after installing: 1561.7 kB with 29 packages.

    Fancy interactive spinners, but output dynamically changes:

    ✔ Backed up original state in git stash (0b191303)
    ✔ Running tasks for staged files...

... (truncated)

Commits
  • fb540fb Merge pull request #1824 from lint-staged/changeset-release/main
  • dc0a738 chore(changeset): release
  • 60cbb88 Merge pull request #1823 from lint-staged/reimplement-chunk-files
  • 2354dc4 build(deps): update dependencies
  • 0516e7f docs: adjust debug logs
  • e22f6ed style: run oxfmt on README.md
  • 37e8e1a fix: restore chunking of git add command after running tasks
  • 2c75f1d chore: remove unused file
  • ee156cc feat: add improved lazy-chunking of command strings
  • baa7c98 feat: remove current chunkFiles implementation
  • Additional commits viewable in compare view

Updates mysql2 from 3.22.5 to 3.23.2

Release notes

Sourced from mysql2's releases.

v3.23.2

3.23.2 (2026-07-27)

Bug Fixes

  • correct connectAttributes typo in ChangeUser packet (#4423) (f64ce07), closes #2140
  • don't leave a failed execute as the active command (#4425) (fbd64b6)

v3.23.1

3.23.1 (2026-07-19)

Bug Fixes

  • security: fix unbounded decompression of server-supplied compressed packets, reported by alanturing881 (7c48343)
  • parser: call typeCast for NULL values in the binary protocol (#4394) (01f1092)

v3.23.0

3.23.0 (2026-07-13)

Features

  • return unsafe integers inside JSON columns as exact strings with supportBigNumbers (#4388) (a26ff14)
  • sql-escaper: add Temporal support when escaping values (#4392) (6b933f6)
  • support MariaDB data types (UUID, INET4, INET6, VECTOR, JSON) via extended type metadata; run CI against MariaDB (#4373) (5034e57)

v3.22.6

3.22.6 (2026-07-07)

Bug Fixes

  • sql-escaper: resolve multi statement and expand object regressions (#4380) (1b927a9)
Changelog

Sourced from mysql2's changelog.

3.23.2 (2026-07-27)

Bug Fixes

  • correct connectAttributes typo in ChangeUser packet (#4423) (f64ce07), closes #2140
  • don't leave a failed execute as the active command (#4425) (fbd64b6)

3.23.1 (2026-07-19)

Bug Fixes

  • security: fix unbounded decompression of server-supplied compressed packets, reported by alanturing881 (7c48343)
  • parser: call typeCast for NULL values in the binary protocol (#4394) (01f1092)

3.23.0 (2026-07-13)

Features

  • return unsafe integers inside JSON columns as exact strings with supportBigNumbers (#4388) (a26ff14)
  • sql-escaper: add Temporal support when escaping values (#4392) (6b933f6)
  • support MariaDB data types (UUID, INET4, INET6, VECTOR, JSON) via extended type metadata; run CI against MariaDB (#4373) (5034e57)

3.22.6 (2026-07-07)

Bug Fixes

  • sql-escaper: resolve multi statement and expand object regressions (#4380) (1b927a9)
Commits
  • a987302 chore(master): release 3.23.2 (#4424)
  • 6c0cbc6 build(deps): bump postcss from 8.5.15 to 8.5.23 in /website (#4437)
  • 2aec892 build(deps): bump lucide-react from 1.26.0 to 1.27.0 in /website (#4436)
  • 4f7a589 build(deps): bump sass from 1.101.7 to 1.102.0 in /website (#4435)
  • 992adc5 build(deps): bump lucide-react from 1.25.0 to 1.26.0 in /website (#4431)
  • 26c956b build(deps): bump sass from 1.101.6 to 1.101.7 in /website (#4432)
  • e6a1cf7 build(deps): bump sass from 1.101.3 to 1.101.6 in /website (#4427)
  • 3f240ce build(deps): bump fast-uri from 3.1.2 to 3.1.4 in /website (#4422)
  • 28ad315 build(deps): bump immutable from 5.1.5 to 5.1.9 in /website (#4421)
  • 67821f8 build(deps): bump svgo from 3.3.3 to 3.3.4 in /website (#4420)
  • Additional commits viewable in compare view

Updates size-limit from 12.1.0 to 13.0.2

Release notes

Sourced from size-limit's releases.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Changelog

Sourced from size-limit's changelog.

13.0.2

  • Fixed glob pattern regression.

13.0.1

  • Fixed publishing process.

13.0.0

  • Removed Node.js 20 support.
  • Removed tinyglobby and jiti dependencies.
  • Added npm provenance.
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for size-limit since your current version.


Updates tsx from 4.22.5 to 4.23.1

Release notes

Sourced from tsx's releases.

v4.23.1

4.23.1 (2026-07-13)

Bug Fixes

  • support tsImport after global preload (8d4ffc2)
  • watch: avoid clearing piped output (95d0672)
  • watch: treat script and dependency paths literally (79fddde)

Performance Improvements

  • index transform cache lazily (e818ad6)
  • load esbuild lazily in CLI (d067938)
  • map Node TypeScript formats directly (cdcc623)
  • use sync module hooks on Node v22.22.3+ (f8992f1)

This release is also available on:

v4.23.0

4.23.0 (2026-07-03)

Bug Fixes

Features


This release is also available on:

Commits
  • 79fddde fix(watch): treat script and dependency paths literally
  • e818ad6 perf: index transform cache lazily
  • cdcc623 perf: map Node TypeScript formats directly
  • d067938 perf: load esbuild lazily in CLI
  • 95d0672 fix(watch): avoid clearing piped output
  • 6fd4607 docs: add per-page metadata
  • f4176d8 docs: generate sitemap
  • 8d4ffc2 fix: support tsImport after global preload
  • f0e89b2 docs: document Node's public type-stripping API vs internal loader path
  • f8992f1 perf: use sync module hooks on Node v22.22.3+
  • Additional commits viewable in compare view

Updates typescript from 6.0.3 to 7.0.2

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 27, 2026
@vercel

vercel Bot commented Jul 27, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
turbine-docs Ready Ready Preview Jul 29, 2026 8:46pm

Request Review

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from e325caf to 486ecc1 Compare July 28, 2026 01:48
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 486ecc1 to e48cc22 Compare July 28, 2026 03:05
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from e48cc22 to 8edf78a Compare July 28, 2026 03:46
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 8edf78a to d5e276d Compare July 28, 2026 04:24
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from d5e276d to 2b6d389 Compare July 28, 2026 05:02
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 2b6d389 to e49844a Compare July 28, 2026 05:34
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from e49844a to fa7dc9a Compare July 28, 2026 12:48
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from fa7dc9a to 8376c0b Compare July 28, 2026 13:33
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 8376c0b to f238c28 Compare July 28, 2026 16:05
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from f238c28 to 9b0737f Compare July 28, 2026 16:28
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 9b0737f to f3ebe99 Compare July 29, 2026 03:15
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from f3ebe99 to faa1fff Compare July 29, 2026 17:37
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from faa1fff to 004b290 Compare July 29, 2026 19:10
…ith 12 updates

Bumps the dev-dependencies group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.2` | `2.5.6` |
| [@size-limit/esbuild](https://github.com/ai/size-limit) | `12.1.0` | `13.0.2` |
| [@size-limit/file](https://github.com/ai/size-limit) | `12.1.0` | `13.0.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.0` | `26.1.2` |
| [@zvndev/powdb-client](https://github.com/ZVN-DEV/powdb/tree/HEAD/clients/ts) | `0.20.0` | `0.21.0` |
| [@zvndev/powdb-embedded](https://github.com/ZVN-DEV/powdb/tree/HEAD/bindings/node) | `0.20.0` | `0.21.0` |
| [c8](https://github.com/bcoe/c8) | `11.0.0` | `12.0.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.8` | `17.2.0` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.22.5` | `3.23.2` |
| [size-limit](https://github.com/ai/size-limit) | `12.1.0` | `13.0.2` |
| [tsx](https://github.com/privatenumber/tsx) | `4.22.5` | `4.23.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |



Updates `@biomejs/biome` from 2.5.2 to 2.5.6
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.6/packages/@biomejs/biome)

Updates `@size-limit/esbuild` from 12.1.0 to 13.0.2
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@12.1.0...13.0.2)

Updates `@size-limit/file` from 12.1.0 to 13.0.2
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@12.1.0...13.0.2)

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

Updates `@zvndev/powdb-client` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/ZVN-DEV/powdb/releases)
- [Changelog](https://github.com/ZVN-DEV/powdb/blob/main/clients/ts/CHANGELOG.md)
- [Commits](https://github.com/ZVN-DEV/powdb/commits/v0.21.0/clients/ts)

Updates `@zvndev/powdb-embedded` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/ZVN-DEV/powdb/releases)
- [Changelog](https://github.com/ZVN-DEV/powdb/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ZVN-DEV/powdb/commits/v0.21.0/bindings/node)

Updates `c8` from 11.0.0 to 12.0.0
- [Release notes](https://github.com/bcoe/c8/releases)
- [Changelog](https://github.com/bcoe/c8/blob/main/CHANGELOG.md)
- [Commits](bcoe/c8@v11.0.0...v12.0.0)

Updates `lint-staged` from 17.0.8 to 17.2.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.0.8...v17.2.0)

Updates `mysql2` from 3.22.5 to 3.23.2
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.22.5...v3.23.2)

Updates `size-limit` from 12.1.0 to 13.0.2
- [Release notes](https://github.com/ai/size-limit/releases)
- [Changelog](https://github.com/ai/size-limit/blob/main/CHANGELOG.md)
- [Commits](ai/size-limit@12.1.0...13.0.2)

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

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

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@size-limit/esbuild"
  dependency-version: 13.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@size-limit/file"
  dependency-version: 13.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@zvndev/powdb-client"
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@zvndev/powdb-embedded"
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: c8
  dependency-version: 12.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: lint-staged
  dependency-version: 17.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: mysql2
  dependency-version: 3.23.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: size-limit
  dependency-version: 13.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: tsx
  dependency-version: 4.23.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-e1aabed2d2 branch from 004b290 to 1fbccbc Compare July 29, 2026 20:45
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