Skip to content

Comments

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-523224a7af
Closed

chore(deps-dev): bump the development-dependencies group across 1 directory with 26 updates#92
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-523224a7af

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 30, 2025

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

Package From To
@biomejs/biome 2.2.5 2.3.2
@commitlint/cli 19.8.1 20.1.0
@commitlint/config-conventional 19.8.1 20.0.0
@testcontainers/localstack 11.7.1 11.7.2
@testcontainers/postgresql 11.7.1 11.7.2
@types/node 24.7.2 24.9.2
@vitest/coverage-v8 2.1.9 4.0.5
dependency-cruiser 16.10.4 17.2.0
dotenv-cli 10.0.0 11.0.0
vitest 2.1.9 4.0.5
@chromatic-com/storybook 4.1.1 4.1.2
@content-collections/next 0.2.7 0.2.9
@playwright/test 1.56.0 1.56.1
@shikijs/rehype 3.13.0 3.14.0
@storybook/addon-docs 8.6.14 10.0.1
@storybook/addon-onboarding 9.1.10 10.0.1
@storybook/nextjs 9.1.10 10.0.1
@tailwindcss/postcss 4.1.14 4.1.16
memfs 4.49.0 4.50.0
msw 2.11.5 2.11.6
playwright 1.56.0 1.56.1
storybook 9.1.10 10.0.1
tailwindcss 4.1.14 4.1.16
prisma 6.17.1 6.18.0
prisma-zod-generator 1.25.0 1.30.2
testcontainers 10.28.0 11.7.2

Updates @biomejs/biome from 2.2.5 to 2.3.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.2

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

What's Changed

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.2

Patch Changes

  • #7859 c600618 Thanks @​Netail! - Added the nursery rule noIncrementDecrement, disallows the usage of the unary operators ++ and --.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome couldn't properly parse text expressions that contained nested curly brackets. This was breaking parsing in Astro and Svelte files.

  • #7874 e617d36 Thanks @​Bertie690! - Fixed #7230: noUselessStringConcat no longer emits false positives for multi-line strings with leading + operators.

    Previously, the rule did not check for leading newlines on the + operator, emitting false positives if one occurred at the start of a line.
    Notably, formatting with operatorLinebreak="before" would move the + operators to the start of lines automatically, resulting in spurious errors whenever a multi-line string was used.

    Now, the rule correctly detects and ignores multi-line concatenations with leading operators as well, working regardless of the setting of operatorLinebreak.

    Example

    // The following code used to error if the `+` operators were at the start of lines (as opposed to the end).
    // Now, the rule correctly recognizes this as a stylistic concatenation and ignores it.
    const reallyLongStringThatShouldNotError =
      "Lorem ipsum dolor sit amet consectetur adipiscing elit." +
      "Quisque faucibus ex sapien vitae pellentesque sem placerat." +
      "In id cursus mi pretium tellus duis convallis." +
      "Tempus leo eu aenean sed diam urna tempor. Pulvinar vivamus fringilla";
  • #7786 33ffcd5 Thanks @​daivinhtran! - Fixed #7601: Properly match Grit plugin's code snippet with only one child.

  • #7901 0d17b05 Thanks @​ematipico! - Fixed #7837, where Biome Language Server panicked when opening HTML-ish files when the experimental full support is enabled.

2.3.1

Patch Changes

  • #7840 72afdfa Thanks @​ematipico! - Fixed #7838, which caused the new --css-parse-* arguments not being recognised by the ci command.

  • #7789 d5b416e Thanks @​fronterior! - Fixed the LSP method workspace/didChangeWorkspaceFolders to perform incremental updates instead of replacing the entire folder list.

  • #7852 bd254c7 Thanks @​dyc3! - Fixed #7843: The CSS parser, when tailwindDirectives is enabled, correctly parses --*: initial;.

  • #7872 0fe13fe Thanks @​dyc3! - Fixed #7861: The HTML parser will now accept Svelte attribute shorthand syntax in .svelte files.

  • #7866 7b2600b Thanks @​dyc3! - Fixed #7860: The css parser, with tailwindDirectives enabled, will now accept @plugin options.

  • #7853 fe90c78 Thanks @​dyc3! - Fixed #7848: The css parser with tailwindDirectives enabled will now correctly parse tailwind's source exclude syntax: @source not "foo.css";

  • #7878 c9f7fe5 Thanks @​ematipico! - Fixed #7857: Biome now parses <script> tags as TypeScript when analysing .astro files.

  • #7867 b42b718 Thanks @​smorimoto! - Fixed incorrect option name in HTML parser error message.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by ematipico, 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.7.2

Release notes

Sourced from @​testcontainers/localstack's releases.

v11.7.2

Changes

🧹 Maintenance

📦 Dependency Updates

Commits

Updates @testcontainers/postgresql from 11.7.1 to 11.7.2

Release notes

Sourced from @​testcontainers/postgresql's releases.

v11.7.2

Changes

🧹 Maintenance

📦 Dependency Updates

Commits

Updates @types/node from 24.7.2 to 24.9.2

Commits

Updates @vitest/coverage-v8 from 2.1.9 to 4.0.5

Release notes

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

v4.0.5

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.4

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.3

   🐞 Bug Fixes

    View changes on GitHub

v4.0.2

   🐞 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.2.0

Release notes

Sourced from dependency-cruiser's releases.

v17.2.0

✨ features

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

🐛 fixes

  • 01ddcc18 perf(graph-utl): improves the algorithm to detect cycles (#1019)
  • 9f51aca6 perf(utl): improves performance of uniqBy and uniqWith functions from O(n^2) to O(n)
  • 2049cfb7 fix: call ITranspilerWrapper.isAvailable() correctly in svelte pre process (#1020) - thanks to @​sushichan044 for spotting the issue and creating a PR for it!

👷 maintenance

  • d167549d chore: updates test coverage to the current (higher) one
  • f6c7ef5d/ e11d48d2 build(npm): updates external dependencies
  • 7925f4de ci(deps): bump actions/setup-node from 5 to 6 in the all-the-things group (#1018) (#1017)

v17.2.0-beta-1

✨ features

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

👷 maintenance

🚀 performance improvements

  • 01ddcc18 perf(graph-utl): improves the algorithm to detect cycles (#1019)
  • 9f51aca6 perf(utl): improves performance of uniqBy and uniqWith functions from O(n^2) to O(n) (#1017)

♻️ life cycle management

  • 223d0f55 chore(npm): updates external devDependencies
  • e11d48d2 build(npm): updates external dependency semver
  • 7925f4de ci(deps): bump actions/setup-node from 5 to 6 in the all-the-things group (#1018)

v17.1.0

✨ Features

  • edc92393 feat: add bun module support (#1014) (bun modules were already supported; this PR, however, makes it a lot easier to work with them)
  • c64d161a feat: add suffix option for clickable links (#1016)

Thanks to @​1000i100 for both these features!

🧹 Maintenance

  • 03437519 ci(deps): bump github/codeql-action from 3 to 4 in the all-the-things group (#1015)
  • c9592b0b doc(manifest): adds Millicent Billette to the list of contributors
  • 685d5244 doc: removes references to codeclimate

... (truncated)

Commits
  • fcd88d1 17.2.0
  • d167549 chore: updates test coverage to the current (higher) one
  • 2049cfb fix: call ITranspilerWrapper.isAvailable() correctly in svelte pre process ...
  • f6c7ef5 build(npm): updates external dependencies
  • e11d48d build(npm): updates external dependency semver
  • 01ddcc1 perf(graph-utl): improves the algorithm to detect cycles (#1019)
  • 7925f4d ci(deps): bump actions/setup-node from 5 to 6 in the all-the-things group (#1...
  • 9f51aca perf(utl): improves performance of uniqBy and uniqWith functions from O(n^2) ...
  • d316b17 feat: adds 'ancestor' matcher (#961)
  • 07b8c60 17.1.0
  • 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 vitest from 2.1.9 to 4.0.5

Release notes

Sourced from vitest's releases.

v4.0.5

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.4

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.3

   🐞 Bug Fixes

    View changes on GitHub

v4.0.2

   🐞 Bug Fixes

... (truncated)

Commits
  • ed9fc71 chore: release v4.0.5
  • b9521e0 fix: allow module in --config (#8864)
  • 0e858ba fix(module-runner): don't return node builtins for getBuiltins unconditiona...
  • a4f86f1 fix: respect ssr.noExternal when externalizing dependencies (#8862)
  • b9aabf4 fix(pool): rename groupId to groupOrder in error message (#8856)
  • 584aa71 perf: pass testfiles at once when --no-isolate --maxWorkers=1 (#8835)
  • 9b75ec5 chore: release v4.0.4
  • fb95fc7 fix(pool): capture workers stdio to logger (#8809)
  • 06208d3 fix(mocker): support mocking builtins without node: prefix (#8829)
  • 573dc06 fix(worker): rpc listener leak when isolate: false (#8821)
  • 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 vitest since your current version.


Updates @chromatic-com/storybook from 4.1.1 to 4.1.2

Release notes

Sourced from @​chromatic-com/storybook's releases.

v4.1.2

🐛 Bug Fix

  • Broaden version-range for storybook peerDependency to include 10.1.0-0 #392 (@​ndelangen)

Authors: 2

v4.1.2-next.4

⚠️ Pushed to next

  • Broaden version-range for storybook peerDependency to include 10.2.0-0 and 10.3.0-0 (@​ndelangen)

Authors: 1

v4.1.2-next.3

⚠️ Pushed to next

  • Update GitHub Actions workflow to fetch full git history and tags with optimized settings (@​ndelangen)

Authors: 1

v4.1.2-next.2

⚠️ Pushed to next

Authors: 1

v4.1.2-next.1

🐛 Bug Fix

  • Broaden version-range for storybook peerDependency to include 10.1.0-0 #392 (@​ndelangen)

Authors: 1

v4.1.2-next.0

🐛 Bug Fix

  • Main

…ectory with 26 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.5` | `2.3.2` |
| [@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.7.2` |
| [@testcontainers/postgresql](https://github.com/testcontainers/testcontainers-node) | `11.7.1` | `11.7.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.7.2` | `24.9.2` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.9` | `4.0.5` |
| [dependency-cruiser](https://github.com/sverweij/dependency-cruiser) | `16.10.4` | `17.2.0` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `10.0.0` | `11.0.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `4.0.5` |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `4.1.1` | `4.1.2` |
| [@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.56.1` |
| [@shikijs/rehype](https://github.com/shikijs/shiki/tree/HEAD/packages/rehype) | `3.13.0` | `3.14.0` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `8.6.14` | `10.0.1` |
| [@storybook/addon-onboarding](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/onboarding) | `9.1.10` | `10.0.1` |
| [@storybook/nextjs](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs) | `9.1.10` | `10.0.1` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.14` | `4.1.16` |
| [memfs](https://github.com/streamich/memfs) | `4.49.0` | `4.50.0` |
| [msw](https://github.com/mswjs/msw) | `2.11.5` | `2.11.6` |
| [playwright](https://github.com/microsoft/playwright) | `1.56.0` | `1.56.1` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `9.1.10` | `10.0.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.14` | `4.1.16` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.17.1` | `6.18.0` |
| [prisma-zod-generator](https://github.com/omar-dulaimi/prisma-zod-generator) | `1.25.0` | `1.30.2` |
| [testcontainers](https://github.com/testcontainers/testcontainers-node) | `10.28.0` | `11.7.2` |



Updates `@biomejs/biome` from 2.2.5 to 2.3.2
- [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.2/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.7.2
- [Release notes](https://github.com/testcontainers/testcontainers-node/releases)
- [Commits](testcontainers/testcontainers-node@v11.7.1...v11.7.2)

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

Updates `@types/node` from 24.7.2 to 24.9.2
- [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.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.5/packages/coverage-v8)

Updates `dependency-cruiser` from 16.10.4 to 17.2.0
- [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.2.0)

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 `vitest` from 2.1.9 to 4.0.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.5/packages/vitest)

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

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.56.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.0...v1.56.1)

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

Updates `@storybook/addon-docs` from 8.6.14 to 10.0.1
- [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.0.1/code/addons/docs)

Updates `@storybook/addon-onboarding` from 9.1.10 to 10.0.1
- [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.0.1/code/addons/onboarding)

Updates `@storybook/nextjs` from 9.1.10 to 10.0.1
- [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.0.1/code/frameworks/nextjs)

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

Updates `memfs` from 4.49.0 to 4.50.0
- [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.50.0)

Updates `msw` from 2.11.5 to 2.11.6
- [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.11.6)

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

Updates `storybook` from 9.1.10 to 10.0.1
- [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.0.1/code/core)

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

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

Updates `prisma-zod-generator` from 1.25.0 to 1.30.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...v1.30.2)

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

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.2
  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.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@testcontainers/postgresql"
  dependency-version: 11.7.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: dependency-cruiser
  dependency-version: 17.2.0
  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: vitest
  dependency-version: 4.0.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@chromatic-com/storybook"
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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.56.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@shikijs/rehype"
  dependency-version: 3.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@storybook/addon-onboarding"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@storybook/nextjs"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.1.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: memfs
  dependency-version: 4.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: msw
  dependency-version: 2.11.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: playwright
  dependency-version: 1.56.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: storybook
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.1.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prisma
  dependency-version: 6.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma-zod-generator
  dependency-version: 1.30.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: testcontainers
  dependency-version: 11.7.2
  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 Oct 30, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 3, 2025

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

@dependabot dependabot bot closed this Nov 3, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-523224a7af branch November 3, 2025 08:00
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