Skip to content

chore(deps-dev): bump the dev-deps group across 1 directory with 27 updates#598

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-deps-efbbe00250
Closed

chore(deps-dev): bump the dev-deps group across 1 directory with 27 updates#598
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-deps-efbbe00250

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps the dev-deps group with 27 updates in the / directory:

Package From To
@iconify-json/logos 1.2.10 1.2.11
@iconify-json/lucide 1.2.91 1.2.101
@iconify/tailwind4 1.2.1 1.2.3
@jimmy.codes/eslint-config 7.3.0 7.5.3
@playwright/test 1.58.2 1.59.0
@tailwindcss/vite 4.1.18 4.2.2
@tanstack/devtools-vite 0.5.1 0.6.0
@tanstack/eslint-plugin-router 1.155.0 1.161.6
@tanstack/react-devtools 0.9.6 0.10.0
@tanstack/react-query-devtools 5.91.3 5.96.0
@tanstack/react-router-devtools 1.160.2 1.166.11
@tanstack/router-vite-plugin 1.160.2 1.166.27
@vitejs/plugin-react 5.1.4 6.0.1
@vitest/coverage-v8 4.0.18 4.1.2
@vitest/ui 4.0.18 4.1.2
cspell 9.6.4 9.7.0
daisyui 5.5.18 5.5.19
eslint 9.39.2 10.1.0
gitzy 6.5.7 6.5.9
knip 5.83.1 6.1.1
lefthook 2.1.1 2.1.4
msw 2.12.10 2.12.14
oxfmt 0.33.0 0.43.0
tailwindcss 4.1.18 4.2.2
turbo 2.8.9 2.9.3
vite 8.0.0-beta.14 8.0.3
vitest 4.0.18 4.1.2

Updates @iconify-json/logos from 1.2.10 to 1.2.11

Commits

Updates @iconify-json/lucide from 1.2.91 to 1.2.101

Commits

Updates @iconify/tailwind4 from 1.2.1 to 1.2.3

Commits

Updates @jimmy.codes/eslint-config from 7.3.0 to 7.5.3

Release notes

Sourced from @​jimmy.codes/eslint-config's releases.

v7.5.3

7.5.3 (2026-03-26)

Bug Fixes

v7.5.2

7.5.2 (2026-03-14)

Bug Fixes

  • 🐛 always unwrap eslint-plugin-next (#267) (d390c9e)

v7.5.1

7.5.1 (2026-03-14)

Bug Fixes

v7.5.0

7.5.0 (2026-03-07)

Features

v7.4.0

7.4.0 (2026-02-18)

Features

Changelog

Sourced from @​jimmy.codes/eslint-config's changelog.

7.5.3 (2026-03-26)

Bug Fixes

7.5.2 (2026-03-14)

Bug Fixes

  • 🐛 always unwrap eslint-plugin-next (#267) (d390c9e)

7.5.1 (2026-03-14)

Bug Fixes

7.5.0 (2026-03-07)

Features

7.4.0 (2026-02-18)

Features

Commits

Updates @playwright/test from 1.58.2 to 1.59.0

Release notes

Sourced from @​playwright/test's releases.

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideo option:

await page.screencast.start({ path: 'video.webm' });
// ... perform actions ...
await page.screencast.stop();

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

await page.screencast.showActions({ position: 'top-right' });

screencast.showActions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and fontSize (px). Returns a disposable to stop showing actions.

Action annotations can also be enabled in test fixtures via the video option:

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
    },
  },
});

Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:

... (truncated)

Commits

Updates @tailwindcss/vite from 4.1.18 to 4.2.2

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.2.2

Added

  • Support Vite 8 in @tailwindcss/vite (#19790)

Fixed

  • Don't crash when candidates contain prototype properties like row-constructor (#19725)
  • Canonicalize calc(var(--spacing)*…) expressions into --spacing(…) (#19769)
  • Fix crash in canonicalization step when handling utilities containing @property at-rules (e.g. shadow-sm border) (#19727)
  • Skip full reload for server only modules scanned by client CSS when using @tailwindcss/vite (#19745)
  • Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g. w-1234 h-1234size-1234) (#19809)
  • Fix canonicalization resulting in empty list (e.g. w-5 h-5 size-5'' instead of size-5) (#19812)

v4.2.1

Fixed

  • Allow trailing dash in functional utility names for backwards compatibility (#19696)
  • Properly detect classes containing . characters within curly braces in MDX files (#19711)

v4.2.0

Added

  • Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (#19601)
  • Add mbs-* and mbe-* utilities for margin-block-start and margin-block-end (#19601)
  • Add scroll-pbs-* and scroll-pbe-* utilities for scroll-padding-block-start and scroll-padding-block-end (#19601)
  • Add scroll-mbs-* and scroll-mbe-* utilities for scroll-margin-block-start and scroll-margin-block-end (#19601)
  • Add border-bs-* and border-be-* utilities for border-block-start and border-block-end (#19601)
  • Add inline-*, min-inline-*, max-inline-* utilities for inline-size, min-inline-size, and max-inline-size (#19612)
  • Add block-*, min-block-*, max-block-* utilities for block-size, min-block-size, and max-block-size (#19612)
  • Add inset-s-*, inset-e-*, inset-bs-*, inset-be-* utilities for inset-inline-start, inset-inline-end, inset-block-start, and inset-block-end (#19613)
  • Add font-features-* utility for font-feature-settings (#19623)

Fixed

  • Prevent double @supports wrapper for color-mix values (#19450)
  • Allow whitespace around @source inline() argument (#19461)
  • Emit comment when source maps are saved to files when using @tailwindcss/cli (#19447)
  • Detect utilities containing capital letters followed by numbers (#19465)
  • Fix class extraction for Rails' strict locals (#19525)
  • Align @utility name validation with Oxide scanner rules (#19524)
  • Fix infinite loop when using @variant inside @custom-variant (#19633)
  • Allow multiples of .25 in aspect-* fractions (e.g. aspect-8.5/11) (#19688)
  • Ensure changes to external files listed via @source trigger a full page reload when using @tailwindcss/vite (#19670)
  • Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
  • Ensure import aliases in Astro v5 work without crashing when using @tailwindcss/vite (#19677)
  • Allow escape characters in @utility names to improve support with formatters such as Biome (#19626)
  • Fix incorrect canonicalization results when canonicalizing multiple times (#19675)

... (truncated)

Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.2.2] - 2026-03-18

Fixed

  • Don't crash when candidates contain prototype properties like row-constructor (#19725)
  • Canonicalize calc(var(--spacing)*…) expressions into --spacing(…) (#19769)
  • Fix crash in canonicalization step when handling utilities containing @property at-rules (e.g. shadow-sm border) (#19727)
  • Skip full reload for server only modules scanned by client CSS when using @tailwindcss/vite (#19745)
  • Add support for Vite 8 in @tailwindcss/vite (#19790)
  • Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g. w-1234 h-1234size-1234) (#19809)
  • Fix canonicalization resulting in empty list (e.g. w-5 h-5 size-5'' instead of size-5) (#19812)
  • Resolve tsconfig paths to allow for @import '@/path/to/file'; when using @tailwindcss/vite (#19803)

[4.2.1] - 2026-02-23

Fixed

  • Allow trailing dash in functional utility names for backwards compatibility (#19696)
  • Properly detect classes containing . characters within curly braces in MDX files (#19711)

[4.2.0] - 2026-02-18

Added

  • Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
  • Add @tailwindcss/webpack package to run Tailwind CSS as a webpack plugin (#19610)
  • Add pbs-* and pbe-* utilities for padding-block-start and padding-block-end (#19601)
  • Add mbs-* and mbe-* utilities for margin-block-start and margin-block-end (#19601)
  • Add scroll-pbs-* and scroll-pbe-* utilities for scroll-padding-block-start and scroll-padding-block-end (#19601)
  • Add scroll-mbs-* and scroll-mbe-* utilities for scroll-margin-block-start and scroll-margin-block-end (#19601)
  • Add border-bs-* and border-be-* utilities for border-block-start and border-block-end (#19601)
  • Add inline-*, min-inline-*, max-inline-* utilities for inline-size, min-inline-size, and max-inline-size (#19612)
  • Add block-*, min-block-*, max-block-* utilities for block-size, min-block-size, and max-block-size (#19612)
  • Add inset-s-*, inset-e-*, inset-bs-*, inset-be-* utilities for inset-inline-start, inset-inline-end, inset-block-start, and inset-block-end (#19613)
  • Add font-features-* utility for font-feature-settings (#19623)

Fixed

  • Prevent double @supports wrapper for color-mix values (#19450)
  • Allow whitespace around @source inline() argument (#19461)
  • Emit comment when source maps are saved to files when using @tailwindcss/cli (#19447)
  • Detect utilities containing capital letters followed by numbers (#19465)
  • Fix class extraction for Rails' strict locals (#19525)
  • Align @utility name validation with Oxide scanner rules (#19524)
  • Fix infinite loop when using @variant inside @custom-variant (#19633)
  • Allow multiples of .25 in aspect-* fractions (e.g. aspect-8.5/11) (#19688)
  • Ensure changes to external files listed via @source trigger a full page reload when using @tailwindcss/vite (#19670)
  • Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
  • Ensure import aliases in Astro v5 work without crashing when using @tailwindcss/vite (#19677)
  • Allow escape characters in @utility names to improve support with formatters such as Biome (#19626)

... (truncated)

Commits

Updates @tanstack/devtools-vite from 0.5.1 to 0.6.0

Release notes

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

@​tanstack/devtools-vite@​0.5.5

Patch Changes

  • Include skills/ directory in npm publish so npx @tanstack/intent install can discover them (#379)

@​tanstack/devtools-vite@​0.5.4

Patch Changes

  • Add @​tanstack/intent agent skills for AI coding agents (#377)

@​tanstack/devtools-vite@​0.5.3

Patch Changes

  • Updated dependencies [cf23787]:
    • @​tanstack/devtools-client@​0.0.6

@​tanstack/devtools-vite@​0.5.2

Patch Changes

  • fix an issue with dist and build matching (#354)
Changelog

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

0.6.0

Minor Changes

  • Bumps vite versions to include v8 (#388)

0.5.5

Patch Changes

  • Include skills/ directory in npm publish so npx @tanstack/intent install can discover them (#379)

0.5.4

Patch Changes

  • Add @​tanstack/intent agent skills for AI coding agents (#377)

0.5.3

Patch Changes

  • Updated dependencies [cf23787]:
    • @​tanstack/devtools-client@​0.0.6

0.5.2

Patch Changes

  • fix an issue with dist and build matching (#354)
Commits

Updates @tanstack/eslint-plugin-router from 1.155.0 to 1.161.6

Release notes

Sourced from @​tanstack/eslint-plugin-router's releases.

v1.161.4

Version 1.161.4 - 2/21/26, 11:18 AM

Changes

Fix

  • router: catch stringifyParams errors and render errorComponent (#6718) (608007a) by Abhisar Mehta

Chore

  • remove unnecessary type assertions (#6365) (ad0beaf) by Ulrich Stark
  • stabilize tests (#6492) (4ec6f50) by Manuel Schiller

Docs

  • fix syntax error in create-route-property-order.md (#6711) (31ae74f) by Ulrich Stark
  • move the react-only guides to top-level and restrict in config.json (#6713) (8bdf8d6) by Sean Cassiere
  • clarify that location hash excludes the leading # (#6707) (33f253e) by JongKyung Lee

Testing

  • vite-ecosystem-ci: add vite as direct dev depencency (#6709) (4def459) by Birk Skyum

Build

  • router-devtools-core: forward compat to vite 8 (#6717) (63f804a) by Birk Skyum

Packages

  • @​tanstack/history@​1.161.4
  • @​tanstack/router-core@​1.161.4
  • @​tanstack/solid-router@​1.161.4
  • @​tanstack/react-router@​1.161.4
  • @​tanstack/vue-router@​1.161.4
  • @​tanstack/solid-router-ssr-query@​1.161.4
  • @​tanstack/react-router-ssr-query@​1.161.4
  • @​tanstack/vue-router-ssr-query@​1.161.4
  • @​tanstack/router-ssr-query-core@​1.161.4
  • @​tanstack/zod-adapter@​1.161.4
  • @​tanstack/valibot-adapter@​1.161.4
  • @​tanstack/arktype-adapter@​1.161.4
  • @​tanstack/router-devtools@​1.161.4
  • @​tanstack/solid-router-devtools@​1.161.4
  • @​tanstack/react-router-devtools@​1.161.4
  • @​tanstack/vue-router-devtools@​1.161.4
  • @​tanstack/router-devtools-core@​1.161.4
  • @​tanstack/router-generator@​1.161.4
  • @​tanstack/virtual-file-routes@​1.161.4
  • @​tanstack/router-cli@​1.161.4

... (truncated)

Changelog

Sourced from @​tanstack/eslint-plugin-router's changelog.

1.161.6

Patch Changes

  • build: update to vite-config 5.x (rolldown) (#6926)

1.161.5

Patch Changes

  • fix: build with @​tanstack/vite-config 0.4.3 (#6923)
Commits

Updates @tanstack/react-devtools from 0.9.6 to 0.10.0

Release notes

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

@​tanstack/react-devtools@​0.9.13

Patch Changes

  • Updated dependencies [1451124]:
    • @​tanstack/devtools@​0.10.14

@​tanstack/react-devtools@​0.9.12

Patch Changes

  • Updated dependencies [644bcb3]:
    • @​tanstack/devtools@​0.10.13

@​tanstack/react-devtools@​0.9.10

Patch Changes

  • Updated dependencies [024ea7d]:
    • @​tanstack/devtools@​0.10.11

@​tanstack/react-devtools@​0.9.9

Patch Changes

  • Updated dependencies []:
    • @​tanstack/devtools@​0.10.10

@​tanstack/react-devtools@​0.9.8

Patch Changes

  • Updated dependencies []:
    • @​tanstack/devtools@​0.10.9

@​tanstack/react-devtools@​0.9.7

Patch Changes

  • Updated dependencies [d05a9af]:
    • @​tanstack/devtools@​0.10.8
Changelog

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

0.10.0

Minor Changes

  • Change the way props are passed to the plugins (#319)

Patch Changes

0.9.13

Patch Changes

  • Updated dependencies [1451124]:
    • @​tanstack/devtools@​0.10.14

0.9.12

Patch Changes

  • Updated dependencies [644bcb3]:
    • @​tanstack/devtools@​0.10.13

0.9.11

Patch Changes

  • Updated dependencies [0dfc04a]:
    • @​tanstack/devtools@​0.10.12

0.9.10

Patch Changes

  • Updated dependencies [024ea7d]:
    • @​tanstack/devtools@​0.10.11

0.9.9

Patch Changes

  • Updated dependencies []:
    • @​tanstack/devtools@​0.10.10

0.9.8

Patch Changes

... (truncated)

Commits

Updates @tanstack/react-query-devtools from 5.91.3 to 5.96.0

Release notes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

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

5.96.0

Patch Changes

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

5.95.2

Patch Changes

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

5.95.1

Patch Changes

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

5.95.0

Patch Changes

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

5.94.5

Patch Changes

  • fix(*): resolve issue about excluded build directory (#10312)

  • Updated dependencies [4b6536d]:

    • @​tanstack/query-devtools@​5.94.5
    • @​tanstack/react-query@​5.94.5

5.94.4

Patch Changes

  • chore: fixed version (#10064)

  • Updated dependencies [4c75210]:

    • @​tanstack/query-devtools@​5.94.4

... (truncated)

Commits

Updates @tanstack/react-router-devtools from 1.160.2 to 1.166.11

Release notes

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

v1.166.7

Version 1.166.7 - 3/10/26, 7:24 PM

Changes

Fix

  • router-core: null prototype input/output objects (#6882) (dadf7e9) by @​Sheraff

Chore

  • eslint: remove package-level unused-vars overrides (#6782) (d306d58) by @​Sheraff

Packages

  • @​tanstack/router-core@​1.166.7
  • @​tanstack/solid-router@​1.166.7
  • @​tanstack/react-router@​1.166.7
  • @​tanstack/vue-router@​1.166.7
  • @​tanstack/solid-router-ssr-query@​1.166.7
  • @​tanstack/react-router-ssr-query@​1.166.7
  • @​tanstack/vue-router-ssr-query@​1.166.7
  • @​tanstack/router-ssr-query-core@​1.166.7
  • @​tanstack/zod-adapter@​1.166.7
  • @​tanstack/valibot-adapter@​1.166.7
  • @​tanstack/arktype-adapter@​1.166.7
  • @​tanstack/router-devtools@​1.166.7
  • @​tanstack/solid-router-devtools@​1.166.7
  • @​tanstack/react-router-devtools@​1.166.7
  • @​tanstack/vue-router-devtools@​1.166.7
  • @​tanstack/router-devtools-core@​1.166.7
  • @​tanstack/router-generator@​1.166.7
  • @​tanstack/router-cli@​1.166.7
  • @​tanstack/router-plugin@​1.166.7
  • @​tanstack/router-vite-plugin@​1.166.7
  • @​tanstack/solid-start@​1.166.7
  • @​tanstack/solid-start-client@​1.166.7
  • @​tanstack/solid-start-server@​1.166.7
  • @​tanstack/vue-start@​1.166.7
  • @​tanstack/vue-start-client@​1.166.7
  • @​tanstack/vue-start-server@​1.166.7
  • @​tanstack/start-client-core@​1.166.7
  • @​tanstack/start-server-core@​1.166.7
  • @​tanstack/start-storage-context@​1.166.7
  • @​tanstack/react-start@​1.166.7
  • @​tanstack/react-start-client@​1.166.7
  • @​tanstack/react-start-server@​1.166.7
  • @​tanstack/start-plugin-core@​1.166.7
  • @​tanstack/start-static-server-functions@​1.166.7

... (truncated)

Changelog

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

1.166.11

Patch Changes

  • Updated dependencies [c9e1855]:
    • @​tanstack/router-devtools-core@​1.167.1
    • @​tanstack/react-router@​1.168.2
    • @​tanstack/router-core@​1.168.2

1.166.10

Patch Changes

  • Updated dependencies [0545239]:
    • @​tanstack/router-devtools-core@​1.167.0
    • @​tanstack/react-router@​1.168.0
    • @​tanstack/router-core@​1.168.0

1.166.9

Patch Changes

  • build: update to vite-config 5.x (rolldown) (

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 1, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Apr 1, 2026

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

Project Deployment Actions Updated (UTC)
react-starter Ready Ready Preview, Comment Apr 13, 2026 3:54am

Request Review

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from 185427e to df669df Compare April 2, 2026 05:59
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from df669df to be93364 Compare April 2, 2026 06:09
github-actions[bot]
github-actions bot previously approved these changes Apr 2, 2026
@github-actions github-actions bot enabled auto-merge (squash) April 2, 2026 06:09
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from be93364 to 34abe0b Compare April 6, 2026 03:42
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from 34abe0b to 3010197 Compare April 6, 2026 03:52
github-actions[bot]
github-actions bot previously approved these changes Apr 6, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from 07d3c41 to d8f9add Compare April 9, 2026 03:52
github-actions[bot]
github-actions bot previously approved these changes Apr 9, 2026
github-actions[bot]
github-actions bot previously approved these changes Apr 10, 2026
…pdates

Bumps the dev-deps group with 27 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@iconify-json/logos](https://github.com/iconify/icon-sets) | `1.2.10` | `1.2.11` |
| [@iconify-json/lucide](https://github.com/iconify/icon-sets) | `1.2.91` | `1.2.101` |
| [@iconify/tailwind4](https://github.com/iconify/iconify-tailwind/tree/HEAD/packages/plugin) | `1.2.1` | `1.2.3` |
| [@jimmy.codes/eslint-config](https://github.com/jimmy-guzman/eslint-config) | `7.3.0` | `7.5.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.18` | `4.2.2` |
| [@tanstack/devtools-vite](https://github.com/TanStack/devtools/tree/HEAD/packages/devtools-vite) | `0.5.1` | `0.6.0` |
| [@tanstack/eslint-plugin-router](https://github.com/TanStack/router/tree/HEAD/packages/eslint-plugin-router) | `1.155.0` | `1.161.6` |
| [@tanstack/react-devtools](https://github.com/TanStack/devtools/tree/HEAD/packages/react-devtools) | `0.9.6` | `0.10.0` |
| [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools) | `5.91.3` | `5.96.0` |
| [@tanstack/react-router-devtools](https://github.com/TanStack/router/tree/HEAD/packages/react-router-devtools) | `1.160.2` | `1.166.11` |
| [@tanstack/router-vite-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-vite-plugin) | `1.160.2` | `1.166.27` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.1.4` | `6.0.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.18` | `4.1.2` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.0.18` | `4.1.2` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `9.6.4` | `9.7.0` |
| [daisyui](https://github.com/saadeghi/daisyui/tree/HEAD/packages/daisyui) | `5.5.18` | `5.5.19` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.1.0` |
| [gitzy](https://github.com/jimmy-guzman/gitzy) | `6.5.7` | `6.5.9` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.83.1` | `6.1.1` |
| [lefthook](https://github.com/evilmartians/lefthook) | `2.1.1` | `2.1.4` |
| [msw](https://github.com/mswjs/msw) | `2.12.10` | `2.12.14` |
| [oxfmt](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxfmt) | `0.33.0` | `0.43.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.18` | `4.2.2` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.9` | `2.9.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.0-beta.14` | `8.0.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.18` | `4.1.2` |



Updates `@iconify-json/logos` from 1.2.10 to 1.2.11
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify-json/lucide` from 1.2.91 to 1.2.101
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify/tailwind4` from 1.2.1 to 1.2.3
- [Commits](https://github.com/iconify/iconify-tailwind/commits/HEAD/packages/plugin)

Updates `@jimmy.codes/eslint-config` from 7.3.0 to 7.5.3
- [Release notes](https://github.com/jimmy-guzman/eslint-config/releases)
- [Changelog](https://github.com/jimmy-guzman/eslint-config/blob/main/CHANGELOG.md)
- [Commits](jimmy-guzman/eslint-config@v7.3.0...v7.5.3)

Updates `@playwright/test` from 1.58.2 to 1.59.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.0)

Updates `@tailwindcss/vite` from 4.1.18 to 4.2.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.2.2/packages/@tailwindcss-vite)

Updates `@tanstack/devtools-vite` from 0.5.1 to 0.6.0
- [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@0.6.0/packages/devtools-vite)

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

Updates `@tanstack/react-devtools` from 0.9.6 to 0.10.0
- [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/devtools@0.10.0/packages/react-devtools)

Updates `@tanstack/react-query-devtools` from 5.91.3 to 5.96.0
- [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.96.0/packages/react-query-devtools)

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

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

Updates `@vitejs/plugin-react` from 5.1.4 to 6.0.1
- [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.1/packages/plugin-react)

Updates `@vitest/coverage-v8` from 4.0.18 to 4.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.2/packages/coverage-v8)

Updates `@vitest/ui` from 4.0.18 to 4.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.2/packages/ui)

Updates `cspell` from 9.6.4 to 9.7.0
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v9.7.0/packages/cspell)

Updates `daisyui` from 5.5.18 to 5.5.19
- [Release notes](https://github.com/saadeghi/daisyui/releases)
- [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/saadeghi/daisyui/commits/v5.5.19/packages/daisyui)

Updates `eslint` from 9.39.2 to 10.1.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v10.1.0)

Updates `gitzy` from 6.5.7 to 6.5.9
- [Release notes](https://github.com/jimmy-guzman/gitzy/releases)
- [Changelog](https://github.com/jimmy-guzman/gitzy/blob/main/CHANGELOG.md)
- [Commits](jimmy-guzman/gitzy@v6.5.7...v6.5.9)

Updates `knip` from 5.83.1 to 6.1.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.1.1/packages/knip)

Updates `lefthook` from 2.1.1 to 2.1.4
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v2.1.1...v2.1.4)

Updates `msw` from 2.12.10 to 2.12.14
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.12.10...v2.12.14)

Updates `oxfmt` from 0.33.0 to 0.43.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxfmt/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxfmt_v0.43.0/npm/oxfmt)

Updates `tailwindcss` from 4.1.18 to 4.2.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.2.2/packages/tailwindcss)

Updates `turbo` from 2.8.9 to 2.9.3
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.9...v2.9.3)

Updates `vite` from 8.0.0-beta.14 to 8.0.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/create-vite@8.0.3/packages/vite)

Updates `vitest` from 4.0.18 to 4.1.2
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.2/packages/vitest)

---
updated-dependencies:
- dependency-name: "@iconify-json/logos"
  dependency-version: 1.2.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@iconify-json/lucide"
  dependency-version: 1.2.101
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@iconify/tailwind4"
  dependency-version: 1.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@jimmy.codes/eslint-config"
  dependency-version: 7.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@playwright/test"
  dependency-version: 1.59.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/devtools-vite"
  dependency-version: 0.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/eslint-plugin-router"
  dependency-version: 1.161.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/react-devtools"
  dependency-version: 0.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/react-query-devtools"
  dependency-version: 5.96.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/react-router-devtools"
  dependency-version: 1.166.11
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@tanstack/router-vite-plugin"
  dependency-version: 1.166.27
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@vitest/ui"
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: cspell
  dependency-version: 9.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: daisyui
  dependency-version: 5.5.19
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: eslint
  dependency-version: 10.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: gitzy
  dependency-version: 6.5.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: knip
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: lefthook
  dependency-version: 2.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: msw
  dependency-version: 2.12.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: oxfmt
  dependency-version: 0.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: tailwindcss
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: turbo
  dependency-version: 2.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: vite
  dependency-version: 8.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: vitest
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch from 32c5814 to 6105422 Compare April 13, 2026 03:54
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 14, 2026

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

@dependabot dependabot bot closed this Apr 14, 2026
auto-merge was automatically disabled April 14, 2026 03:40

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-deps-efbbe00250 branch April 14, 2026 03:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants