Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 31 updates#106

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

chore(deps-dev): bump the development-dependencies group across 1 directory with 31 updates#106
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-d62db8038d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Dec 1, 2025

Bumps the development-dependencies group with 31 updates in the / directory:

Package From To
@biomejs/biome 2.2.5 2.3.8
@commitlint/cli 19.8.1 20.1.0
@commitlint/config-conventional 19.8.1 20.0.0
@testcontainers/localstack 11.7.1 11.9.0
@testcontainers/postgresql 11.7.1 11.9.0
@types/node 24.7.2 24.10.1
@vitest/coverage-v8 2.1.9 4.0.14
dependency-cruiser 16.10.4 17.3.2
dotenv-cli 10.0.0 11.0.0
turbo 2.5.8 2.6.1
vitest 2.1.9 4.0.14
@chromatic-com/storybook 4.1.1 4.1.3
@content-collections/core 0.11.1 0.12.0
@content-collections/next 0.2.7 0.2.9
@playwright/test 1.56.0 1.57.0
@shikijs/rehype 3.13.0 3.17.1
@storybook/addon-docs 8.6.14 10.1.2
@storybook/addon-onboarding 9.1.10 10.1.2
@storybook/nextjs 9.1.10 10.1.2
@tailwindcss/postcss 4.1.14 4.1.17
autoprefixer 10.4.21 10.4.22
memfs 4.49.0 4.51.1
msw 2.11.5 2.12.3
playwright 1.56.0 1.57.0
start-server-and-test 2.1.2 2.1.3
storybook 9.1.10 10.1.2
tailwindcss 4.1.14 4.1.17
tsx 4.20.6 4.21.0
prisma 6.17.1 7.0.1
prisma-zod-generator 1.25.0 2.1.2
testcontainers 10.28.0 11.9.0

Updates @biomejs/biome from 2.2.5 to 2.3.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.8

2.3.8

Patch Changes

  • #8188 4ca088c Thanks @​ematipico! - Fixed #7390, where Biome couldn't apply the correct configuration passed via --config-path.

    If you have multiple root configuration files, running any command with --config-path will now apply the chosen configuration file.

  • #8171 79adaea Thanks @​dibashthapa! - Added the new rule noLeakedRender. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.

    For example, the following code triggers the rule because the component would render 0:

    const Component = () => {
      const count = 0;
      return <div>{count && <span>Count: {count}</span>}</div>;
    };
  • #8116 b537918 Thanks @​Netail! - Added the nursery rule noDuplicatedSpreadProps. Disallow JSX prop spreading the same identifier multiple times.

    Invalid:

    <div {...props} something="else" {...props} />
  • #8256 f1e4696 Thanks @​cormacrelf! - Fixed a bug where logs were discarded (the kind from --log-level=info etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.

  • #8226 3f19b52 Thanks @​dyc3! - Fixed #8222: The HTML parser, with Vue directives enabled, can now parse v-slot shorthand syntax, e.g. \<template #foo>.

  • #8007 182ecdc Thanks @​brandonmcconnell! - Added support for dollar-sign-prefixed filenames in the useFilenamingConvention rule.

    Biome now allows filenames starting with the dollar-sign (e.g. $postId.tsx) by default to support naming conventions used by frameworks such as TanStack Start for file-based-routing.

  • #8218 91484d1 Thanks @​hirokiokada77! - Added the noMultiStr rule, which disallows creating multiline strings by escaping newlines.

    Invalid:

    const foo =
      "Line 1\n\
    Line 2";

    Valid:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.8

Patch Changes

  • #8188 4ca088c Thanks @​ematipico! - Fixed #7390, where Biome couldn't apply the correct configuration passed via --config-path.

    If you have multiple root configuration files, running any command with --config-path will now apply the chosen configuration file.

  • #8171 79adaea Thanks @​dibashthapa! - Added the new rule noLeakedRender. This rule helps prevent potential leaks when rendering components that use binary expressions or ternaries.

    For example, the following code triggers the rule because the component would render 0:

    const Component = () => {
      const count = 0;
      return <div>{count && <span>Count: {count}</span>}</div>;
    };
  • #8116 b537918 Thanks @​Netail! - Added the nursery rule noDuplicatedSpreadProps. Disallow JSX prop spreading the same identifier multiple times.

    Invalid:

    <div {...props} something="else" {...props} />
  • #8256 f1e4696 Thanks @​cormacrelf! - Fixed a bug where logs were discarded (the kind from --log-level=info etc.). This is a regression introduced after an internal refactor that wasn't adequately tested.

  • #8226 3f19b52 Thanks @​dyc3! - Fixed #8222: The HTML parser, with Vue directives enabled, can now parse v-slot shorthand syntax, e.g. \<template #foo>.

  • #8007 182ecdc Thanks @​brandonmcconnell! - Added support for dollar-sign-prefixed filenames in the useFilenamingConvention rule.

    Biome now allows filenames starting with the dollar-sign (e.g. $postId.tsx) by default to support naming conventions used by frameworks such as TanStack Start for file-based-routing.

  • #8218 91484d1 Thanks @​hirokiokada77! - Added the noMultiStr rule, which disallows creating multiline strings by escaping newlines.

    Invalid:

    const foo =
      "Line 1\n\
    Line 2";

    Valid:

    const foo = "Line 1\nLine 2";
    const bar = `Line 1

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


Updates @commitlint/cli from 19.8.1 to 20.1.0

Release notes

Sourced from @​commitlint/cli's releases.

v20.1.0

20.1.0 (2025-09-30)

Features

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.0.0...v20.1.0

v20.0.0

20.0.0 (2025-09-25)

Features

BREAKING CHANGES

  • when lines contain URLs exceeding the maximum line length body-max-line-length will be ignored

Full Changelog: conventional-changelog/commitlint@v19.9.1...v20.0.0

v19.9.1

19.9.1 (2025-08-29)

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

20.1.0 (2025-09-30)

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

20.0.0 (2025-09-25)

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

Commits

Updates @commitlint/config-conventional from 19.8.1 to 20.0.0

Release notes

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

v20.0.0

20.0.0 (2025-09-25)

Features

BREAKING CHANGES

  • when lines contain URLs exceeding the maximum line length body-max-line-length will be ignored

Full Changelog: conventional-changelog/commitlint@v19.9.1...v20.0.0

v19.9.1

19.9.1 (2025-08-29)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v19.9.0...v19.9.1

v19.9.0

19.9.0 (2025-08-26)

Features

Chore, docs, etc.

... (truncated)

Changelog

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

20.0.0 (2025-09-25)

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

Commits

Updates @testcontainers/localstack from 11.7.1 to 11.9.0

Release notes

Sourced from @​testcontainers/localstack's releases.

v11.9.0

Changes

🚀 Features

📦 Dependency Updates

v11.8.1

Changes

🐛 Bug Fixes

📦 Dependency Updates

v11.8.0

Changes

🚀 Features

📦 Dependency Updates

v11.7.2

Changes

🧹 Maintenance

📦 Dependency Updates

... (truncated)

Commits
  • dc51ad7 Bump the dependencies group with 20 updates (#1184)
  • 94641de Bump the dependencies group across 21 directories with 23 updates (#1187)
  • d41fa7e Bump mkdocs-material from 9.6.23 to 9.7.0 in the dependencies group (#1186)
  • 3f1cbb5 Add support for identity token authentication (#1179)
  • c5c54ad v11.8.1
  • 737f3c2 Fix Redis container to accept command override (#1155)
  • bf41f91 Bump the dependencies group with 10 updates (#1176)
  • d78f2e8 Bump mkdocs-material from 9.6.22 to 9.6.23 in the dependencies group (#1178)
  • 4af91d9 Bump the dependencies group across 28 directories with 31 updates (#1177)
  • 1e32a14 v11.8.0
  • Additional commits viewable in compare view

Updates @testcontainers/postgresql from 11.7.1 to 11.9.0

Release notes

Sourced from @​testcontainers/postgresql's releases.

v11.9.0

Changes

🚀 Features

📦 Dependency Updates

v11.8.1

Changes

🐛 Bug Fixes

📦 Dependency Updates

v11.8.0

Changes

🚀 Features

📦 Dependency Updates

v11.7.2

Changes

🧹 Maintenance

📦 Dependency Updates

... (truncated)

Commits
  • dc51ad7 Bump the dependencies group with 20 updates (#1184)
  • 94641de Bump the dependencies group across 21 directories with 23 updates (#1187)
  • d41fa7e Bump mkdocs-material from 9.6.23 to 9.7.0 in the dependencies group (#1186)
  • 3f1cbb5 Add support for identity token authentication (#1179)
  • c5c54ad v11.8.1
  • 737f3c2 Fix Redis container to accept command override (#1155)
  • bf41f91 Bump the dependencies group with 10 updates (#1176)
  • d78f2e8 Bump mkdocs-material from 9.6.22 to 9.6.23 in the dependencies group (#1178)
  • 4af91d9 Bump the dependencies group across 28 directories with 31 updates (#1177)
  • 1e32a14 v11.8.0
  • Additional commits viewable in compare view

Updates @types/node from 24.7.2 to 24.10.1

Commits

Updates @vitest/coverage-v8 from 2.1.9 to 4.0.14

Release notes

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

v4.0.14

   🚀 Experimental Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.13

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.12

   🐞 Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitest/coverage-v8 since your current version.


Updates dependency-cruiser from 16.10.4 to 17.3.2

Release notes

Sourced from dependency-cruiser's releases.

v17.3.2

🏭 refactoring

  • 5f296fd3 perf(enrich/derive/reachable): shallow copies modules in stead of cloning them
  • 12e99557 refactor(enrich/derive/reachable): replaces reduce with easier-to-understand for loop
  • 55538ecf refactor(derive): consolidates dependents derivation modules
  • 78969657 perf(graph-utl): skips unnecessary function call for module lookups
  • 5422cc68 perf(extract): refactors initial file gathering to be slightly more efficient
  • 6394a4ce perf(utl): improves performance of filesystem walker

📖 documentation

  • 22702400 doc(cache/content strategy): corrects type annotation of the diff function

🧹 chores

  • 205913a0 chore(npm): updates external devDependencies
  • 4ff8dd9e chore(devDependencies): replaces npm-run-all by npm-run-all2
  • 4d3f36c3 ci(deps): bump actions/checkout from 5 to 6 in the all-the-things group (#1025)
  • 03683e22 chore: regenerates package-lock

v17.3.1

👷 maintenance

  • 7ae24764/ bb4c6e9a perf: algorithm updates (#1022)
  • 211faaff/ 6b0cf131 build(npm): updates external dependencies

v17.3.0

✨ features

  • 410f3bfd feat: adds support for detecting imports done with process.getBuiltinModule (#1021)

🐛 fixes

  • 93d5bac4 fix: Using the API but tsconfig does not work (#1010)

👷 maintenance

  • 83397d96 chore(report): ignore eslint warning we're not going to fix anytime soon anyway
  • e6208a27 chore(test): ups code coverage requirements to current values
  • 75f92774 chore(npm): pins (all) dependencies again
  • 0b2a1a41 doc(manifest): adds Kentaro Suzuki to the list of contributors

FWIW this is also the first release with, on GitHub, their new 'release immutability' enabled.

v17.2.0

✨ features

  • d316b175 feat: adds 'ancestor' matcher (#961)

🐛 fixes

... (truncated)

Commits
  • 092cf86 17.3.2
  • 205913a chore(npm): updates external devDependencies
  • 5f296fd perf(enrich/derive/reachable): shallow copies modules in stead of cloning them
  • 12e9955 refactor(enrich/derive/reachable): replaces reduce with easier-to-understand ...
  • 55538ec refactor(derive): consolidates dependents derivation modules
  • 7896965 perf(graph-utl): skips unnecessary function call for module lookups
  • 2270240 doc(cache/content strategy): corrects type annotation of the diff function
  • 5422cc6 perf(extract): refactors initial file gathering to be slightly more efficient
  • 6394a4c perf(utl): improves performance of filesystem walker
  • 4ff8dd9 chore(devDependencies): replaces npm-run-all by npm-run-all2
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for dependency-cruiser since your current version.


Updates dotenv-cli from 10.0.0 to 11.0.0

Commits

Updates turbo from 2.5.8 to 2.6.1

Release notes

Sourced from turbo's releases.

Turborepo v2.6.1

What's Changed

Docs

@​turbo/codemod

@​turbo/repository

Examples

Changelog

…ectory with 31 updates

Bumps the development-dependencies group with 31 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.5` | `2.3.8` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.8.1` | `20.1.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.8.1` | `20.0.0` |
| [@testcontainers/localstack](https://github.com/testcontainers/testcontainers-node) | `11.7.1` | `11.9.0` |
| [@testcontainers/postgresql](https://github.com/testcontainers/testcontainers-node) | `11.7.1` | `11.9.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.7.2` | `24.10.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.9` | `4.0.14` |
| [dependency-cruiser](https://github.com/sverweij/dependency-cruiser) | `16.10.4` | `17.3.2` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `10.0.0` | `11.0.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.5.8` | `2.6.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `4.0.14` |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `4.1.1` | `4.1.3` |
| [@content-collections/core](https://github.com/sdorra/content-collections/tree/HEAD/packages/core) | `0.11.1` | `0.12.0` |
| [@content-collections/next](https://github.com/sdorra/content-collections/tree/HEAD/packages/next) | `0.2.7` | `0.2.9` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.0` | `1.57.0` |
| [@shikijs/rehype](https://github.com/shikijs/shiki/tree/HEAD/packages/rehype) | `3.13.0` | `3.17.1` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `8.6.14` | `10.1.2` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `9.1.10` | `10.1.2` |
| [@storybook/nextjs](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs) | `9.1.10` | `10.1.2` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.14` | `4.1.17` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.22` |
| [memfs](https://github.com/streamich/memfs) | `4.49.0` | `4.51.1` |
| [msw](https://github.com/mswjs/msw) | `2.11.5` | `2.12.3` |
| [playwright](https://github.com/microsoft/playwright) | `1.56.0` | `1.57.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.1.2` | `2.1.3` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `9.1.10` | `10.1.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.14` | `4.1.17` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.21.0` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.17.1` | `7.0.1` |
| [prisma-zod-generator](https://github.com/omar-dulaimi/prisma-zod-generator) | `1.25.0` | `2.1.2` |
| [testcontainers](https://github.com/testcontainers/testcontainers-node) | `10.28.0` | `11.9.0` |



Updates `@biomejs/biome` from 2.2.5 to 2.3.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.3.8/packages/@biomejs/biome)

Updates `@commitlint/cli` from 19.8.1 to 20.1.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.1.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.8.1 to 20.0.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.0.0/@commitlint/config-conventional)

Updates `@testcontainers/localstack` from 11.7.1 to 11.9.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v11.7.1...v11.9.0)

Updates `@testcontainers/postgresql` from 11.7.1 to 11.9.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v11.7.1...v11.9.0)

Updates `@types/node` from 24.7.2 to 24.10.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

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

Updates `dependency-cruiser` from 16.10.4 to 17.3.2
- [Release notes](https://github.com/sverweij/dependency-cruiser/releases)
- [Changelog](https://github.com/sverweij/dependency-cruiser/blob/main/CHANGELOG.md)
- [Commits](sverweij/dependency-cruiser@v16.10.4...v17.3.2)

Updates `dotenv-cli` from 10.0.0 to 11.0.0
- [Release notes](https://github.com/entropitor/dotenv-cli/releases)
- [Commits](entropitor/dotenv-cli@v10.0.0...v11.0.0)

Updates `turbo` from 2.5.8 to 2.6.1
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.5.8...v2.6.1)

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

Updates `@chromatic-com/storybook` from 4.1.1 to 4.1.3
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/v4.1.3/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v4.1.1...v4.1.3)

Updates `@content-collections/core` from 0.11.1 to 0.12.0
- [Release notes](https://github.com/sdorra/content-collections/releases)
- [Changelog](https://github.com/sdorra/content-collections/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/sdorra/content-collections/commits/@content-collections/core@0.12.0/packages/core)

Updates `@content-collections/next` from 0.2.7 to 0.2.9
- [Release notes](https://github.com/sdorra/content-collections/releases)
- [Changelog](https://github.com/sdorra/content-collections/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/sdorra/content-collections/commits/@content-collections/next@0.2.9/packages/next)

Updates `@playwright/test` from 1.56.0 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.0...v1.57.0)

Updates `@shikijs/rehype` from 3.13.0 to 3.17.1
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v3.17.1/packages/rehype)

Updates `@storybook/addon-docs` from 8.6.14 to 10.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.2/code/addons/docs)

Updates `@storybook/addon-onboarding` from 9.1.10 to 10.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.2/code/addons/onboarding)

Updates `@storybook/nextjs` from 9.1.10 to 10.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.2/code/frameworks/nextjs)

Updates `@tailwindcss/postcss` from 4.1.14 to 4.1.17
- [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.1.17/packages/@tailwindcss-postcss)

Updates `autoprefixer` from 10.4.21 to 10.4.22
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.21...10.4.22)

Updates `memfs` from 4.49.0 to 4.51.1
- [Release notes](https://github.com/streamich/memfs/releases)
- [Changelog](https://github.com/streamich/memfs/blob/master/CHANGELOG.md)
- [Commits](streamich/memfs@v4.49.0...v4.51.1)

Updates `msw` from 2.11.5 to 2.12.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.11.5...v2.12.3)

Updates `playwright` from 1.56.0 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.0...v1.57.0)

Updates `start-server-and-test` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/bahmutov/start-server-and-test/releases)
- [Commits](bahmutov/start-server-and-test@v2.1.2...v2.1.3)

Updates `storybook` from 9.1.10 to 10.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.2/code/core)

Updates `tailwindcss` from 4.1.14 to 4.1.17
- [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.1.17/packages/tailwindcss)

Updates `tsx` from 4.20.6 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.21.0)

Updates `prisma` from 6.17.1 to 7.0.1
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.0.1/packages/cli)

Updates `prisma-zod-generator` from 1.25.0 to 2.1.2
- [Release notes](https://github.com/omar-dulaimi/prisma-zod-generator/releases)
- [Changelog](https://github.com/omar-dulaimi/prisma-zod-generator/blob/master/CHANGELOG.md)
- [Commits](omar-dulaimi/prisma-zod-generator@v1.25.0...v2.1.2)

Updates `testcontainers` from 10.28.0 to 11.9.0
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v10.28.0...v11.9.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@commitlint/cli"
  dependency-version: 20.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@testcontainers/localstack"
  dependency-version: 11.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@testcontainers/postgresql"
  dependency-version: 11.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.14
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: dependency-cruiser
  dependency-version: 17.3.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: dotenv-cli
  dependency-version: 11.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: vitest
  dependency-version: 4.0.14
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@chromatic-com/storybook"
  dependency-version: 4.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@content-collections/core"
  dependency-version: 0.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@content-collections/next"
  dependency-version: 0.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@shikijs/rehype"
  dependency-version: 3.17.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-onboarding"
  dependency-version: 10.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@storybook/nextjs"
  dependency-version: 10.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: memfs
  dependency-version: 4.51.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: msw
  dependency-version: 2.12.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: playwright
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: start-server-and-test
  dependency-version: 2.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-version: 10.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.1.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: prisma-zod-generator
  dependency-version: 2.1.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: testcontainers
  dependency-version: 11.9.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-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 Dec 1, 2025
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