Skip to content

chore(deps-dev): bump the dev-dependencies group in /patchnotes-web with 11 updates#549

Merged
paulvanbrenk merged 1 commit intomainfrom
dependabot/npm_and_yarn/patchnotes-web/dev-dependencies-900b2805f5
Mar 18, 2026
Merged

chore(deps-dev): bump the dev-dependencies group in /patchnotes-web with 11 updates#549
paulvanbrenk merged 1 commit intomainfrom
dependabot/npm_and_yarn/patchnotes-web/dev-dependencies-900b2805f5

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2026

Bumps the dev-dependencies group in /patchnotes-web with 11 updates:

Package From To
@tailwindcss/vite 4.2.1 4.2.2
@tanstack/eslint-plugin-router 1.161.4 1.161.6
@tanstack/router-plugin 1.166.7 1.166.14
@vitejs/plugin-react 5.1.4 6.0.1
@vitest/coverage-v8 4.0.18 4.1.0
jsdom 28.1.0 29.0.0
knip 5.86.0 5.88.0
lint-staged 16.3.3 16.4.0
msw 2.12.10 2.12.13
typescript-eslint 8.57.0 8.57.1
vite 7.3.1 8.0.0

Updates @tailwindcss/vite from 4.2.1 to 4.2.2

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.2.2

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)
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)
Commits

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

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/router-plugin from 1.166.7 to 1.166.14

Changelog

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

1.166.14

Patch Changes

  • Updated dependencies [5ff4f0b]:
    • @​tanstack/router-core@​1.167.5
    • @​tanstack/react-router@​1.167.5
    • @​tanstack/router-generator@​1.166.13

1.166.13

Patch Changes

  • Add @​tanstack/intent AI agent skills and CLI entry points for Router and Start packages (#6866)

  • Updated dependencies [940151c]:

    • @​tanstack/router-core@​1.167.4
    • @​tanstack/react-router@​1.167.4
    • @​tanstack/virtual-file-routes@​1.161.7
    • @​tanstack/router-generator@​1.166.12

1.166.12

Patch Changes

  • Updated dependencies [32fcba7]:
    • @​tanstack/router-core@​1.167.3
    • @​tanstack/react-router@​1.167.3
    • @​tanstack/router-generator@​1.166.11

1.166.11

Patch Changes

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

  • Updated dependencies [838b0eb]:

    • @​tanstack/react-router@​1.167.2
    • @​tanstack/router-core@​1.167.2
    • @​tanstack/router-generator@​1.166.10
    • @​tanstack/router-utils@​1.161.6
    • @​tanstack/virtual-file-routes@​1.161.6

1.166.10

Patch Changes

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

  • Updated dependencies [ef9b241]:

... (truncated)

Commits

Updates @vitejs/plugin-react from 5.1.4 to 6.0.1

Release notes

Sourced from @​vitejs/plugin-react's releases.

plugin-react@6.0.1

Expand @rolldown/plugin-babel peer dep range (#1146)

Expanded @rolldown/plugin-babel peer dep range to include ^0.2.0.

plugin-react@6.0.0

Remove Babel Related Features (#1123)

Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel for it. With that, there are no transform applied that requires Babel. To reduce the installation size of this plugin, babel is no longer a dependency of this plugin and the related features are removed.

If you are using Babel, you can use @rolldown/plugin-babel together with this plugin:

 import { defineConfig } from 'vite'
 import react from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'
export default defineConfig({
plugins: [


react({



  babel: {



    plugins: ['@babel/plugin-proposal-throw-expressions'],



  },



}),





react(),



babel({



  plugins: ['@babel/plugin-proposal-throw-expressions'],



}),

]
})

For React compiler users, you can use reactCompilerPreset for easier setup with preconfigured filter to improve build performance:

 import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import react, { reactCompilerPreset } from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'
export default defineConfig({
plugins: [

react({

 babel: {



   plugins: ['babel-plugin-react-compiler'],



 },


}),


react(),
babel({

 presets: [reactCompilerPreset()]



</tr></table>

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react's changelog.

6.0.1 (2026-03-13)

Expand @rolldown/plugin-babel peer dep range (#1146)

Expanded @rolldown/plugin-babel peer dep range to include ^0.2.0.

6.0.0 (2026-03-12)

6.0.0-beta.0 (2026-03-03)

Remove Babel Related Features (#1123)

Vite 8+ can handle React Refresh Transform by Oxc and doesn't need Babel for it. With that, there are no transform applied that requires Babel. To reduce the installation size of this plugin, babel is no longer a dependency of this plugin and the related features are removed.

If you are using Babel, you can use @rolldown/plugin-babel together with this plugin:

 import { defineConfig } from 'vite'
 import react from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'
export default defineConfig({
plugins: [


react({



  babel: {



    plugins: ['@babel/plugin-proposal-throw-expressions'],



  },



}),





react(),



babel({



  plugins: ['@babel/plugin-proposal-throw-expressions'],



}),

]
})

For React compiler users, you can use reactCompilerPreset for easier setup with preconfigured filter to improve build performance:

 import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import react, { reactCompilerPreset } from '@vitejs/plugin-react'
+import babel from '@rolldown/plugin-babel'
export default defineConfig({
plugins: [

react({

 babel: {



   plugins: ['babel-plugin-react-compiler'],



 },



</tr></table>

... (truncated)

Commits
  • 1e94c06 release: plugin-react@6.0.1
  • 77c00c0 feat(plugin-react): expand @rolldown/plugin-babel peer dep range (#1146)
  • dcc9012 release: plugin-react@6.0.0
  • 3a17886 docs: add a link to the Oxlint rule for component exports alongside the ESLin...
  • f812135 fix(deps): update all non-major dependencies (#1140)
  • a0329a0 docs(react): clarify react compiler preset filter (#1137)
  • 704e0d3 release: plugin-react@6.0.0-beta.0
  • ac16acc feat(react)!: remove babel (#1123)
  • f01b30c fix(deps): update all non-major dependencies (#1127)
  • b1014bd chore(react): add changelog for #1124
  • Additional commits viewable in compare view

Updates @vitest/coverage-v8 from 4.0.18 to 4.1.0

Release notes

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

v4.1.0

Vitest 4.1 is out!

This release page lists all changes made to the project during the 4.1 beta. To get a review of all the new features, read our blog post.

   🚀 Features

... (truncated)

Commits
  • 4150b91 chore: release v4.1.0
  • 0c2c013 chore: release v4.1.0-beta.6
  • 689a22a fix(browser): types of getCDPSession and cdp() (#9716)
  • 94eb73b chore(deps): update eslint packages (#9615)
  • 8c96bb0 refator: update links to npmx (#9783)
  • aaf7758 chore: standardize packages README (#9776)
  • 57cbe39 chore(deps): update ast-v8-to-istanbul to v1 (#9755)
  • 79672d7 chore: release v4.1.0-beta.5
  • 1d9e3b3 chore: release v4.1.0-beta.4
  • 4ff8c6f chore(build): raise build target to the minimum supported, don't bundle utils...
  • Additional commits viewable in compare view

Updates jsdom from 28.1.0 to 29.0.0

Release notes

Sourced from jsdom's releases.

v29.0.0

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (@​thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.
Changelog

Sourced from jsdom's changelog.

29.0.0

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.
Commits
  • 00522ce Version 29.0.0
  • a217975 Use undici's request() API for XHR dispatching
  • f29722d Convert CSSStyleDeclaration to webidl2js
  • 4aaacc6 Merge in cssstyle and replace @acemir/cssom
  • 6c2769a Remove unused http(s)-proxy-agent dependencies
  • eba96b5 Update domSelector
  • 54f9995 Use --fgrep for npm run test:tuwpt:browser
  • 15e7664 Use stable ports for test:tuwpt:browser
  • 7410bdb Suppress informational WPT output when using the min reporter
  • c44377e Lazily initialize DOMSelector
  • Additional commits viewable in compare view
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


Updates knip from 5.86.0 to 5.88.0

Release notes

Sourced from knip's releases.

Release 5.88.0

  • Add Sanity plugin (#1608) (f777834a6db8530f7588e24a916f47b5d5b75673) - thanks @​jonahsnider!
  • feat: detect duplicated package.json dependencies (#1611) (dec15a7e5a37ae97732f83ca091f6373b3a62eda) - thanks @​Zamiell!
  • fix: docusaurus faster (#1616) (c7a0128ca67b66e58b045d44468e61bed5492bfa) - thanks @​Zamiell!
  • feat: raycast plugin (#1619) (52c77eedb75a565fa8ad2869af45131d51692504) - thanks @​TkDodo!
  • fix: docusaurus scripts and stylesheets (#1618) (9fa485f121d9853db4758442c738aa962e17174f) - thanks @​Zamiell!
  • Improve getPackageNameFromModuleSpecifier performance (817180ebd38d4ba51db4ec53e482a4c726edc0d1)
  • Mark Nuxt extends entries as dependencies (96f178f96490045ad5ae766193d7bbc726a5896f)
  • Simplify devDependency duplicate detection logic (99a7c9bffdfcb6ed3b58db762e00a47d1349c81d)
  • Add patch for argos (cecab2183959c60a46860a32f9c6654a9f8aa6b0)
  • Fix conflict and iterate on docusaurus plugin (d3d8cae3b3707f36ce6d5b6b1836735c020dc86c)
  • Iterate on raycast plugin (4948bf81102c8347930ebb344365d07ea350b404)
  • Oxfmt now supports .ts config files (#1621) (27a4813a9362a6da0ab344feb9f61baa4fdc4472) - thanks @​DaniFoldi!
  • Fix typos (#1622) (386b4775579f678cc8f7793da9c652d8bd98f6fc) - thanks @​deining!
  • docs: bump astro to newly released version 6 (#1623) (f941db9f03c64e60941b0217375dc0657344c563) - thanks @​deining!
  • pnpm dedupe (d1a90891a15613fa322b52ce6a199ee668833fef)
  • Release knip@5.88.0 (7aeb857f540af593051d003acdf4d52eef3b0d70)

Release 5.87.0

  • Add pkg as built-in pnpm command (#1597) (32ee5591e) - thanks @​azat-io!
  • Add oxlint.config.ts to oxlint plugin (#1598) (2951050e5) - thanks @​DaniFoldi!
  • Add oxfmt plugin (#1599) (6bd980742) - thanks @​DaniFoldi!
  • Head banger (7930467e3)
  • Add sanity to the list (4ee3d0ddd)
  • Fix minor lint issue (9e0dcd974)
  • Flatten test() (d010c5597)
  • Make toPosix a no-op on non-Windows platforms (b37112361)
  • Replace isBuiltin with startsWith('node:') in sanitizeSpecifier (e7b100aef)
  • Skip picomatch recompilation when gitignore adds no new patterns (c7870dba6)
  • Incrementally compile picomatch matchers during gitignore walk (9948284fb)
  • Identify binaries called by find -exec (#1601) (f7367fd48) - thanks @​t3chguy!
  • Identify that @babel/runtime is needed when @babel/plugin-transform-runtime is used (#1602) (ef4da0691) - thanks @​t3chguy!
  • Rename package-manager → resolvers, move find (0bd97f01f)
  • Streamline babel plugin impl (3cc192e08)
  • Detect local $schema references in changesets plugin (resolve #1335) (3a180820f)
  • Resolve Nx run-commands from cwd (resolve #1595) (e71c9acc9)
  • Fix up issue types table (resolve #1376) (20a3762d5)
  • Skip optional peerDep issues for installed deps (resolve #1545) (f554d2f30)
  • Add dim highlight opts for enum/class members, duplicates (resolve #1567) (35ce4229f)
  • Cache isGitIgnored results (75942dd0a)
  • Don't report unused files outside project set (resolve #1606) (fef625da8)
  • Fix openapi-ts dependency resolution (#1607) (663825ef4) - thanks @​jonahsnider!
  • Improve --performance and --memory output, clean up timerify calls (df0ace489)
Commits

Updates lint-staged from 16.3.3 to 16.4.0

Release notes

Sourced from lint-staged's releases.

v16.4.0

Minor Changes

v16.3.4

Patch Changes

Changelog

Sourced from lint-staged's changelog.

16.4.0

Minor Changes

16.3.4

Patch Changes

Commits
  • 445f9dd chore(changeset): release
  • d91be60 docs: update readme to use picomatch
  • b392a9f refactor: extract matchFiles and add unit tests
  • 687fc90 refactor: replace micromatch with picomatch
  • 26dadf9 chore(changeset): release
  • 9d6e827 build(deps): update dependencies
  • See full diff in compare view

Updates msw from 2.12.10 to 2.12.13

Release notes

Sourced from msw's releases.

v2.12.13 (2026-03-17)

Bug Fixes

  • GraphQL: support application/graphql-response+json response content-type (#2513) (4b8c330ac0dec25a61d21693ac38a097250f1255) @​phryneas @​kettanaito
  • HttpResponse: mark implicit content-type headers with a symbol (#2675) (98716e7b337aba0090695c2f70895f2f97afa3ee) @​kettanaito

v2.12.12 (2026-03-17)

Bug Fixes

v2.12.11 (2026-03-15)

Bug Fixes

Commits
  • 5f4ccce chore(release): v2.12.13
  • 4b8c330 fix(GraphQL): support application/graphql-response+json response `content-t...
  • 98716e7 fix(HttpResponse): mark implicit content-type headers with a symbol (#2675)
  • e6a7f81 chore(release): v2.12.12
  • 51e920e chore: fix flaky tests (#2673)
  • cd52873 fix: minor improvements (#2672)
  • b79d7ae fix: handle special characters in postinstall script (#2649)
  • 83bc40e fix: replace barrel exports with granular exports (#2671)
  • 52a0697 chore(release): v2.12.11
  • 3ccc8a3 fix(node): avoid open handles for infinite delays (#2669)
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.57.0 to 8.57.1

Release notes

Sourced from typescript-eslint's releases.

v8.57.1

8.57.1 (2026-03-16)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] no report for property on intersection type (#12126)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.57.1 (2026-03-16)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Bumps the dev-dependencies group in /patchnotes-web with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.1` | `4.2.2` |
| [@tanstack/eslint-plugin-router](https://github.com/TanStack/router/tree/HEAD/packages/eslint-plugin-router) | `1.161.4` | `1.161.6` |
| [@tanstack/router-plugin](https://github.com/TanStack/router/tree/HEAD/packages/router-plugin) | `1.166.7` | `1.166.14` |
| [@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.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `28.1.0` | `29.0.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.86.0` | `5.88.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.3.3` | `16.4.0` |
| [msw](https://github.com/mswjs/msw) | `2.12.10` | `2.12.13` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.0` | `8.57.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.3.1` | `8.0.0` |


Updates `@tailwindcss/vite` from 4.2.1 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/eslint-plugin-router` from 1.161.4 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/router-plugin` from 1.166.7 to 1.166.14
- [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.166.14/packages/router-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.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.0/packages/coverage-v8)

Updates `jsdom` from 28.1.0 to 29.0.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/v29.0.0/Changelog.md)
- [Commits](jsdom/jsdom@v28.1.0...v29.0.0)

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

Updates `lint-staged` from 16.3.3 to 16.4.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v16.3.3...v16.4.0)

Updates `msw` from 2.12.10 to 2.12.13
- [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.13)

Updates `typescript-eslint` from 8.57.0 to 8.57.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.57.1/packages/typescript-eslint)

Updates `vite` from 7.3.1 to 8.0.0
- [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.0/packages/vite)

---
updated-dependencies:
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@tanstack/eslint-plugin-router"
  dependency-version: 1.161.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@tanstack/router-plugin"
  dependency-version: 1.166.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: jsdom
  dependency-version: 29.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: knip
  dependency-version: 5.88.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: lint-staged
  dependency-version: 16.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: msw
  dependency-version: 2.12.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.57.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: vite
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 18, 2026
paulvanbrenk added a commit that referenced this pull request Mar 18, 2026
## Summary
- Merges 10 pending dependabot PRs (#545, #546, #547, #548, #549, #550,
#551, #552, #553, #555)
- Skipped #554 (nanoid 5.1.7) — ESM-only, incompatible with CJS build
- Removed `babel` config from `vite.config.ts` for
`@vitejs/plugin-react` v6 compatibility (React Compiler is now
auto-detected)
- Regenerated pnpm lock file

## Updates included
- **GitHub Actions**: actions group (2 updates)
- **patchnotes-web**: production deps (3), dev deps (11), zustand,
vitest
- **patchnotes-email**: production deps (3), dev deps
(typescript-eslint), esbuild-wasm
- **.NET**: dotnet group (12 updates)
- **Root**: dev-dependencies group (11 updates)

## Validation
- Frontend: lint ✅ (0 errors), build ✅, tests ✅ (169 passed)
- Backend: build ✅ (0 warnings), tests ✅ (488 passed)
@paulvanbrenk paulvanbrenk merged commit c8481f0 into main Mar 18, 2026
2 of 4 checks passed
@paulvanbrenk paulvanbrenk deleted the dependabot/npm_and_yarn/patchnotes-web/dev-dependencies-900b2805f5 branch March 18, 2026 20:39
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.

1 participant