Skip to content

build(deps-dev): bump the development-dependencies group across 1 directory with 23 updates#23

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

build(deps-dev): bump the development-dependencies group across 1 directory with 23 updates#23
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-4b332c3ec8

Conversation

@dependabot
Copy link

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

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

Package From To
@biomejs/biome 1.9.4 2.4.7
puppeteer 24.37.3 24.39.1
turbo 2.8.3 2.8.17
@content-collections/core 0.8.2 0.14.2
@content-collections/next 0.2.10 0.2.11
@lingual/i18n-check 0.8.19 0.9.3
@playwright/test 1.58.1 1.58.2
@shikijs/rehype 3.22.0 4.0.2
@tailwindcss/postcss 4.1.18 4.2.1
@types/node 22.15.14 25.5.0
@types/react 19.1.3 19.2.14
@types/react-dom 19.1.3 19.2.3
autoprefixer 10.4.21 10.4.27
baseline-browser-mapping 2.9.19 2.10.8
dotenv 16.6.1 17.3.1
dotenv-cli 8.0.0 11.0.0
drizzle-kit 0.31.8 0.31.9
knip 5.83.0 5.86.0
postcss 8.5.3 8.5.8
prettier 3.5.3 3.8.1
prisma 7.3.0 7.5.0
start-server-and-test 2.1.3 2.1.5
tailwindcss 4.1.5 4.2.1

Updates @biomejs/biome from 1.9.4 to 2.4.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.7

2.4.7

Patch Changes

  • #9318 3ac98eb Thanks @​ematipico! - Added new nursery lint rule useBaseline for CSS. The rule reports when CSS properties, property values, at-rules, media conditions, functions, or pseudo-selectors are not part of the configured Baseline tier.

    For example, at the time of writing, the rule will trigger for the use of accent-color because it has limited availability:

    a {
      accent-color: bar;
    }
  • #9272 2de8362 Thanks @​terror! - Added the nursery rule useImportsFirst that enforces all import statements appear before any non-import statements in a module. Inspired by the eslint-plugin-import import/first rule.

    // Invalid
    import { foo } from "foo";
    const bar = 1;
    import { baz } from "baz"; // ← flagged
    // Valid
    import { foo } from "foo";
    import { baz } from "baz";
    const bar = 1;

  • #9285 93ea495 Thanks @​dyc3! - Fixed noUndeclaredVariables from erroneously flagging props only used in the template section in Vue SFCs

  • #9435 6c5a8f2 Thanks @​siketyan! - Fixed #9432: Values referenced as a JSX element in Astro/Vue/Svelte templates are now correctly detected; noUnusedImports and useImportType rules no longer reports these values as false positives.

  • #9362 fc9ca4c Thanks @​Netail! - Extra rule source references. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #9392 b881fea Thanks @​g-ortuno! - Fixed biomejs/biome-vscode#959: LSP now correctly resolves project directory when configurationPath points to a configuration file outside the workspace.

  • #9420 a1c46af Thanks @​ematipico! - Fixed #9385: noUselessEscapeInString no longer incorrectly flags valid CSS hex escapes (e.g. \e7bb) as useless. The rule now recognizes all hex digits (0-9, a-f, A-F) as valid escape characters in CSS strings.

  • #9416 f2581b8 Thanks @​ematipico! - Fixed #9131, #9112, #9166: the formatter no longer crashes or produces corrupt output when a JS file with experimentalEmbeddedSnippetsEnabled contains non-embedded template literals alongside embedded ones (e.g. console.log(\test`)next tographql(`...`)`).

  • #9344 cb4d7d7 Thanks @​ematipico! - Fixed #6921: noShadow no longer incorrectly flags destructured variable bindings in sibling scopes as shadowing. Object destructuring, array destructuring, nested patterns, and rest elements are now properly recognized as declarations.

  • #9360 bc5dd99 Thanks @​ematipico! - Fixed #7125: The rule noShadow no longer incorrectly flags parameters in TypeScript constructor and method overload signatures.

  • #9371 29cac17 Thanks @​ematipico! - Fixed #5279: Tabs in diagnostic diff output are now rendered at a consistent width across context and changed lines, fixing visual misalignment when source files use tab indentation.

  • #9043 61e2a02 Thanks @​dyc3! - Fixed #8897: Biome now parses @utility names containing / when Tailwind directives are enabled.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.7

Patch Changes

  • #9318 3ac98eb Thanks @​ematipico! - Added new nursery lint rule useBaseline for CSS. The rule reports when CSS properties, property values, at-rules, media conditions, functions, or pseudo-selectors are not part of the configured Baseline tier.

    For example, at the time of writing, the rule will trigger for the use of accent-color because it has limited availability:

    a {
      accent-color: bar;
    }
  • #9272 2de8362 Thanks @​terror! - Added the nursery rule useImportsFirst that enforces all import statements appear before any non-import statements in a module. Inspired by the eslint-plugin-import import/first rule.

    // Invalid
    import { foo } from "foo";
    const bar = 1;
    import { baz } from "baz"; // ← flagged
    // Valid
    import { foo } from "foo";
    import { baz } from "baz";
    const bar = 1;

  • #9285 93ea495 Thanks @​dyc3! - Fixed noUndeclaredVariables from erroneously flagging props only used in the template section in Vue SFCs

  • #9435 6c5a8f2 Thanks @​siketyan! - Fixed #9432: Values referenced as a JSX element in Astro/Vue/Svelte templates are now correctly detected; noUnusedImports and useImportType rules no longer reports these values as false positives.

  • #9362 fc9ca4c Thanks @​Netail! - Extra rule source references. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #9392 b881fea Thanks @​g-ortuno! - Fixed biomejs/biome-vscode#959: LSP now correctly resolves project directory when configurationPath points to a configuration file outside the workspace.

  • #9420 a1c46af Thanks @​ematipico! - Fixed #9385: noUselessEscapeInString no longer incorrectly flags valid CSS hex escapes (e.g. \e7bb) as useless. The rule now recognizes all hex digits (0-9, a-f, A-F) as valid escape characters in CSS strings.

  • #9416 f2581b8 Thanks @​ematipico! - Fixed #9131, #9112, #9166: the formatter no longer crashes or produces corrupt output when a JS file with experimentalEmbeddedSnippetsEnabled contains non-embedded template literals alongside embedded ones (e.g. console.log(\test`)next tographql(`...`)`).

  • #9344 cb4d7d7 Thanks @​ematipico! - Fixed #6921: noShadow no longer incorrectly flags destructured variable bindings in sibling scopes as shadowing. Object destructuring, array destructuring, nested patterns, and rest elements are now properly recognized as declarations.

  • #9360 bc5dd99 Thanks @​ematipico! - Fixed #7125: The rule noShadow no longer incorrectly flags parameters in TypeScript constructor and method overload signatures.

  • #9371 29cac17 Thanks @​ematipico! - Fixed #5279: Tabs in diagnostic diff output are now rendered at a consistent width across context and changed lines, fixing visual misalignment when source files use tab indentation.

  • #9043 61e2a02 Thanks @​dyc3! - Fixed #8897: Biome now parses @utility names containing / when Tailwind directives are enabled.

  • #9354 930c858 Thanks @​denbezrukov! - Improved CSS parser recovery for invalid unicode-range values that mix wildcard ranges with range intervals. For example, Biome now reports clearer diagnostics for invalid syntax like:

... (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 puppeteer from 24.37.3 to 24.39.1

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.39.1

24.39.1 (2026-03-13)

🛠️ Fixes

puppeteer: v24.39.1

24.39.1 (2026-03-13)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.39.0 to 24.39.1

puppeteer-core: v24.39.0

24.39.0 (2026-03-10)

🎉 Features

🛠️ Fixes

puppeteer: v24.39.0

24.39.0 (2026-03-10)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.39.1 (2026-03-13)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.39.0 to 24.39.1

🛠️ Fixes

24.39.0 (2026-03-10)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.38.0 to 24.39.0

🎉 Features

🛠️ Fixes

24.38.0 (2026-03-04)

... (truncated)

Commits

Updates turbo from 2.8.3 to 2.8.17

Release notes

Sourced from turbo's releases.

Turborepo v2.8.17

Full Changelog: vercel/turborepo@v2.8.17-canary.16...v2.8.17

Turborepo v2.8.17-canary.16

What's Changed

create-turbo

Full Changelog: vercel/turborepo@v2.8.17-canary.15...v2.8.17-canary.16

Turborepo v2.8.17-canary.15

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.17-canary.14...v2.8.17-canary.15

Turborepo v2.8.17-canary.14

What's Changed

create-turbo

Full Changelog: vercel/turborepo@v2.8.17-canary.13...v2.8.17-canary.14

Turborepo v2.8.17-canary.13

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.17-canary.12...v2.8.17-canary.13

Turborepo v2.8.17-canary.12

... (truncated)

Commits

Updates @content-collections/core from 0.8.2 to 0.14.2

Release notes

Sourced from @​content-collections/core's releases.

@​content-collections/core@​0.14.2

Patch Changes

@​content-collections/core@​0.14.1

Patch Changes

@​content-collections/core@​0.14.0

Minor Changes

@​content-collections/core@​0.13.1

Patch Changes

  • #699 6aa4fec Thanks @​fauziralpiandi! - Handle Windows backslashes in import paths by automatically normalizing them to forward slashes in import creator functions.

@​content-collections/core@​0.13.0

Minor Changes

Patch Changes

@​content-collections/core@​0.12.0

Minor Changes

Patch Changes

@​content-collections/core@​0.11.1

Patch Changes

... (truncated)

Changelog

Sourced from @​content-collections/core's changelog.

0.14.2

Patch Changes

0.14.1

Patch Changes

0.14.0

Minor Changes

0.13.1

Patch Changes

  • #699 6aa4fec Thanks @​fauziralpiandi! - Handle Windows backslashes in import paths by automatically normalizing them to forward slashes in import creator functions.

0.13.0

Minor Changes

Patch Changes

0.12.0

Minor Changes

Patch Changes

... (truncated)

Commits

Updates @content-collections/next from 0.2.10 to 0.2.11

Release notes

Sourced from @​content-collections/next's releases.

@​content-collections/next@​0.2.11

Patch Changes

  • Updated dependencies [9d68701]:
    • @​content-collections/integrations@​0.5.0
Changelog

Sourced from @​content-collections/next's changelog.

0.2.11

Patch Changes

  • Updated dependencies [9d68701]:
    • @​content-collections/integrations@​0.5.0
Commits

Updates @lingual/i18n-check from 0.8.19 to 0.9.3

Release notes

Sourced from @​lingual/i18n-check's releases.

v0.9.3

What's Changed

Enable to extract selector api defined keys in i18next.

t(($) => $.a.b.c);
t(function ($) {
return $.a.b.c;
});
t(($) => {
return $.a.b.c;
});


Full Changelog: lingualdev/i18n-check@v0.9.2...v0.9.3

v0.9.2

Release fix

This is a re-release of v0.9.0 which was missing the "dist" build, because of a mistake due to changes in the release workflow. Previous version v0.9.1 also had a potential misconfiguration in the release. Both v0.9.0 and v0.9.1 have been deprecated on npm.

v0.9.0

What's Changed

Full Changelog: lingualdev/i18n-check@v0.8.19...v0.9.0

v0.9.0-beta.1

Full Changelog: lingualdev/i18n-check@v0.8.18...v0.9.0-beta.1

Commits
  • c83ef7f v0.9.3
  • dc110f2 Merge pull request #120 from lingualdev/issue-112-i18next-selector-api
  • 0cb3158 Enable i18next selector api keys to be parsed
  • ac5fe4b Merge pull request #119 from lingualdev/issue-114-i18next-context
  • 5181e8b Enable i18next context option to be processed
  • dadc675 Merge pull request #118 from lingualdev/update-dependencies-2026-03-07
  • f85bdc3 Update dependencies
  • c9deba1 v0.9.2
  • 9046bf1 Switch to prepublishOnly
  • 3ad089e Add prepublish and bump to 0.9.1
  • Additional commits viewable in compare view

Updates @playwright/test from 1.58.1 to 1.58.2

Release notes

Sourced from @​playwright/test's releases.

v1.58.2

Highlights

#39121 fix(trace viewer): make paths via stdin work #39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0
Commits

Updates @shikijs/rehype from 3.22.0 to 4.0.2

Release notes

Sourced from @​shikijs/rehype's releases.

v4.0.2

   🐞 Bug Fixes

    View changes on GitHub

v4.0.1

   🐞 Bug Fixes

    View changes on GitHub

v4.0.0

   🚨 Breaking Changes

   🚀 Features

    View changes on GitHub

v3.23.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @tailwindcss/postcss from 4.1.18 to 4.2.1

Release notes

Sourced from @​tailwindcss/postcss's releases.

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-*, Description has been truncated

…ectory with 23 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.4.7` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.37.3` | `24.39.1` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.3` | `2.8.17` |
| [@content-collections/core](https://github.com/sdorra/content-collections/tree/HEAD/packages/core) | `0.8.2` | `0.14.2` |
| [@content-collections/next](https://github.com/sdorra/content-collections/tree/HEAD/packages/next) | `0.2.10` | `0.2.11` |
| [@lingual/i18n-check](https://github.com/lingualdev/i18n-check) | `0.8.19` | `0.9.3` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.1` | `1.58.2` |
| [@shikijs/rehype](https://github.com/shikijs/shiki/tree/HEAD/packages/rehype) | `3.22.0` | `4.0.2` |
| [@tailwindcss/postcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss) | `4.1.18` | `4.2.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.14` | `25.5.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.3` | `19.2.14` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.3` | `19.2.3` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.27` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.9.19` | `2.10.8` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.6.1` | `17.3.1` |
| [dotenv-cli](https://github.com/entropitor/dotenv-cli) | `8.0.0` | `11.0.0` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.31.8` | `0.31.9` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.83.0` | `5.86.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.8` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.8.1` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.3.0` | `7.5.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.1.3` | `2.1.5` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.5` | `4.2.1` |



Updates `@biomejs/biome` from 1.9.4 to 2.4.7
- [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.4.7/packages/@biomejs/biome)

Updates `puppeteer` from 24.37.3 to 24.39.1
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.37.3...puppeteer-v24.39.1)

Updates `turbo` from 2.8.3 to 2.8.17
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.3...v2.8.17)

Updates `@content-collections/core` from 0.8.2 to 0.14.2
- [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.14.2/packages/core)

Updates `@content-collections/next` from 0.2.10 to 0.2.11
- [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.11/packages/next)

Updates `@lingual/i18n-check` from 0.8.19 to 0.9.3
- [Release notes](https://github.com/lingualdev/i18n-check/releases)
- [Commits](lingualdev/i18n-check@v0.8.19...v0.9.3)

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

Updates `@shikijs/rehype` from 3.22.0 to 4.0.2
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.0.2/packages/rehype)

Updates `@tailwindcss/postcss` from 4.1.18 to 4.2.1
- [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.1/packages/@tailwindcss-postcss)

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

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

Updates `@types/react-dom` from 19.1.3 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `autoprefixer` from 10.4.21 to 10.4.27
- [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.27)

Updates `baseline-browser-mapping` from 2.9.19 to 2.10.8
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.9.19...v2.10.8)

Updates `dotenv` from 16.6.1 to 17.3.1
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.6.1...v17.3.1)

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

Updates `drizzle-kit` from 0.31.8 to 0.31.9
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.31.8...drizzle-kit@0.31.9)

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

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

Updates `prettier` from 3.5.3 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.3...3.8.1)

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

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

Updates `tailwindcss` from 4.1.5 to 4.2.1
- [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.1/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: puppeteer
  dependency-version: 24.39.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@content-collections/core"
  dependency-version: 0.14.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@content-collections/next"
  dependency-version: 0.2.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@lingual/i18n-check"
  dependency-version: 0.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.58.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@shikijs/rehype"
  dependency-version: 4.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@tailwindcss/postcss"
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.5.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.27
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: dotenv
  dependency-version: 17.3.1
  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: drizzle-kit
  dependency-version: 0.31.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: knip
  dependency-version: 5.86.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma
  dependency-version: 7.5.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.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Mar 16, 2026
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 17, 2026

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

@dependabot dependabot bot closed this Mar 17, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-4b332c3ec8 branch March 17, 2026 10:37
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