Skip to content

deps(web): bump the web-minor-patch group across 1 directory with 29 updates#154

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web-minor-patch-071394fd33
Open

deps(web): bump the web-minor-patch group across 1 directory with 29 updates#154
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/web-minor-patch-071394fd33

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the web-minor-patch group with 29 updates in the / directory:

Package From To
@playwright/test 1.61.0 1.61.1
lint-staged 17.0.7 17.0.8
prettier 3.8.4 3.9.4
react-doctor 0.5.6 0.6.2
turbo 2.9.18 2.10.2
@base-ui/react 1.5.0 1.6.0
@tanstack/react-query 5.101.0 5.101.2
@tanstack/react-query-devtools 5.101.0 5.101.2
@tanstack/react-router 1.170.15 1.170.17
lucide-react 1.18.0 1.23.0
shadcn 4.11.0 4.12.0
@tailwindcss/vite 4.3.1 4.3.2
@tanstack/router-plugin 1.168.18 1.168.19
tailwindcss 4.3.1 4.3.2
tsx 4.22.4 4.22.5
typescript-eslint 8.61.1 8.62.1
vite 8.0.16 8.1.3
@tanstack/query-sync-storage-persister 5.101.0 5.101.2
@tanstack/react-query-persist-client 5.101.0 5.101.2
@tanstack/react-virtual 3.14.3 3.14.5
motion 12.40.0 12.42.2
nanoid 5.1.11 5.1.16
next 16.2.9 16.2.10
next-intl 4.13.0 4.13.1
recharts 3.8.1 3.9.1
shiki 4.2.0 4.3.0
@tailwindcss/postcss 4.3.1 4.3.2
@vitejs/plugin-react 6.0.2 6.0.3
eslint-config-next 16.2.9 16.2.10

Updates @playwright/test from 1.61.0 to 1.61.1

Release notes

Sourced from @​playwright/test's releases.

v1.61.1

Bug Fixes

  • #41365 [Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher
  • #41351 [Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected number of bytes (same test passes in headed mode)
  • #41360 [Bug]: Trace viewer: message times in websockets are downscaled by 1000
  • #41311 [Bug]: [Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15
  • #41371 [Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks
Commits
  • 39e3553 cherry-pick(#41399): fix(test): load require-reached files as commonjs in syn...
  • 4328122 chore: mark v1.61.1 (#41404)
  • 2c29a94 fix(tracing): stop recording websocket frames outside of chunks (#41398)
  • 4324b19 cherry-pick(#41367): fix(test): keep builtin expect matchers on base extend
  • 041e7e3 cherry-pick(#41364): fix(har): WebSocket message timestamps should be in mi...
  • b8a0fc3 cherry-pick(#41309, #43149): Revert "fix(firefox): treat `navigationCommitted...
  • b5a3175 cherry-pick(#41319): fix(loader): support other node versions
  • d4724a9 cherry-pick(#41290): feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image
  • See full diff in compare view

Updates lint-staged from 17.0.7 to 17.0.8

Release notes

Sourced from lint-staged's releases.

v17.0.8

Patch Changes

  • #1809 179b437 - Fix lint-staged discarding the ongoing merge conflict status (.git/MERGE_HEAD) when using the --hide-unstaged or --hide-all options.

  • #1811 3d0b2c0 - Fix issues with Git commands that are successful but also emit warnings to stderr, by ignoring the stderr output completely when the process exits with code 0. This was the behavior when using nano-spawn and execa, but when switching to tinyexec in 16.3.0 both stdout and stderr were used as interleaved output.

Changelog

Sourced from lint-staged's changelog.

17.0.8

Patch Changes

  • #1809 179b437 - Fix lint-staged discarding the ongoing merge conflict status (.git/MERGE_HEAD) when using the --hide-unstaged or --hide-all options.

  • #1811 3d0b2c0 - Fix issues with Git commands that are successful but also emit warnings to stderr, by ignoring the stderr output completely when the process exits with code 0. This was the behavior when using nano-spawn and execa, but when switching to tinyexec in 16.3.0 both stdout and stderr were used as interleaved output.

Commits
  • 5f3b8f2 Merge pull request #1812 from lint-staged/changeset-release/main
  • 43a9b8d chore(changeset): release
  • 630e2f6 Merge pull request #1809 from lint-staged/restore-merge-status
  • 179b437 fix: restore Git merge status after creating backup stash
  • 6bae2e2 Merge pull request #1811 from lint-staged/exec-git-ignore-stderr
  • b82a830 ci: run npm audit omitting dev, including prod dependencies
  • 0b19b80 build(deps): update dependencies
  • 3d0b2c0 fix: ignore stderr when doing Git operations
  • See full diff in compare view

Updates prettier from 3.8.4 to 3.9.4

Release notes

Sourced from prettier's releases.

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.4

diff

Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

<!-- Input -->
<FancyButton [label]="title">
  @content (icon) {
    <span>Icon!</span>
  }
  @content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>
<!-- Prettier 3.9.3 -->
<FancyButton [label]="title">
@​content(icon) {
<span>Icon!</span>
}
@​content(description) {
<span>Description text</span>
}
<span>Other children</span>
</FancyButton>
<!-- Prettier 3.9.4 -->
<FancyButton [label]="title">
@​content (icon) {
<span>Icon!</span>
}
@​content (description) {
<span>Description text</span>
}
<span>Other children</span>
</FancyButton>

3.9.3

diff

Markdown: Fix unexpected removal of characters in liquid syntax (#19489 by @​seiyab)

</tr></table> 

... (truncated)

Commits
  • b693cb2 Release 3.9.4
  • 2e92ac0 Angular: Format @content(name) -> @content (name) to align with other blo...
  • abed2c2 Bump Prettier dependency to 3.9.3
  • 6cfbc00 Clean changelog_unreleased
  • 3732e1d Release 3.9.3
  • a74a7b0 Allow decorators to be used with declare on class fields (#19492)
  • bd9e11a Correct text identification in liquid syntax (#19489)
  • 269eee3 Bump Prettier dependency to 3.9.1
  • ec7ccd1 Clean changelog_unreleased
  • c47654c Release 3.9.1
  • Additional commits viewable in compare view

Updates react-doctor from 0.5.6 to 0.6.2

Release notes

Sourced from react-doctor's releases.

react-doctor@0.6.2

Patch Changes

  • #1028 f07ee37 Thanks @​rayhanadev! - Undo the 0.6.0 scan-time regression and cut lint CPU ~30% below it (~20% below 0.5.8). Diagnostics are byte-identical throughout; verified per-change on a 1.8k-file monorepo.

    • Share the plugin's scope and control-flow analyses across every rule linting a file. The semantic-context wrapper cached each analysis in a per-rule closure, so every scope-reading rule re-ran the full O(file) analysis on the same AST (~20% of plugin lint CPU, and the multiplier grew as 0.6.0 added scope-hungry false-positive guards — the main driver of the regression). One analysis per Program node now serves all rules.
    • Stop wrapping every visitor of every rule in a root-capture closure — Program enter fires first, so capturing there removes a function call per (node × rule).
    • Yield the cooperative security scan by time budget instead of file count. It yielded every 16 files, so one large minified bundle could hold the event loop for its whole rule set — and lint's child processes are spawned and drained from main-thread continuations, so each stall idled the whole worker pool (worst on 2-core CI runners). It now hands the loop back after any 12ms slice, checked between every (file, rule) step.
    • Memoize isTestlikeFilename (every rule re-ran ~70 substring scans per file), collect imports from Program.body instead of a whole-program recursion, and skip the generated-image (OG/satori) sweep when the module imports no image-response library.
    • Defer js-combine-iterations' generator-name collection to the first chained-iteration candidate, and collect only the node kinds only-export-components consumes instead of materializing every node in the program.
    • Stop double-linting cache misses. With the per-file lint cache enabled, every miss ran twice — once in the cacheable pass, again in the always-fresh cross-file sidecar over every file — so a cold-cache scan (every CI run) paid ~2× the lint parse and spawn cost. Misses now run the full config once and hits get the sidecar only; the fresh output is partitioned by rule id, so cache contents, staleness guarantees, and reported diagnostics are unchanged (cold-cache lint CPU −40% measured).
  • Updated dependencies [f07ee37]:

    • oxlint-plugin-react-doctor@0.6.2
    • deslop-js@0.6.2

react-doctor@0.6.1

Patch Changes

  • Updated dependencies [5f60bef, 6885698]:
    • oxlint-plugin-react-doctor@0.6.1
    • deslop-js@0.6.1

react-doctor@0.6.0

Minor Changes

  • #955 e2393c4 Thanks @​rayhanadev! - Add react-doctor ci <install|upgrade|config>, a dedicated command for managing React Doctor in CI.

    • ci install adds a workflow that scans every pull request. It auto-detects the provider (GitHub Actions or GitLab CI), bakes a gate from --blocking/--scope/--comment/--review-comments/--commit-status, and can open a pull request with --pr.
    • ci config walks you through the gate, scan scope, and pull-request reporting interactively (with a plain-language recap of what each setting does), or applies the same flags non-interactively. It edits any workflow that contains the React Doctor action step in place — preserving your other steps, jobs, inputs, and comments — and only prints a paste snippet when the file has no React Doctor step.
    • ci upgrade bumps the GitHub Action to its current floating major.

    GitHub Actions is fully supported; GitLab CI gets a gate-only scaffold. The install command's CI setup is unchanged; ci is the focused home for managing CI on its own.

Patch Changes

  • #936 ba2af1b Thanks @​aidenybai! - Update the license to MIT with additional restrictions: the software may not be used as training, fine-tuning, or evaluation data for machine-learning models or AI systems, nor sold or resold as a commercial product or service (e.g. a paid API, SaaS, or hosted/managed service) whose value derives substantially from the software, without prior written permission (contact founders@million.dev). Each version's additional restrictions expire on the second anniversary of its release, after which that version is available under the standard MIT License (an FSL-style grant of future license). Each published package now ships its own up-to-date LICENSE file so the terms travel with the tarball.

    The react-doctor CLI also now prints a one-time notice (once per run) when it detects it is running inside an AI/ML training pipeline or agent sandbox, pointing to the license terms.

  • #1019 88a5c3c Thanks @​rayhanadev! - Surface when a compare (PR-introduced-issues) scan couldn't reach the base and fell back to reporting every issue in the changed files.

    • The JSON report now carries baselineDegraded: true (schemaVersion 1) when a changed-scope run intended a baseline comparison but couldn't compute it — most often a shallow CI checkout with no merge base. Previously the run silently degraded to a plain diff with no signal in the report or the PR comment.
    • The scaffolded GitHub Actions workflow (react-doctor ci install / install) now checks out with fetch-depth: 0, so PR runs have the full history needed to find the merge base and report only the issues the PR introduces instead of all pre-existing ones.
  • #1020 2af7322 Thanks @​rayhanadev! - Fix category-level severities silently force-enabling opt-out rules. A config that only re-stamps category severities (e.g. categories: { "Maintainability": "warn" }) no longer activates defaultEnabled: false rules such as forbid-component-props, react-in-jsx-scope, no-danger, or design-no-redundant-size-axes in that category — enabling an opt-out rule now requires pinning the rule itself (or a legacy alias key) to "warn"/"error" under rules, matching the documented contract. Category severities still re-stamp the severity of already-enabled rules, and react-doctor rules now previews the same behavior.

  • #1014 d241e51 Thanks @​devin-ai-integration! - CLI audit fixes:

    • Windows agent hooks no longer report false findings on every edit (cmd.exe's exit 9009 falls through, the local bin is probed as the runnable .cmd shim, 16 MiB output buffer, guarded output read).

... (truncated)

Changelog

Sourced from react-doctor's changelog.

0.6.2

Patch Changes

  • #1028 f07ee37 Thanks @​rayhanadev! - Undo the 0.6.0 scan-time regression and cut lint CPU ~30% below it (~20% below 0.5.8). Diagnostics are byte-identical throughout; verified per-change on a 1.8k-file monorepo.

    • Share the plugin's scope and control-flow analyses across every rule linting a file. The semantic-context wrapper cached each analysis in a per-rule closure, so every scope-reading rule re-ran the full O(file) analysis on the same AST (~20% of plugin lint CPU, and the multiplier grew as 0.6.0 added scope-hungry false-positive guards — the main driver of the regression). One analysis per Program node now serves all rules.
    • Stop wrapping every visitor of every rule in a root-capture closure — Program enter fires first, so capturing there removes a function call per (node × rule).
    • Yield the cooperative security scan by time budget instead of file count. It yielded every 16 files, so one large minified bundle could hold the event loop for its whole rule set — and lint's child processes are spawned and drained from main-thread continuations, so each stall idled the whole worker pool (worst on 2-core CI runners). It now hands the loop back after any 12ms slice, checked between every (file, rule) step.
    • Memoize isTestlikeFilename (every rule re-ran ~70 substring scans per file), collect imports from Program.body instead of a whole-program recursion, and skip the generated-image (OG/satori) sweep when the module imports no image-response library.
    • Defer js-combine-iterations' generator-name collection to the first chained-iteration candidate, and collect only the node kinds only-export-components consumes instead of materializing every node in the program.
    • Stop double-linting cache misses. With the per-file lint cache enabled, every miss ran twice — once in the cacheable pass, again in the always-fresh cross-file sidecar over every file — so a cold-cache scan (every CI run) paid ~2× the lint parse and spawn cost. Misses now run the full config once and hits get the sidecar only; the fresh output is partitioned by rule id, so cache contents, staleness guarantees, and reported diagnostics are unchanged (cold-cache lint CPU −40% measured).
  • Updated dependencies [f07ee37]:

    • oxlint-plugin-react-doctor@0.6.2
    • deslop-js@0.6.2

0.6.1

Patch Changes

  • Updated dependencies [5f60bef, 6885698]:
    • oxlint-plugin-react-doctor@0.6.1
    • deslop-js@0.6.1

0.6.0

Minor Changes

  • #955 e2393c4 Thanks @​rayhanadev! - Add react-doctor ci <install|upgrade|config>, a dedicated command for managing React Doctor in CI.

    • ci install adds a workflow that scans every pull request. It auto-detects the provider (GitHub Actions or GitLab CI), bakes a gate from --blocking/--scope/--comment/--review-comments/--commit-status, and can open a pull request with --pr.
    • ci config walks you through the gate, scan scope, and pull-request reporting interactively (with a plain-language recap of what each setting does), or applies the same flags non-interactively. It edits any workflow that contains the React Doctor action step in place — preserving your other steps, jobs, inputs, and comments — and only prints a paste snippet when the file has no React Doctor step.
    • ci upgrade bumps the GitHub Action to its current floating major.

    GitHub Actions is fully supported; GitLab CI gets a gate-only scaffold. The install command's CI setup is unchanged; ci is the focused home for managing CI on its own.

Patch Changes

  • #936 ba2af1b Thanks @​aidenybai! - Update the license to MIT with additional restrictions: the software may not be used as training, fine-tuning, or evaluation data for machine-learning models or AI systems, nor sold or resold as a commercial product or service (e.g. a paid API, SaaS, or hosted/managed service) whose value derives substantially from the software, without prior written permission (contact founders@million.dev). Each version's additional restrictions expire on the second anniversary of its release, after which that version is available under the standard MIT License (an FSL-style grant of future license). Each published package now ships its own up-to-date LICENSE file so the terms travel with the tarball.

    The react-doctor CLI also now prints a one-time notice (once per run) when it detects it is running inside an AI/ML training pipeline or agent sandbox, pointing to the license terms.

  • #1019 88a5c3c Thanks @​rayhanadev! - Surface when a compare (PR-introduced-issues) scan couldn't reach the base and fell back to reporting every issue in the changed files.

    • The JSON report now carries baselineDegraded: true (schemaVersion 1) when a changed-scope run intended a baseline comparison but couldn't compute it — most often a shallow CI checkout with no merge base. Previously the run silently degraded to a plain diff with no signal in the report or the PR comment.
    • The scaffolded GitHub Actions workflow (react-doctor ci install / install) now checks out with fetch-depth: 0, so PR runs have the full history needed to find the merge base and report only the issues the PR introduces instead of all pre-existing ones.
  • #1020 2af7322 Thanks @​rayhanadev! - Fix category-level severities silently force-enabling opt-out rules. A config that only re-stamps category severities (e.g. categories: { "Maintainability": "warn" }) no longer activates defaultEnabled: false rules such as forbid-component-props, react-in-jsx-scope, no-danger, or design-no-redundant-size-axes in that category — enabling an opt-out rule now requires pinning the rule itself (or a legacy alias key) to "warn"/"error" under rules, matching the documented contract. Category severities still re-stamp the severity of already-enabled rules, and react-doctor rules now previews the same behavior.

... (truncated)

Commits
  • 397816a chore: version packages (#1029)
  • 4e91677 chore: version packages (#1026)
  • 113637e chore: version packages (#918)
  • 8232e96 fix: deterministic file discovery, build-output exclusion, and --max-duration...
  • 88a5c3c fix(action): surface degraded baseline scans + scaffold full-history checkout...
  • 2af7322 fix(config): category severities no longer force-enable opt-out rules (#1020)
  • d241e51 FABLE_CLEANUP: fix(cli): 20-day audit fixes for the CLI (#1014)
  • 4728f2d FABLE_CLEANUP: fix(action): 20-day audit fixes for the GitHub Action and work...
  • 7ef9f0e FABLE_CLEANUP: fix(rules): 20-day audit fixes for security-scan and RN rules ...
  • c2af308 fix(rules): kill four false positives React Doctor raised on its own Ink TUI ...
  • Additional commits viewable in compare view

Updates turbo from 2.9.18 to 2.10.2

Release notes

Sourced from turbo's releases.

Turborepo v2.10.2

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.1...v2.10.2

Turborepo v2.10.2-canary.1

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.1-canary.3...v2.10.2-canary.1

Turborepo v2.10.1

What's Changed

Changelog

... (truncated)

Commits

Updates @base-ui/react from 1.5.0 to 1.6.0

Release notes

Sourced from @​base-ui/react's releases.

v1.6.0

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Changelog

Sourced from @​base-ui/react's changelog.

v1.6.0

Jun 18, 2026

General changes

Accordion

Alert Dialog

Autocomplete

Avatar

Checkbox

Checkbox Group

Collapsible

Combobox

... (truncated)

Commits
  • b34551d [code-infra] Fix package publishing (#5074)
  • 615b0e8 [release] v1.6.0 (#5064)
  • 8b7ca5d [test] Restore slider listener spies (#5072)
  • 2502524 [combobox][autocomplete] Document open requirement for the inline prop (#...
  • 4c33d74 [slider] Fix touchend listener accumulation leak (#5070)
  • d169cd5 [combobox] Fix autofill and selected state edge cases (#4972)
  • 2d8b8f6 [avatar] Fix image status edge cases (#4835)
  • ee3c13a [select] Skip disabled items in typeahead and fix multiple-mode serialization...
  • b167c85 [drawer] Commit swipe on primary-button release (#5057)
  • e972d74 [combobox] Avoid re-rendering every item on each keystroke (#4964)
  • Additional commits viewable in compare view

Updates @tanstack/react-query from 5.101.0 to 5.101.2

Release notes

Sourced from @​tanstack/react-query's releases.

@​tanstack/react-query-devtools@​5.101.2

Patch Changes

@​tanstack/react-query-next-experimental@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query-persist-client@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.2
    • @​tanstack/react-query@​5.101.2

@​tanstack/react-query@​5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

@​tanstack/react-query-devtools@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-devtools@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-next-experimental@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query-persist-client@​5.101.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-persist-client-core@​5.101.1
    • @​tanstack/react-query@​5.101.1

@​tanstack/react-query@​5.101.1

Patch Changes

... (truncated)

Changelog

Sourced from @​tanstack/react-query's changelog.

5.101.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/query-core@​5.101.2

5.101.1

Patch Changes

  • Updated dependencies [9eff92e]:
    • @​tanstack/query-core@​5.101.1
Commits

…updates

Bumps the web-minor-patch group with 29 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.61.0` | `1.61.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.7` | `17.0.8` |
| [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.4` |
| [react-doctor](https://github.com/millionco/react-doctor/tree/HEAD/packages/react-doctor) | `0.5.6` | `0.6.2` |
| [turbo](https://github.com/vercel/turborepo) | `2.9.18` | `2.10.2` |
| [@base-ui/react](https://github.com/mui/base-ui/tree/HEAD/packages/react) | `1.5.0` | `1.6.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.0` | `5.101.2` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.101.0` | `5.101.2` |
| [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.15` | `1.170.17` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.18.0` | `1.23.0` |
| [shadcn](https://github.com/shadcn-ui/ui/tree/HEAD/packages/shadcn) | `4.11.0` | `4.12.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.1` | `4.3.2` |
| [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.168.18` | `1.168.19` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.1` | `4.3.2` |
| [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.22.5` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.61.1` | `8.62.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.1.3` |
| [@tanstack/query-sync-storage-persister](https://github.com/TanStack/query/tree/HEAD/packages/query-sync-storage-persister) | `5.101.0` | `5.101.2` |
| [@tanstack/react-query-persist-client](https://github.com/TanStack/query/tree/HEAD/packages/react-query-persist-client) | `5.101.0` | `5.101.2` |
| [@tanstack/react-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/react-virtual) | `3.14.3` | `3.14.5` |
| [motion](https://github.com/motiondivision/motion) | `12.40.0` | `12.42.2` |
| [nanoid](https://github.com/ai/nanoid) | `5.1.11` | `5.1.16` |
| [next](https://github.com/vercel/next.js) | `16.2.9` | `16.2.10` |
| [next-intl](https://github.com/amannn/next-intl) | `4.13.0` | `4.13.1` |
| [recharts](https://github.com/recharts/recharts) | `3.8.1` | `3.9.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `4.2.0` | `4.3.0` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.3.1` | `4.3.2` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.2` | `6.0.3` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.2.9` | `16.2.10` |



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

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

Updates `prettier` from 3.8.4 to 3.9.4
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.4...3.9.4)

Updates `react-doctor` from 0.5.6 to 0.6.2
- [Release notes](https://github.com/millionco/react-doctor/releases)
- [Changelog](https://github.com/millionco/react-doctor/blob/main/packages/react-doctor/CHANGELOG.md)
- [Commits](https://github.com/millionco/react-doctor/commits/react-doctor@0.6.2/packages/react-doctor)

Updates `turbo` from 2.9.18 to 2.10.2
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.9.18...v2.10.2)

Updates `@base-ui/react` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/mui/base-ui/releases)
- [Changelog](https://github.com/mui/base-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/base-ui/commits/v1.6.0/packages/react)

Updates `@tanstack/react-query` from 5.101.0 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.101.2/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.101.0 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-devtools/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-devtools@5.101.2/packages/react-query-devtools)

Updates `@tanstack/react-router` from 1.170.15 to 1.170.17
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/react-router@1.170.17/packages/react-router)

Updates `lucide-react` from 1.18.0 to 1.23.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.23.0/packages/lucide-react)

Updates `shadcn` from 4.11.0 to 4.12.0
- [Release notes](https://github.com/shadcn-ui/ui/releases)
- [Changelog](https://github.com/shadcn-ui/ui/blob/main/packages/shadcn/CHANGELOG.md)
- [Commits](https://github.com/shadcn-ui/ui/commits/shadcn@4.12.0/packages/shadcn)

Updates `@tailwindcss/vite` from 4.3.1 to 4.3.2
- [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.2/packages/@tailwindcss-vite)

Updates `@tanstack/router-plugin` from 1.168.18 to 1.168.19
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/router-plugin/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/router-plugin@1.168.19/packages/router-plugin)

Updates `tailwindcss` from 4.3.1 to 4.3.2
- [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.2/packages/tailwindcss)

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

Updates `typescript-eslint` from 8.61.1 to 8.62.1
- [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.62.1/packages/typescript-eslint)

Updates `vite` from 8.0.16 to 8.1.3
- [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.1.3/packages/vite)

Updates `@tanstack/query-sync-storage-persister` from 5.101.0 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/query-sync-storage-persister/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/query-sync-storage-persister@5.101.2/packages/query-sync-storage-persister)

Updates `@tanstack/react-query-persist-client` from 5.101.0 to 5.101.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query-persist-client/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query-persist-client@5.101.2/packages/react-query-persist-client)

Updates `@tanstack/react-virtual` from 3.14.3 to 3.14.5
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Changelog](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/CHANGELOG.md)
- [Commits](https://github.com/TanStack/virtual/commits/@tanstack/react-virtual@3.14.5/packages/react-virtual)

Updates `motion` from 12.40.0 to 12.42.2
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.40.0...v12.42.2)

Updates `nanoid` from 5.1.11 to 5.1.16
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@5.1.11...5.1.16)

Updates `next` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.2.9...v16.2.10)

Updates `next-intl` from 4.13.0 to 4.13.1
- [Release notes](https://github.com/amannn/next-intl/releases)
- [Changelog](https://github.com/amannn/next-intl/blob/main/CHANGELOG.md)
- [Commits](amannn/next-intl@v4.13.0...v4.13.1)

Updates `recharts` from 3.8.1 to 3.9.1
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.8.1...v3.9.1)

Updates `shiki` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.3.0/packages/shiki)

Updates `@tailwindcss/postcss` from 4.3.1 to 4.3.2
- [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.2/packages/@tailwindcss-postcss)

Updates `@vitejs/plugin-react` from 6.0.2 to 6.0.3
- [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.3/packages/plugin-react)

Updates `eslint-config-next` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](https://github.com/vercel/next.js/commits/v16.2.10/packages/eslint-config-next)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.61.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: lint-staged
  dependency-version: 17.0.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: prettier
  dependency-version: 3.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: react-doctor
  dependency-version: 0.6.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: turbo
  dependency-version: 2.10.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: "@base-ui/react"
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/react-router"
  dependency-version: 1.170.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: lucide-react
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: shadcn
  dependency-version: 4.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/router-plugin"
  dependency-version: 1.168.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: tailwindcss
  dependency-version: 4.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: tsx
  dependency-version: 4.22.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: typescript-eslint
  dependency-version: 8.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: vite
  dependency-version: 8.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/query-sync-storage-persister"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/react-query-persist-client"
  dependency-version: 5.101.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@tanstack/react-virtual"
  dependency-version: 3.14.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: motion
  dependency-version: 12.42.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: nanoid
  dependency-version: 5.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: next
  dependency-version: 16.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: next-intl
  dependency-version: 4.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: recharts
  dependency-version: 3.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: shiki
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: web-minor-patch
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
- dependency-name: eslint-config-next
  dependency-version: 16.2.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: web-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

Labels

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

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

@github-actions

github-actions Bot commented Jul 3, 2026

Copy link
Copy Markdown

React Doctor found no issues. 🎉

Reviewed by React Doctor for commit c592a5e.

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