Skip to content

deps: bump the dependencies group across 1 directory with 34 updates#193

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

deps: bump the dependencies group across 1 directory with 34 updates#193
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-b80ba3adc4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 34 updates in the / directory:

Package From To
lint-staged 17.0.7 17.0.8
prettier 3.8.4 3.9.4
vitest 4.1.9 4.1.10
@clack/prompts 1.5.1 1.7.0
@tanstack/query-core 5.101.0 5.101.2
@tanstack/react-query 5.101.0 5.101.2
@happy-dom/global-registrator 20.10.5 20.10.6
@vitest/coverage-v8 4.1.9 4.1.10
happy-dom 20.10.5 20.10.6
starlight-page-actions 0.6.1 0.6.2
@astrojs/starlight 0.40.0 0.41.3
typedoc 0.28.19 0.28.20
@radix-ui/react-scroll-area 1.2.11 1.2.13
@radix-ui/react-separator 1.1.9 1.1.11
@radix-ui/react-slot 1.2.5 1.3.0
@tanstack/react-query-devtools 5.101.0 5.101.2
lucide-react 1.20.0 1.23.0
@tailwindcss/vite 4.3.1 4.3.2
@vitejs/plugin-react 6.0.2 6.0.3
tailwindcss 4.3.1 4.3.2
vite 8.0.16 8.1.3
@microlink/react-json-view 1.31.20 1.31.22
react-hook-form 7.79.0 7.81.0
@tailwindcss/postcss 4.3.1 4.3.2
next 16.2.9 16.2.10
postcss 8.5.12 8.5.16
autoprefixer 10.5.0 10.5.2
@tanstack/react-devtools 0.10.5 0.10.8
@tanstack/react-router 1.170.15 1.170.17
@tanstack/devtools-vite 0.7.0 0.8.1
@tanstack/router-plugin 1.168.18 1.168.19
eslint 10.5.0 10.6.0
globals 17.6.0 17.7.0
typescript-eslint 8.61.0 8.62.1

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 vitest from 4.1.9 to 4.1.10

Release notes

Sourced from vitest's releases.

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • db616d2 chore: release v4.1.10 (#10718)
  • bae52b5 fix(vm): fix external module resolve error with deps optimizer query for enco...
  • See full diff in compare view

Updates @clack/prompts from 1.5.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

    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

    Commits

    Updates @tanstack/query-core from 5.101.0 to 5.101.2

    Release notes

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

    @​tanstack/query-core@​5.101.2

    No release notes provided.

    @​tanstack/query-core@​5.101.1

    Patch Changes

    • #10610 9eff92e - fix missing dataUpdatedAt for streamed queries that resolve before hydration
    Changelog

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

    5.101.2

    5.101.1

    Patch Changes

    • #10610 9eff92e - fix missing dataUpdatedAt for streamed queries that resolve before hydration
    Commits
    • 610e8d1 ci: Version Packages (#10996)
    • a4587b6 test(query-core/hydration): replace 'vi.waitFor' with 'vi.advanceTimersByTime...
    • 0298c90 test(query-core): keep setQueryData typecheck green on TypeScript 5.4 (#10985)
    • b809297 ci: Version Packages (#10977)
    • c28b2f9 ci: apply automated fixes
    • 9eff92e fix(hydration): set dataUpdatedAt when pending query resolves before hydratio...
    • 0bed37a test(query-core): replace deprecated 'toBeCalledWith' and 'toBeCalledTimes' w...
    • 4077908 test(query-core/queryObserver): add tests for 'notifyOnChangeProps' as a func...
    • 01616c6 test(query-core/queryObserver): add test for 'refetchInterval' as a function ...
    • 84cbbdb test(query-core/queryObserver): add test for 'refetchInterval' as a function ...
    • 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
    • 610e8d1 ci: Version Packages (#10996)
    • 1f84256 docs: document the select typing caveat for parallel-queries hooks (#10984)
    • b809297 ci: Version Packages (#10977)
    • ccc843e test({react,preact}-query/useQueries): move type-only tests to 'useQueries.te...
    • 4154613 test({react,preact}-query/useMutation): split 'should handle conditional logi...
    • 8bb5fde test({react,preact}-query/useMutation): split 'should pass meta to mutation' ...
    • 87426a3 test(react-query): replace deprecated 'toBeCalledTimes' with 'toHaveBeenCalle...
    • feb1efd test(*): move 'vi.useRealTimers' to the end of 'afterEach' so cleanup runs un...
    • See full diff in compare view

    Updates @happy-dom/global-registrator from 20.10.5 to 20.10.6

    Release notes

    Sourced from @​happy-dom/global-registrator's releases.

    v20.10.6

    👷‍♂️ Patch fixes

    Commits

    Updates @vitest/coverage-v8 from 4.1.9 to 4.1.10

    Release notes

    Sourced from @​vitest/coverage-v8's releases.

    v4.1.10

       🐞 Bug Fixes

        View changes on GitHub
    Commits

    Updates happy-dom from 20.10.5 to 20.10.6

    Release notes

    Sourced from happy-dom's releases.

    v20.10.6

    👷‍♂️ Patch fixes

    Commits

    Updates starlight-page-actions from 0.6.1 to 0.6.2

    Release notes

    Sourced from starlight-page-actions's releases.

    v0.6.2

    Improvements

    • Add consistent icons for built-in page actions and share options
    Commits
    • 988c517 chore: release v0.6.2
    • d675c6f feat: add icon for custom actions
    • 78eaf6c fix: markdown icon
    • 06da4a6 chore: add markdown icon on copy markdown button
    • bb1da82 chore(starlight-page-actions): fix dropdown with on mobile
    • 554bda6 feat: show social icons on share dropdown
    • fa36b66 chore: add social icons
    • 2e2b0fa feat: add page title icons
    • 1d45133 feat: show dropdown option with icon
    • 622b053 chore: update t3chat icon
    • Additional commits viewable in compare view

    Updates @astrojs/starlight from 0.40.0 to 0.41.3

    Release notes

    Sourced from @​astrojs/starlight's releases.

    @​astrojs/starlight@​0.41.3

    Patch Changes

    • #3911 1686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.

    @​astrojs/starlight@​0.41.2

    Patch Changes

    • #4008 58a3520 Thanks @​FrancoKaddour! - Fixes the table of contents overflowing the right edge of the viewport when a custom --sl-content-width value exceeds available space

    • #4015 bdbfffc Thanks @​delucis! - Fixes an issue where aside icons were rendered incorrectly in projects where Astro’s MDX integration had optimization disabled

    @​astrojs/starlight@​0.41.1

    Patch Changes

    @​astrojs/starlight@​0.41.0

    Minor Changes

    • #3951 1202dd4 Thanks @​HiDeoo! - Adds support for Astro v7, drops support for Astro v6.

      Upgrade Astro and dependencies

      ⚠️ BREAKING CHANGE: Astro v6 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

      npx @astrojs/upgrade

      Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v7. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

      ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 111 (released 07 March 2023) and Safari-based browsers prior to version 16.4 (released 27 March 2023). You can find a list of currently supported browsers and their versions using this browserslist query.

    Patch Changes

    • #3953 a935d33 Thanks @​HiDeoo! - Fixes Starlight Markdown processing being potentially applied to files that should not be processed.
    Changelog

    Sourced from @​astrojs/starlight's changelog.

    0.41.3

    Patch Changes

    • #3911 1686ecc Thanks @​timothyjordan! - Keeps keyboard focus inside the mobile menu while it is open, preventing focus moving to hidden interactive elements in page content.

    0.41.2

    Patch Changes

    • #4008 58a3520 Thanks @​FrancoKaddour! - Fixes the table of contents overflowing the right edge of the viewport when a custom --sl-content-width value exceeds available space

    • #4015 bdbfffc Thanks @​delucis! - Fixes an issue where aside icons were rendered incorrectly in projects where Astro’s MDX integration had optimization disabled

    0.41.1

    Patch Changes

    0.41.0

    Minor Changes

    • #3951 1202dd4 Thanks @​HiDeoo! - Adds support for Astro v7, drops support for Astro v6.

      Upgrade Astro and dependencies

      ⚠️ BREAKING CHANGE: Astro v6 is no longer supported. Make sure you update Astro and any other official integrations at the same time as updating Starlight:

      npx @astrojs/upgrade

      Community Starlight plugins and Astro integrations may also need to be manually updated to work with Astro v7. If you encounter any issues, please reach out to the plugin or integration author to see if it is a known issue or if an updated version is being worked on.

      ⚠️ BREAKING CHANGE: This release drops official support for Chromium-based browsers prior to version 111 (released 07 March 2023) and Safari-based browsers prior to version 16.4 (released 27 March 2023). You can find a list of currently supported browsers and their versions using this browserslist query.

    Patch Changes

    • #3953 a935d33 Thanks @​HiDeoo! - Fixes Starlight Markdown processing being potentially applied to files that should not be processed.
    Commits

    Updates typedoc from 0.28.19 to 0.28.20

    Release notes

    Sourced from typedoc's releases.

    v0.28.20

    Features

    • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
    • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
    • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

    Bug Fixes

    • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
    • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
    • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
    • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

    Thanks!

    Changelog

    Sourced from typedoc's changelog.

    v0.28.20 (2026-07-05)

    Features

    • Group/category section headings (<h2>) in the default theme now include an id attribute so they can be linked to via fragment identifiers (e.g. modules.html#classes), #3029.
    • Added a @reexport modifier tag to have TypeDoc convert variable/type references as a re-export instead of a new symbol, #3096.
    • API: Introduced generateOutputsBegin and generateOutputsEnd events on Application for plugin use.

    Bug Fixes

    • When --emit none is used, TypeDoc will now report warnings about missing relative paths previously reported when rendering, #3078.
    • Improved performance via asynchronously performing git and file write operations, more performant JSX rendering, and source code bundling, #3103.
    • A @hidden tag on a constructor parameter-property will now only hide the property, not both the property and the parameter, #3111.
    • Custom @group and @category titles with the same sort weight are now ordered consistently with the alphabetical reflection sort, #3120.

    Thanks!

    Commits
    • 34d843b Update changelog for release
    • fbd4a25 Bump version to 0.28.20
    • 93ba157 Update dependencies in example
    • e8c5df8 Remove unnecessary files from distribution
    • 392b0dd Update dependencies
    • 8510dd4 Add missing entries in changelog before release
    • 51dc052 Update change log for 0.28.20 release
    • 72f20cd Merge branch 'fix-locale-sort-group-category-titles' into dev
    • 623f2c0 Fix failing test, accept slightly slower build for now
    • c8bdf14 Minor config tweak to improve dev build time
    • Additional commits viewable in compare view

    Updates @radix-ui/react-scroll-area from 1.2.11 to 1.2.13

    Changelog

    Sourced from @​radix-ui/react-scroll-area's changelog.

    1.2.13

    • Fixed infinite re-render loop in React 19 caused by unstable composed ref callback references.

    Other updates

    • Updated dependencies: @radix-ui/react-primitive@2.1.7

    1.2.12

    • Stabilized the viewport style tag unless the nonce changes.
    • Fixed Duplicate index signature errors that surfaced when consuming multiple packages together.
    • Updated dependencies: @radix-ui/react-primitive@2.1.6
    Commits

    Updates @radix-ui/react-separator from 1.1.9 to 1.1.11

    Changelog

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

    1.1.11

    • Updated dependencies: @radix-ui/react-primitive@2.1.7

    1.1.10

    • Updated dependencies: @radix-ui/react-primitive@2.1.6
    Commits

    Updates @radix-ui/react-slot from 1.2.5 to 1.3.0

    Changelog

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

    1.3.0

    Added generic type arguments for SlotProps and createSlot

    SlotProps and createSlot now accept generic type arguments to specify the type of element a slot should render, as well as its props.

    const Slot = createSlot<HTMLButtonElement, MyCustomButtonProps>('Slot');
    Commits

    Updates @tanstack/react-query-devtools from 5.101.0 to 5.101.2

    Release notes

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

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

    Patch Changes

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

    Patch Changes

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

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

    5.101.2

    Patch Change...

    Description has been truncated

    Bumps the dependencies group with 34 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [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` |
    | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.9` | `4.1.10` |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `1.5.1` | `1.7.0` |
    | [@tanstack/query-core](https://github.com/TanStack/query/tree/HEAD/packages/query-core) | `5.101.0` | `5.101.2` |
    | [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.101.0` | `5.101.2` |
    | [@happy-dom/global-registrator](https://github.com/capricorn86/happy-dom) | `20.10.5` | `20.10.6` |
    | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.9` | `4.1.10` |
    | [happy-dom](https://github.com/capricorn86/happy-dom) | `20.10.5` | `20.10.6` |
    | [starlight-page-actions](https://github.com/dlcastillop/starlight-page-actions/tree/HEAD/packages/starlight-page-actions) | `0.6.1` | `0.6.2` |
    | [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) | `0.40.0` | `0.41.3` |
    | [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.19` | `0.28.20` |
    | [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/scroll-area) | `1.2.11` | `1.2.13` |
    | [@radix-ui/react-separator](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/separator) | `1.1.9` | `1.1.11` |
    | [@radix-ui/react-slot](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/slot) | `1.2.5` | `1.3.0` |
    | [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.101.0` | `5.101.2` |
    | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.20.0` | `1.23.0` |
    | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `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` |
    | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.1` | `4.3.2` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.16` | `8.1.3` |
    | [@microlink/react-json-view](https://github.com/microlinkhq/react-json-view) | `1.31.20` | `1.31.22` |
    | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.79.0` | `7.81.0` |
    | [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.3.1` | `4.3.2` |
    | [next](https://github.com/vercel/next.js) | `16.2.9` | `16.2.10` |
    | [postcss](https://github.com/postcss/postcss) | `8.5.12` | `8.5.16` |
    | [autoprefixer](https://github.com/postcss/autoprefixer) | `10.5.0` | `10.5.2` |
    | [@tanstack/react-devtools](https://github.com/TanStack/devtools/tree/HEAD/packages/react-devtools) | `0.10.5` | `0.10.8` |
    | [@tanstack/react-router](https://github.com/TanStack/router/tree/HEAD/packages/react-router) | `1.170.15` | `1.170.17` |
    | [@tanstack/devtools-vite](https://github.com/TanStack/devtools/tree/HEAD/packages/devtools-vite) | `0.7.0` | `0.8.1` |
    | [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.168.18` | `1.168.19` |
    | [eslint](https://github.com/eslint/eslint) | `10.5.0` | `10.6.0` |
    | [globals](https://github.com/sindresorhus/globals) | `17.6.0` | `17.7.0` |
    | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.61.0` | `8.62.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 `vitest` from 4.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 `@clack/prompts` from 1.5.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 `@tanstack/query-core` 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-core/CHANGELOG.md)
    - [Commits](https://github.com/TanStack/query/commits/@tanstack/query-core@5.101.2/packages/query-core)
    
    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 `@happy-dom/global-registrator` from 20.10.5 to 20.10.6
    - [Release notes](https://github.com/capricorn86/happy-dom/releases)
    - [Commits](capricorn86/happy-dom@v20.10.5...v20.10.6)
    
    Updates `@vitest/coverage-v8` from 4.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/coverage-v8)
    
    Updates `happy-dom` from 20.10.5 to 20.10.6
    - [Release notes](https://github.com/capricorn86/happy-dom/releases)
    - [Commits](capricorn86/happy-dom@v20.10.5...v20.10.6)
    
    Updates `starlight-page-actions` from 0.6.1 to 0.6.2
    - [Release notes](https://github.com/dlcastillop/starlight-page-actions/releases)
    - [Commits](https://github.com/dlcastillop/starlight-page-actions/commits/v0.6.2/packages/starlight-page-actions)
    
    Updates `@astrojs/starlight` from 0.40.0 to 0.41.3
    - [Release notes](https://github.com/withastro/starlight/releases)
    - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md)
    - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.41.3/packages/starlight)
    
    Updates `typedoc` from 0.28.19 to 0.28.20
    - [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
    - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
    - [Commits](TypeStrong/typedoc@v0.28.19...v0.28.20)
    
    Updates `@radix-ui/react-scroll-area` from 1.2.11 to 1.2.13
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/scroll-area/CHANGELOG.md)
    - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/scroll-area)
    
    Updates `@radix-ui/react-separator` from 1.1.9 to 1.1.11
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/separator/CHANGELOG.md)
    - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/separator)
    
    Updates `@radix-ui/react-slot` from 1.2.5 to 1.3.0
    - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/slot/CHANGELOG.md)
    - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/slot)
    
    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 `lucide-react` from 1.20.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 `@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 `@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 `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 `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 `@microlink/react-json-view` from 1.31.20 to 1.31.22
    - [Release notes](https://github.com/microlinkhq/react-json-view/releases)
    - [Changelog](https://github.com/microlinkhq/react-json-view/blob/master/CHANGELOG.md)
    - [Commits](microlinkhq/react-json-view@v1.31.20...v1.31.22)
    
    Updates `react-hook-form` from 7.79.0 to 7.81.0
    - [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
    - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
    - [Commits](react-hook-form/react-hook-form@v7.79.0...v7.81.0)
    
    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 `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 `postcss` from 8.5.12 to 8.5.16
    - [Release notes](https://github.com/postcss/postcss/releases)
    - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
    - [Commits](postcss/postcss@8.5.12...8.5.16)
    
    Updates `autoprefixer` from 10.5.0 to 10.5.2
    - [Release notes](https://github.com/postcss/autoprefixer/releases)
    - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
    - [Commits](postcss/autoprefixer@10.5.0...10.5.2)
    
    Updates `@tanstack/react-devtools` from 0.10.5 to 0.10.8
    - [Release notes](https://github.com/TanStack/devtools/releases)
    - [Changelog](https://github.com/TanStack/devtools/blob/main/packages/react-devtools/CHANGELOG.md)
    - [Commits](https://github.com/TanStack/devtools/commits/@tanstack/react-devtools@0.10.8/packages/react-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 `@tanstack/devtools-vite` from 0.7.0 to 0.8.1
    - [Release notes](https://github.com/TanStack/devtools/releases)
    - [Changelog](https://github.com/TanStack/devtools/blob/main/packages/devtools-vite/CHANGELOG.md)
    - [Commits](https://github.com/TanStack/devtools/commits/@tanstack/devtools-vite@0.8.1/packages/devtools-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 `eslint` from 10.5.0 to 10.6.0
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v10.5.0...v10.6.0)
    
    Updates `globals` from 17.6.0 to 17.7.0
    - [Release notes](https://github.com/sindresorhus/globals/releases)
    - [Commits](sindresorhus/globals@v17.6.0...v17.7.0)
    
    Updates `typescript-eslint` from 8.61.0 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)
    
    ---
    updated-dependencies:
    - dependency-name: lint-staged
      dependency-version: 17.0.8
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: prettier
      dependency-version: 3.9.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: vitest
      dependency-version: 4.1.10
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@clack/prompts"
      dependency-version: 1.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@tanstack/query-core"
      dependency-version: 5.101.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@tanstack/react-query"
      dependency-version: 5.101.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@happy-dom/global-registrator"
      dependency-version: 20.10.6
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@vitest/coverage-v8"
      dependency-version: 4.1.10
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: happy-dom
      dependency-version: 20.10.6
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: starlight-page-actions
      dependency-version: 0.6.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@astrojs/starlight"
      dependency-version: 0.41.3
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: typedoc
      dependency-version: 0.28.20
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@radix-ui/react-scroll-area"
      dependency-version: 1.2.13
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@radix-ui/react-separator"
      dependency-version: 1.1.11
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@radix-ui/react-slot"
      dependency-version: 1.3.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@tanstack/react-query-devtools"
      dependency-version: 5.101.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: lucide-react
      dependency-version: 1.23.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@tailwindcss/vite"
      dependency-version: 4.3.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@vitejs/plugin-react"
      dependency-version: 6.0.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: tailwindcss
      dependency-version: 4.3.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: vite
      dependency-version: 8.1.3
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@microlink/react-json-view"
      dependency-version: 1.31.22
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: react-hook-form
      dependency-version: 7.81.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@tailwindcss/postcss"
      dependency-version: 4.3.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: next
      dependency-version: 16.2.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: postcss
      dependency-version: 8.5.16
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: autoprefixer
      dependency-version: 10.5.2
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@tanstack/react-devtools"
      dependency-version: 0.10.8
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@tanstack/react-router"
      dependency-version: 1.170.17
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: "@tanstack/devtools-vite"
      dependency-version: 0.8.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: "@tanstack/router-plugin"
      dependency-version: 1.168.19
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: dependencies
    - dependency-name: eslint
      dependency-version: 10.6.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: globals
      dependency-version: 17.7.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    - dependency-name: typescript-eslint
      dependency-version: 8.62.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 6, 2026
    @dependabot @github

    dependabot Bot commented on behalf of github Jul 6, 2026

    Copy link
    Copy Markdown
    Contributor Author

    Labels

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

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

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants