Skip to content

chore(deps)(deps): bump the all-npm group across 1 directory with 66 updates - #48

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-npm-9a19fc10a4
Open

chore(deps)(deps): bump the all-npm group across 1 directory with 66 updates#48
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/all-npm-9a19fc10a4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-npm group with 66 updates in the / directory:

Package From To
@biomejs/biome 2.4.14 2.5.7
@changesets/changelog-github 0.6.0 0.7.0
@changesets/cli 2.31.0 2.31.1
@commitlint/cli 19.8.1 21.2.1
@commitlint/config-conventional 19.8.1 21.2.0
lint-staged 15.5.2 17.3.0
typescript 5.9.3 7.0.2
@clack/prompts 0.10.1 1.7.0
execa 9.6.1 10.0.1
fs-extra 11.3.4 11.4.0
giget 3.2.0 3.3.1
jiti 2.6.1 2.7.0
zod 3.25.76 4.4.3
@types/node 20.19.39 26.1.2
adm-zip 0.5.17 0.6.0
react 19.2.5 19.2.8
@types/react 19.2.14 19.2.18
vue 3.5.33 3.5.41
axios 1.16.0 1.19.0
ua-parser-js 2.0.9 2.0.10
msw 2.14.2 2.15.0
vite 5.4.21 8.2.1
rspress 1.47.1 1.47.2
turbo 2.9.9 2.10.8
pinia 2.3.1 4.0.2
tdesign-mobile-vue 1.13.2 1.16.1
vue-router 4.6.4 5.2.0
@playwright/test 1.59.1 1.62.1
@vitejs/plugin-vue 5.2.4 6.0.8
@vitest/ui 2.1.9 4.1.10
@vue/test-utils 2.4.10 2.4.11
jsdom 25.0.1 30.0.1
unplugin-auto-import 0.19.0 21.1.0
unplugin-vue-components 0.28.0 32.1.0
vitest 2.1.9 4.1.10
vue-tsc 2.2.12 3.3.9
less 4.6.4 4.8.1
unocss 0.65.4 66.7.5
@unocss/preset-uno 0.65.4 66.7.5
@unocss/preset-attributify 0.65.4 66.7.5
@unocss/preset-icons 0.65.4 66.7.5
rollup 4.60.2 4.62.4
@rollup/plugin-commonjs 28.0.9 29.0.3
rollup-plugin-dts 6.4.1 6.5.1
@rslib/core 0.5.5 0.23.2
pino 9.14.0 10.3.1
tsx 4.21.0 4.23.9
react-dom 19.2.5 19.2.8
@types/react-dom 19.2.3 19.2.4
@vitejs/plugin-react 4.7.0 6.0.5
antd 5.29.3 6.5.3
react-router-dom 6.30.3 7.18.2
zustand 5.0.12 5.0.14
@testing-library/jest-dom 6.9.1 7.0.0
eslint 10.3.0 10.8.0
prettier 3.8.3 3.9.6
typescript-eslint 8.59.1 8.66.0
@vue/eslint-config-typescript 14.7.0 14.9.0
eslint-plugin-vue 10.9.0 10.10.0
express 4.22.1 5.2.1
@types/express 4.17.25 5.0.6
helmet 8.1.0 8.3.0
ioredis 5.10.1 6.0.0
pg 8.20.0 8.22.0
@types/pg 8.20.0 8.20.4
pino-http 10.5.0 11.0.0

Updates @biomejs/biome from 2.4.14 to 2.5.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.7

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

    type Mapper<T> = () => T;
    declare function map<T>(mapper: Mapper<T>): T;

... (truncated)

Commits

Updates @changesets/changelog-github from 0.6.0 to 0.7.0

Release notes

Sourced from @​changesets/changelog-github's releases.

@​changesets/changelog-github@​0.7.0

Minor Changes

Commits

Updates @changesets/cli from 2.31.0 to 2.31.1

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.31.1

Patch Changes

  • #2159 15cf592 Thanks @​ingvaldlorentzen! - Fixed already-published version detection with npm 12, which always wraps successful npm info --json output in an array. The unwrapped output made changeset publish treat every package as unpublished and fail attempting to republish existing versions.
Commits
  • a897bb8 Use a different publish tag for maintenance/v2 branch (#2162)
  • e8650b9 Version Packages (#2161)
  • 15cf592 Fixed handling of the npm 12 info output (#2159)
  • 9f2cb2a Configure Changesets for maintenance/v2 line (#2076)
  • 97247cb Change allowed publish pattern to maintenance/v* given rulesets behavior (#...
  • 13286a8 Build(deps): Bump the github-actions group across 1 directory with 3 updates ...
  • 8f6acd6 Update dependabot group to exclude major (#2067)
  • c70c675 Setup backport workflow and sync next setup (#2057)
  • 9672019 Remove SECURITY.md to defer to .github (#2055)
  • 18e1661 Use internal bot for versioning (#2039)
  • Additional commits viewable in compare view

Updates @commitlint/cli from 19.8.1 to 21.2.1

Release notes

Sourced from @​commitlint/cli's releases.

v21.2.1

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

Chore, doc, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.2.0...v21.2.1

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

21.2.1 (2026-07-08)

Note: Version bump only for package @​commitlint/cli

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026-06-23)

Features

  • cli: add --default-config flag to lint without a config file (#4805) (7af27ba), closes #3662

21.0.2 (2026-05-29)

Bug Fixes

  • disallow same commit hash for --from and --to (#4773) (121005e)

21.0.1 (2026-05-12)

Note: Version bump only for package @​commitlint/cli

21.0.0 (2026-05-08)

... (truncated)

Commits

Updates @commitlint/config-conventional from 19.8.1 to 21.2.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v21.2.0

21.2.0 (2026-06-30)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026-06-23)

Bug Fixes

Features

Docs, chore, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.2...v21.1.0

v21.0.2

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

21.2.0 (2026-06-30)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026-06-23)

Note: Version bump only for package @​commitlint/config-conventional

21.0.2 (2026-05-29)

Note: Version bump only for package @​commitlint/config-conventional

21.0.1 (2026-05-12)

Note: Version bump only for package @​commitlint/config-conventional

21.0.0 (2026-05-08)

BREAKING CHANGES

  • drop node v18 and v20 support
  • Bump engines to >=v22 in all 39 package.json files
  • Update @​types/node to ^22.0.0
  • Update CI matrix to [22, 24]
  • Update Ubuntu baseline job to ubuntu:26.04
  • Update Dockerfile.ci, .mise.toml, .codesandbox/ci.json

... (truncated)

Commits

Updates lint-staged from 15.5.2 to 17.3.0

Release notes

Sourced from lint-staged's releases.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.

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

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.

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

... (truncated)

Commits
  • d153443 Merge pull request #1828 from lint-staged/changeset-release/main
  • 5162c14 chore(changeset): release
  • a4db9a4 Merge pull request #1831 from lint-staged/linter-updates
  • ea96cab style: enable oxlint "suspicious" category
  • 2fae007 style: add @e18e/eslint-plugin
  • 2280c38 Merge pull request #1829 from lint-staged/fix-merge-conflict-files
  • 1453ae6 test: relax assertion so that it passes in worktree
  • 15f7e53 fix: lint only files changed against HEAD and MERGE_HEAD, during a merge
  • dedfc31 Merge pull request #1825 from lint-staged/parallel-tasks-inside-sequence
  • 286e25c feat: allow running parallel tasks by nesting arrays
  • Additional commits viewable in compare view
Maintainer changes

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


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 6.0

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

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
Maintainer changes

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


Updates @clack/prompts from 0.10.1 to 1.7.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.7.0

Minor Changes

  • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

Patch Changes

@​clack/prompts@​1.6.0

Minor Changes

  • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@clack/prompts';
    +import { styleText } from 'node:util';
    note(
    'You can edit the file src/index.jsx',
    'Next steps.'
    
    { format: (text) => styleText('dim', text) }
    );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    @​clack/prompts@​1.5.1

    Patch Changes

    @​clack/prompts@​1.5.0

    Minor Changes

    ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    1.7.0

    Minor Changes

    • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

    Patch Changes

    1.6.0

    Minor Changes

    • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

      If you want the old behavior, provide a format() function:

      import { note } from '@clack/prompts';
      +import { styleText } from 'node:util';
      note(
      'You can edit the file src/index.jsx',
      'Next steps.'
      
      { format: (text) => styleText('dim', text) }
      );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    1.5.1

    Patch Changes

    ... (truncated)

    Commits

    …updates
    
    Bumps the all-npm group with 66 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.14` | `2.5.7` |
    | [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.6.0` | `0.7.0` |
    | [@changesets/cli](https://github.com/changesets/changesets) | `2.31.0` | `2.31.1` |
    | [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.8.1` | `21.2.1` |
    | [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.8.1` | `21.2.0` |
    | [lint-staged](https://github.com/lint-staged/lint-staged) | `15.5.2` | `17.3.0` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.10.1` | `1.7.0` |
    | [execa](https://github.com/sindresorhus/execa) | `9.6.1` | `10.0.1` |
    | [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.4` | `11.4.0` |
    | [giget](https://github.com/unjs/giget) | `3.2.0` | `3.3.1` |
    | [jiti](https://github.com/unjs/jiti) | `2.6.1` | `2.7.0` |
    | [zod](https://github.com/colinhacks/zod) | `3.25.76` | `4.4.3` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.39` | `26.1.2` |
    | [adm-zip](https://github.com/cthackers/adm-zip) | `0.5.17` | `0.6.0` |
    | [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.8` |
    | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.18` |
    | [vue](https://github.com/vuejs/core) | `3.5.33` | `3.5.41` |
    | [axios](https://github.com/axios/axios) | `1.16.0` | `1.19.0` |
    | [ua-parser-js](https://github.com/faisalman/ua-parser-js) | `2.0.9` | `2.0.10` |
    | [msw](https://github.com/mswjs/msw) | `2.14.2` | `2.15.0` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.21` | `8.2.1` |
    | [rspress](https://github.com/web-infra-dev/rspress/tree/HEAD/packages/cli) | `1.47.1` | `1.47.2` |
    | [turbo](https://github.com/vercel/turborepo) | `2.9.9` | `2.10.8` |
    | [pinia](https://github.com/vuejs/pinia) | `2.3.1` | `4.0.2` |
    | [tdesign-mobile-vue](https://github.com/Tencent/tdesign-mobile-vue) | `1.13.2` | `1.16.1` |
    | [vue-router](https://github.com/vuejs/router) | `4.6.4` | `5.2.0` |
    | [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.62.1` |
    | [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/HEAD/packages/plugin-vue) | `5.2.4` | `6.0.8` |
    | [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `2.1.9` | `4.1.10` |
    | [@vue/test-utils](https://github.com/vuejs/test-utils) | `2.4.10` | `2.4.11` |
    | [jsdom](https://github.com/jsdom/jsdom) | `25.0.1` | `30.0.1` |
    | [unplugin-auto-import](https://github.com/unplugin/unplugin-auto-import) | `0.19.0` | `21.1.0` |
    | [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) | `0.28.0` | `32.1.0` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `4.1.10` |
    | [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.2.12` | `3.3.9` |
    | [less](https://github.com/less/less.js) | `4.6.4` | `4.8.1` |
    | [unocss](https://github.com/unocss/unocss/tree/HEAD/packages-presets/unocss) | `0.65.4` | `66.7.5` |
    | [@unocss/preset-uno](https://github.com/unocss/unocss/tree/HEAD/packages-deprecated/preset-uno) | `0.65.4` | `66.7.5` |
    | [@unocss/preset-attributify](https://github.com/unocss/unocss/tree/HEAD/packages-presets/preset-attributify) | `0.65.4` | `66.7.5` |
    | [@unocss/preset-icons](https://github.com/unocss/unocss/tree/HEAD/packages-presets/preset-icons) | `0.65.4` | `66.7.5` |
    | [rollup](https://github.com/rollup/rollup) | `4.60.2` | `4.62.4` |
    | [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `28.0.9` | `29.0.3` |
    | [rollup-plugin-dts](https://github.com/Swatinem/rollup-plugin-dts) | `6.4.1` | `6.5.1` |
    | [@rslib/core](https://github.com/web-infra-dev/rslib/tree/HEAD/packages/core) | `0.5.5` | `0.23.2` |
    | [pino](https://github.com/pinojs/pino) | `9.14.0` | `10.3.1` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.23.9` |
    | [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.5` | `19.2.8` |
    | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.4` |
    | [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.7.0` | `6.0.5` |
    | [antd](https://github.com/ant-design/ant-design) | `5.29.3` | `6.5.3` |
    | [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.30.3` | `7.18.2` |
    | [zustand](https://github.com/pmndrs/zustand) | `5.0.12` | `5.0.14` |
    | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.9.1` | `7.0.0` |
    | [eslint](https://github.com/eslint/eslint) | `10.3.0` | `10.8.0` |
    | [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.6` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.1` | `8.66.0` |
    | [@vue/eslint-config-typescript](https://github.com/vuejs/eslint-config-typescript) | `14.7.0` | `14.9.0` |
    | [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) | `10.9.0` | `10.10.0` |
    | [express](https://github.com/expressjs/express) | `4.22.1` | `5.2.1` |
    | [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.25` | `5.0.6` |
    | [helmet](https://github.com/helmetjs/helmet) | `8.1.0` | `8.3.0` |
    | [ioredis](https://github.com/redis/ioredis) | `5.10.1` | `6.0.0` |
    | [pg](https://github.com/brianc/node-postgres/tree/HEAD/packages/pg) | `8.20.0` | `8.22.0` |
    | [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.20.0` | `8.20.4` |
    | [pino-http](https://github.com/pinojs/pino-http) | `10.5.0` | `11.0.0` |
    
    
    
    Updates `@biomejs/biome` from 2.4.14 to 2.5.7
    - [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.7/packages/@biomejs/biome)
    
    Updates `@changesets/changelog-github` from 0.6.0 to 0.7.0
    - [Release notes](https://github.com/changesets/changesets/releases)
    - [Commits](https://github.com/changesets/changesets/compare/@changesets/changelog-github@0.6.0...@changesets/changelog-github@0.7.0)
    
    Updates `@changesets/cli` from 2.31.0 to 2.31.1
    - [Release notes](https://github.com/changesets/changesets/releases)
    - [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.31.0...@changesets/cli@2.31.1)
    
    Updates `@commitlint/cli` from 19.8.1 to 21.2.1
    - [Release notes](https://github.com/conventional-changelog/commitlint/releases)
    - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
    - [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.1/@commitlint/cli)
    
    Updates `@commitlint/config-conventional` from 19.8.1 to 21.2.0
    - [Release notes](https://github.com/conventional-changelog/commitlint/releases)
    - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
    - [Commits](https://github.com/conventional-changelog/commitlint/commits/v21.2.0/@commitlint/config-conventional)
    
    Updates `lint-staged` from 15.5.2 to 17.3.0
    - [Release notes](https://github.com/lint-staged/lint-staged/releases)
    - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
    - [Commits](lint-staged/lint-staged@v15.5.2...v17.3.0)
    
    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 `@clack/prompts` from 0.10.1 to 1.7.0
    - [Release notes](https://github.com/bombshell-dev/clack/releases)
    - [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
    - [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.7.0/packages/prompts)
    
    Updates `execa` from 9.6.1 to 10.0.1
    - [Release notes](https://github.com/sindresorhus/execa/releases)
    - [Commits](sindresorhus/execa@v9.6.1...v10.0.1)
    
    Updates `fs-extra` from 11.3.4 to 11.4.0
    - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
    - [Commits](jprichardson/node-fs-extra@11.3.4...11.4.0)
    
    Updates `giget` from 3.2.0 to 3.3.1
    - [Release notes](https://github.com/unjs/giget/releases)
    - [Changelog](https://github.com/unjs/giget/blob/main/CHANGELOG.md)
    - [Commits](unjs/giget@v3.2.0...v3.3.1)
    
    Updates `jiti` from 2.6.1 to 2.7.0
    - [Release notes](https://github.com/unjs/jiti/releases)
    - [Changelog](https://github.com/unjs/jiti/blob/main/CHANGELOG.md)
    - [Commits](unjs/jiti@v2.6.1...v2.7.0)
    
    Updates `zod` from 3.25.76 to 4.4.3
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Commits](colinhacks/zod@v3.25.76...v4.4.3)
    
    Updates `@types/node` from 20.19.39 to 26.1.2
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `adm-zip` from 0.5.17 to 0.6.0
    - [Release notes](https://github.com/cthackers/adm-zip/releases)
    - [Changelog](https://github.com/cthackers/adm-zip/blob/master/history.md)
    - [Commits](cthackers/adm-zip@v0.5.17...v0.6.0)
    
    Updates `react` from 19.2.5 to 19.2.8
    - [Release notes](https://github.com/react/react/releases)
    - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)
    
    Updates `@types/react` from 19.2.14 to 19.2.18
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)
    
    Updates `vue` from 3.5.33 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.33...v3.5.41)
    
    Updates `axios` from 1.16.0 to 1.19.0
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
    - [Commits](axios/axios@v1.16.0...v1.19.0)
    
    Updates `ua-parser-js` from 2.0.9 to 2.0.10
    - [Release notes](https://github.com/faisalman/ua-parser-js/releases)
    - [Changelog](https://github.com/faisalman/ua-parser-js/blob/master/CHANGELOG.md)
    - [Commits](faisalman/ua-parser-js@2.0.9...2.0.10)
    
    Updates `msw` from 2.14.2 to 2.15.0
    - [Release notes](https://github.com/mswjs/msw/releases)
    - [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
    - [Commits](mswjs/msw@v2.14.2...v2.15.0)
    
    Updates `vite` from 5.4.21 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 `rspress` from 1.47.1 to 1.47.2
    - [Release notes](https://github.com/web-infra-dev/rspress/releases)
    - [Commits](https://github.com/web-infra-dev/rspress/commits/v1.47.2/packages/cli)
    
    Updates `turbo` from 2.9.9 to 2.10.8
    - [Release notes](https://github.com/vercel/turborepo/releases)
    - [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
    - [Commits](vercel/turborepo@v2.9.9...v2.10.8)
    
    Updates `pinia` from 2.3.1 to 4.0.2
    - [Release notes](https://github.com/vuejs/pinia/releases)
    - [Commits](vuejs/pinia@v2.3.1...v4.0.2)
    
    Updates `tdesign-mobile-vue` from 1.13.2 to 1.16.1
    - [Release notes](https://github.com/Tencent/tdesign-mobile-vue/releases)
    - [Changelog](https://github.com/Tencent/tdesign-mobile-vue/blob/develop/CHANGELOG.md)
    - [Commits](Tencent/tdesign-mobile-vue@1.13.2...1.16.1)
    
    Updates `vue-router` from 4.6.4 to 5.2.0
    - [Release notes](https://github.com/vuejs/router/releases)
    - [Commits](vuejs/router@v4.6.4...v5.2.0)
    
    Updates `@playwright/test` from 1.59.1 to 1.62.1
    - [Release notes](https://github.com/microsoft/playwright/releases)
    - [Commits](microsoft/playwright@v1.59.1...v1.62.1)
    
    Updates `@vitejs/plugin-vue` from 5.2.4 to 6.0.8
    - [Release notes](https://github.com/vitejs/vite-plugin-vue/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-vue/commits/plugin-vue@6.0.8/packages/plugin-vue)
    
    Updates `@vitest/ui` from 2.1.9 to 4.1.10
    - [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.10/packages/ui)
    
    Updates `@vue/test-utils` from 2.4.10 to 2.4.11
    - [Release notes](https://github.com/vuejs/test-utils/releases)
    - [Commits](vuejs/test-utils@v2.4.10...v2.4.11)
    
    Updates `jsdom` from 25.0.1 to 30.0.1
    - [Release notes](https://github.com/jsdom/jsdom/releases)
    - [Commits](jsdom/jsdom@v25.0.1...v30.0.1)
    
    Updates `unplugin-auto-import` from 0.19.0 to 21.1.0
    - [Release notes](https://github.com/unplugin/unplugin-auto-import/releases)
    - [Commits](unplugin/unplugin-auto-import@v0.19.0...v21.1.0)
    
    Updates `unplugin-vue-components` from 0.28.0 to 32.1.0
    - [Release notes](https://github.com/unplugin/unplugin-vue-components/releases)
    - [Commits](unplugin/unplugin-vue-components@v0.28.0...v32.1.0)
    
    Updates `vitest` from 2.1.9 to 4.1.10
    - [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.10/packages/vitest)
    
    Updates `vue-tsc` from 2.2.12 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 `less` from 4.6.4 to 4.8.1
    - [Release notes](https://github.com/less/less.js/releases)
    - [Changelog](https://github.com/less/less.js/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/less/less.js/commits/v4.8.1)
    
    Updates `unocss` from 0.65.4 to 66.7.5
    - [Release notes](https://github.com/unocss/unocss/releases)
    - [Commits](https://github.com/unocss/unocss/commits/v66.7.5/packages-presets/unocss)
    
    Updates `@unocss/preset-uno` from 0.65.4 to 66.7.5
    - [Release notes](https://github.com/unocss/unocss/releases)
    - [Commits](https://github.com/unocss/unocss/commits/v66.7.5/packages-deprecated/preset-uno)
    
    Updates `@unocss/preset-attributify` from 0.65.4 to 66.7.5
    - [Release notes](https://github.com/unocss/unocss/releases)
    - [Commits](https://github.com/unocss/unocss/commits/v66.7.5/packages-presets/preset-attributify)
    
    Updates `@unocss/preset-icons` from 0.65.4 to 66.7.5
    - [Release notes](https://github.com/unocss/unocss/releases)
    - [Commits](https://github.com/unocss/unocss/commits/v66.7.5/packages-presets/preset-icons)
    
    Updates `rollup` from 4.60.2 to 4.62.4
    - [Release notes](https://github.com/rollup/rollup/releases)
    - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
    - [Commits](rollup/rollup@v4.60.2...v4.62.4)
    
    Updates `@rollup/plugin-commonjs` from 28.0.9 to 29.0.3
    - [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
    - [Commits](https://github.com/rollup/plugins/commits/commonjs-v29.0.3/packages/commonjs)
    
    Updates `rollup-plugin-dts` from 6.4.1 to 6.5.1
    - [Changelog](https://github.com/Swatinem/rollup-plugin-dts/blob/master/CHANGELOG.md)
    - [Commits](Swatinem/rollup-plugin-dts@v6.4.1...v6.5.1)
    
    Updates `@rslib/core` from 0.5.5 to 0.23.2
    - [Release notes](https://github.com/web-infra-dev/rslib/releases)
    - [Commits](https://github.com/web-infra-dev/rslib/commits/v0.23.2/packages/core)
    
    Updates `pino` from 9.14.0 to 10.3.1
    - [Release notes](https://github.com/pinojs/pino/releases)
    - [Commits](pinojs/pino@v9.14.0...v10.3.1)
    
    Updates `tsx` from 4.21.0 to 4.23.9
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.21.0...v4.23.9)
    
    Updates `react-dom` from 19.2.5 to 19.2.8
    - [Release notes](https://github.com/react/react/releases)
    - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)
    
    Updates `@types/react-dom` from 19.2.3 to 19.2.4
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `@types/react-dom` from 19.2.3 to 19.2.4
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)
    
    Updates `@vitejs/plugin-react` from 4.7.0 to 6.0.5
    - [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
    - [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.5/packages/plugin-react)
    
    Updates `antd` from 5.29.3 to 6.5.3
    - [Release notes](https://github.com/ant-design/ant-design/releases)
    - [Changelog](https://github.com/ant-design/ant-design/blob/master/CHANGELOG.en-US.md)
    - [Commits](ant-design/ant-design@5.29.3...6.5.3)
    
    Updates `react-router-dom` from 6.30.3 to 7.18.2
    - [Release notes](https://github.com/remix-run/react-router/releases)
    - [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
    - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)
    
    Updates `zustand` from 5.0.12 to 5.0.14
    - [Release notes](https://github.com/pmndrs/zustand/releases)
    - [Commits](pmndrs/zustand@v5.0.12...v5.0.14)
    
    Updates `@testing-library/jest-dom` from 6.9.1 to 7.0.0
    - [Release notes](https://github.com/testing-library/jest-dom/releases)
    - [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
    - [Commits](testing-library/jest-dom@v6.9.1...v7.0.0)
    
    Updates `eslint` from 10.3.0 to 10.8.0
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v10.3.0...v10.8.0)
    
    Updates `prettier` from 3.8.3 to 3.9.6
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.8.3...3.9.6)
    
    Updates `typescript-eslint` from 8.59.1 to 8.66.0
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.66.0/packages/typescript-eslint)
    
    Updates `@vue/eslint-config-typescript` from 14.7.0 to 14.9.0
    - [Release notes](https://github.com/vuejs/eslint-config-typescript/releases)
    - [Commits](vuejs/eslint-config-typescript@v14.7.0...v14.9.0)
    
    Updates `eslint-plugin-vue` from 10.9.0 to 10.10.0
    - [Release notes](https://github.com/vuejs/eslint-plugin-vue/releases)
    - [Changelog](https://github.com/vuejs/eslint-plugin-vue/blob/master/CHANGELOG.md)
    - [Commits](vuejs/eslint-plugin-vue@v10.9.0...v10.10.0)
    
    Updates `express` from 4.22.1 to 5.2.1
    - [Release notes](https://github.com/expressjs/express/releases)
    - [Changelog](https://github.com/expressjs/express/blob/master/History.md)
    - [Commits](expressjs/express@v4.22.1...v5.2.1)
    
    Updates `@types/express` from 4.17.25 to 5.0.6
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)
    
    Updates `helmet` from 8.1.0 to 8.3.0
    - [Changelog](https://github.com/helmetjs/helmet/blob/main/CHANGELOG.md)
    - [Commits](helmetjs/helmet@v8.1.0...v8.3.0)
    
    Updates `ioredis` from 5.10.1 to 6.0.0
    - [Release notes](https://github.com/redis/ioredis/releases)
    - [Changelog](https://github.com/redis/ioredis/blob/main/CHANGELOG.md)
    - [Commits](redis/ioredis@v5.10.1...v6.0.0)
    
    Updates `pg` from 8.20.0 to 8.22.0
    - [Changelog](https://github.com/brianc/node-postgres/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/brianc/node-postgres/commits/pg@8.22.0/packages/pg)
    
    Updates `@types/pg` from 8.20.0 to 8.20.4
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)
    
    Updates `pino-http` from 10.5.0 to 11.0.0
    - [Release notes](https://github.com/pinojs/pino-http/releases)
    - [Commits](pinojs/pino-http@v10.5.0...v11.0.0)
    
    Updates `@types/express` from 4.17.25 to 5.0.6
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)
    
    Updates `@types/pg` from 8.20.0 to 8.20.4
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)
    
    ---
    updated-dependencies:
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.5.7
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@changesets/changelog-github"
      dependency-version: 0.7.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@changesets/cli"
      dependency-version: 2.31.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@commitlint/cli"
      dependency-version: 21.2.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@commitlint/config-conventional"
      dependency-version: 21.2.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: lint-staged
      dependency-version: 17.3.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: typescript
      dependency-version: 7.0.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@clack/prompts"
      dependency-version: 1.7.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: execa
      dependency-version: 10.0.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: fs-extra
      dependency-version: 11.4.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: giget
      dependency-version: 3.3.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: jiti
      dependency-version: 2.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: zod
      dependency-version: 4.4.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@types/node"
      dependency-version: 26.1.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: adm-zip
      dependency-version: 0.6.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: react
      dependency-version: 19.2.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@types/react"
      dependency-version: 19.2.18
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: vue
      dependency-version: 3.5.41
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: axios
      dependency-version: 1.19.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: ua-parser-js
      dependency-version: 2.0.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: msw
      dependency-version: 2.15.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: vite
      dependency-version: 8.2.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: rspress
      dependency-version: 1.47.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: turbo
      dependency-version: 2.10.8
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: pinia
      dependency-version: 4.0.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: tdesign-mobile-vue
      dependency-version: 1.16.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: vue-router
      dependency-version: 5.2.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@playwright/test"
      dependency-version: 1.62.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@vitejs/plugin-vue"
      dependency-version: 6.0.8
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@vitest/ui"
      dependency-version: 4.1.10
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@vue/test-utils"
      dependency-version: 2.4.11
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: jsdom
      dependency-version: 30.0.1
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: unplugin-auto-import
      dependency-version: 21.1.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: unplugin-vue-components
      dependency-version: 32.1.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: vitest
      dependency-version: 4.1.10
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: vue-tsc
      dependency-version: 3.3.9
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: less
      dependency-version: 4.8.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: unocss
      dependency-version: 66.7.5
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@unocss/preset-uno"
      dependency-version: 66.7.5
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@unocss/preset-attributify"
      dependency-version: 66.7.5
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@unocss/preset-icons"
      dependency-version: 66.7.5
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: rollup
      dependency-version: 4.62.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@rollup/plugin-commonjs"
      dependency-version: 29.0.3
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: rollup-plugin-dts
      dependency-version: 6.5.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@rslib/core"
      dependency-version: 0.23.2
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: pino
      dependency-version: 10.3.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: tsx
      dependency-version: 4.23.9
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: react-dom
      dependency-version: 19.2.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@types/react-dom"
      dependency-version: 19.2.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@types/react-dom"
      dependency-version: 19.2.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@vitejs/plugin-react"
      dependency-version: 6.0.5
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: antd
      dependency-version: 6.5.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: react-router-dom
      dependency-version: 7.18.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: zustand
      dependency-version: 5.0.14
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: "@testing-library/jest-dom"
      dependency-version: 7.0.0
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: eslint
      dependency-version: 10.8.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: prettier
      dependency-version: 3.9.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: typescript-eslint
      dependency-version: 8.66.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@vue/eslint-config-typescript"
      dependency-version: 14.9.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: eslint-plugin-vue
      dependency-version: 10.10.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: express
      dependency-version: 5.2.1
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@types/express"
      dependency-version: 5.0.6
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: helmet
      dependency-version: 8.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: ioredis
      dependency-version: 6.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: pg
      dependency-version: 8.22.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: all-npm
    - dependency-name: "@types/pg"
      dependency-version: 8.20.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    - dependency-name: pino-http
      dependency-version: 11.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@types/express"
      dependency-version: 5.0.6
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: all-npm
    - dependency-name: "@types/pg"
      dependency-version: 8.20.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: all-npm
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot @github

    dependabot Bot commented on behalf of github Aug 10, 2026

    Copy link
    Copy Markdown
    Contributor Author

    Labels

    The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

    Please fix the above issues or remove invalid values from dependabot.yml.

    @dependabot
    dependabot Bot requested a review from juwenzhang as a code owner August 10, 2026 01:33
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    None yet

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants