Skip to content

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

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/development-dependencies-4154e4e5de
Open

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

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 29, 2026

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

Package From To
@biomejs/biome 1.9.4 2.4.13
playwright-core 1.58.2 1.59.1
puppeteer 24.37.3 24.42.0
turbo 2.8.3 2.9.6
@content-collections/core 0.8.2 0.15.0
@content-collections/next 0.2.10 0.2.11
@lingual/i18n-check 0.8.19 0.9.4
@playwright/test 1.58.1 1.59.1
@shikijs/rehype 3.22.0 4.0.2
@tailwindcss/postcss 4.1.18 4.2.4
@types/node 22.15.14 25.6.0
autoprefixer 10.4.21 10.5.0
baseline-browser-mapping 2.9.19 2.10.24
dotenv 16.6.1 17.4.2
dotenv-cli 8.0.0 11.0.0
drizzle-kit 0.31.8 0.31.10
knip 5.83.0 6.8.0
oxlint 1.43.0 1.62.0
postcss 8.5.3 8.5.12
prettier 3.5.3 3.8.3
prisma 7.3.0 7.8.0
prisma-json-types-generator 4.1.1 5.0.0
start-server-and-test 2.1.3 3.0.2
tailwindcss 4.1.5 4.2.4
typescript 5.9.3 6.0.3

Updates @biomejs/biome from 1.9.4 to 2.4.13

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.13

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.13

Patch Changes

  • #9969 c5eb92b Thanks @​officialasishkumar! - Added the nursery rule noUnnecessaryTemplateExpression, which disallows template literals that only contain string literal expressions. These can be replaced with a simpler string literal.

    For example, the following code triggers the rule:

    const a = `${"hello"}`; // can be 'hello'
    const b = `${"prefix"}_suffix`; // can be 'prefix_suffix'
    const c = `${"a"}${"b"}`; // can be 'ab'
  • #10037 f785e8c Thanks @​minseong0324! - Fixed #9810: noMisleadingReturnType no longer reports false positives on a getter with a matching setter in the same namespace.

    class Store {
      get status(): string {
        if (Math.random() > 0.5) return "loading";
        return "idle";
      }
      set status(v: string) {}
    }
  • #10084 5e2f90c Thanks @​jiwon79! - Fixed #10034: noUselessEscapeInRegex no longer flags escapes of ClassSetReservedPunctuator characters (&, !, #, %, ,, :, ;, <, =, >, @, `, ~) inside v-flag character classes as useless. These characters are reserved as individual code points in v-mode, so the escape is required.

    The following pattern is now considered valid:

    /[a-z\&]/v;
  • #10063 c9ffa16 Thanks @​Netail! - Added extra rule sources from ESLint CSS. biome migrate eslint should do a bit better detecting rules in your eslint configurations.

  • #10035 946b50e Thanks @​Netail! - Fixed #10032: useIframeSandbox now flags if there's no initializer value.

  • #9865 68fb8d4 Thanks @​dyc3! - Added the new nursery rule useDomNodeTextContent, which prefers textContent over innerText for DOM node text access and destructuring.

    For example, the following snippet triggers the rule:

    const foo = node.innerText;
  • #10023 bd1e74f Thanks @​ematipico! - Added a new nursery rule noReactNativeDeepImports that disallows deep imports from the react-native package. Internal paths like react-native/Libraries/... are not part of the public API and may change between versions.

    For example, the following code triggers the rule:

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​biomejs/biome since your current version.


Updates playwright-core from 1.58.2 to 1.59.1

Release notes

Sourced from playwright-core's releases.

v1.59.1

Bug Fixes

  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#39990)

v1.59.0

🎬 Screencast

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

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

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

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

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

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

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

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

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

... (truncated)

Commits
  • d466ac5 chore: mark v1.59.1 (#40005)
  • 530e7e5 cherry-pick(#4004): fix(cli): kill-all should kill dashboard
  • 9aa216c cherry-pick(#39994): Revert "fix(windows): hide console window when spawning ...
  • 01b2b15 cherry-pick(#39980): chore: more release notes fixes
  • a5cb6c9 cherry-pick(#39972): chore: expose browser.bind and browser.unbind APIs
  • 99a17b5 cherry-pick(#39975): chore: support opening .trace files via .link indirection
  • 43607c3 cherry-pick(#39974): chore(webkit): update Safari user-agent version to 26.4
  • 62cabe1 cherry-pick(#39969): chore(npm): include all *.md from lib (#39970)
  • 0c65a75 cherry-pick(#39968): chore: screencast.showActions api
  • f04155b cherry-pick(#39958): chore: release notes for langs v1.59
  • Additional commits viewable in compare view

Updates puppeteer from 24.37.3 to 24.42.0

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.42.0

24.42.0 (2026-04-20)

🎉 Features

🛠️ Fixes

  • remove PartitionAllocSchedulerLoopQuarantineTaskControlledPurge from disabled features (#14872) (c9909a5)
  • roll to Chrome 147.0.7727.57 (#14869) (51c4305)

puppeteer: v24.42.0

24.42.0 (2026-04-20)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.41.0 to 24.42.0

puppeteer-core: v24.41.0

24.41.0 (2026-04-15)

🎉 Features

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.42.0 (2026-04-20)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.41.0 to 24.42.0

🎉 Features

🛠️ Fixes

  • remove PartitionAllocSchedulerLoopQuarantineTaskControlledPurge from disabled features (#14872) (c9909a5)
  • roll to Chrome 147.0.7727.57 (#14869) (51c4305)

24.41.0 (2026-04-15)

🎉 Features

Dependencies

  • The following workspace dependencies were updated

... (truncated)

Commits

Updates turbo from 2.8.3 to 2.9.6

Release notes

Sourced from turbo's releases.

Turborepo v2.9.6

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.5...v2.9.6

Turborepo v2.9.6-canary.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.2...v2.9.6-canary.3

Turborepo v2.9.6-canary.2

What's Changed

create-turbo

Examples

Changelog

Full Changelog: vercel/turborepo@v2.9.6-canary.1...v2.9.6-canary.2

Turborepo v2.9.6-canary.1

What's Changed

@​turbo/telemetry

... (truncated)

Commits

Updates @content-collections/core from 0.8.2 to 0.15.0

Release notes

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

@​content-collections/core@​0.15.0

Minor Changes

Patch Changes

@​content-collections/core@​0.14.3

Patch Changes

  • #734 fbe2f14 Thanks @​nihgwu! - Shorten cache directory names to avoid ENAMETOOLONG on deeply nested documents.

@​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

... (truncated)

Changelog

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

0.15.0

Minor Changes

Patch Changes

0.14.3

Patch Changes

  • #734 fbe2f14 Thanks @​nihgwu! - Shorten cache directory names to avoid ENAMETOOLONG on deeply nested documents.

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

... (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.4

Release notes

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

v0.9.4

What's Changed

Enable to define type alias in next-intl check

Adds the option to define next-intl type aliases when indirect function calls use a type alias instead of the built in type. Introduces the option --next-intl-translation-fn-type-alias to define all the used type aliases.

import { NextIntlTranslateFnAlias } from './types';
const indirectFnCall = (t: NextIntlTranslateFnAlias<'SomeNameSpace'>) => {
// use the t function...
};

Enables to pass multiple type aliases:

--next-intl-translation-fn-type-alias NextIntlTranslateFnAlias NextIntlTranslateFnOtherAlias

Support for array element access in i18next selector api

Supports using the i18next api selector with element access:

t($ => $["a.b.c"]);

New Contributors

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

v0.9.3

What's Changed

Enable to extract selector api defined keys in i18next.

</tr></table> 

... (truncated)

Commits
  • 360e3f3 Update release workflow
  • 16858f6 Update relase workflow
  • f4a0547 v0.9.4
  • 9695f73 Merge pull request #127 from nakrovati/chore/update-deps
  • 93a001b Merge pull request #129 from nakrovati/chore/update-ci-actions
  • 9eca0eb chore(deps): dedupe deps
  • 337f3d8 chore(deps): bump dev deps
  • 693f759 chore(deps): bump chalk, commander and glob
  • 8e340cd chore(deps): replace js-yaml with yaml
  • 6f8c188 chore: update PNPM to 10.28.2
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​lingual/i18n-check since your current version.


Updates @playwright/test from 1.58.1 to 1.59.1

Release notes

Sourced from @​playwright/test's releases.

v1.59.1

Bug Fixes

  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#39990)

v1.59.0

🎬 Screencast

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

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

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

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

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

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

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

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

// playwright.config.ts
export default defineConfig({
  use: {
    video: {
      mode: 'on',
      show: {
        actions: { position: 'top-left' },
        test: { position: 'top-right' },
      },
</...
Description has been truncated

…ectory with 25 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.4.13` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.37.3` | `24.42.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.3` | `2.9.6` |
| [@content-collections/core](https://github.com/sdorra/content-collections/tree/HEAD/packages/core) | `0.8.2` | `0.15.0` |
| [@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.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.1` | `1.59.1` |
| [@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.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.14` | `25.6.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.5.0` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.9.19` | `2.10.24` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.6.1` | `17.4.2` |
| [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.10` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.83.0` | `6.8.0` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.43.0` | `1.62.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.12` |
| [prettier](https://github.com/prettier/prettier) | `3.5.3` | `3.8.3` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.3.0` | `7.8.0` |
| [prisma-json-types-generator](https://github.com/arthurfiorette/prisma-json-types-generator) | `4.1.1` | `5.0.0` |
| [start-server-and-test](https://github.com/bahmutov/start-server-and-test) | `2.1.3` | `3.0.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.5` | `4.2.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |



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

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

Updates `puppeteer` from 24.37.3 to 24.42.0
- [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.42.0)

Updates `turbo` from 2.8.3 to 2.9.6
- [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.9.6)

Updates `@content-collections/core` from 0.8.2 to 0.15.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.15.0/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.4
- [Release notes](https://github.com/lingualdev/i18n-check/releases)
- [Commits](lingualdev/i18n-check@v0.8.19...v0.9.4)

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

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.4
- [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.4/packages/@tailwindcss-postcss)

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

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

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

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

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.10
- [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.10)

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

Updates `oxlint` from 1.43.0 to 1.62.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.62.0/npm/oxlint)

Updates `postcss` from 8.5.3 to 8.5.12
- [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.12)

Updates `prettier` from 3.5.3 to 3.8.3
- [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.3)

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

Updates `prisma-json-types-generator` from 4.1.1 to 5.0.0
- [Release notes](https://github.com/arthurfiorette/prisma-json-types-generator/releases)
- [Commits](arthurfiorette/prisma-json-types-generator@v4.1.1...v5.0.0)

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

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

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.13
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: playwright-core
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: puppeteer
  dependency-version: 24.42.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.9.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@content-collections/core"
  dependency-version: 0.15.0
  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.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: autoprefixer
  dependency-version: 10.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.24
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: dotenv
  dependency-version: 17.4.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: drizzle-kit
  dependency-version: 0.31.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: knip
  dependency-version: 6.8.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: oxlint
  dependency-version: 1.62.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prisma-json-types-generator
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: start-server-and-test
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: tailwindcss
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  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 Apr 29, 2026
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