Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 9, 2026

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

Package From To
@biomejs/biome 1.9.4 2.4.14
playwright-core 1.58.2 1.59.1
puppeteer 24.37.3 24.43.0
turbo 2.8.3 2.9.12
@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.5
@playwright/test 1.58.1 1.59.1
@shikijs/rehype 3.22.0 4.0.2
@tailwindcss/postcss 4.1.18 4.3.0
@types/node 22.15.14 25.6.2
baseline-browser-mapping 2.9.19 2.10.29
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.12.2
oxlint 1.43.0 1.63.0
postcss 8.5.3 8.5.14
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.18 4.3.0
typescript 5.9.3 6.0.3

Updates @biomejs/biome from 1.9.4 to 2.4.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.14

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

    A blank line was added even though the group ':NODE:' doesn't match any imports here. :BLANK_LINE: between never-matched groups and matched groups are now ignored.

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

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.43.0

24.43.0 (2026-05-06)

🎉 Features

🛠️ Fixes

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.13.0 to 2.13.1

puppeteer: v24.43.0

24.43.0 (2026-05-06)

🎉 Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.13.0 to 2.13.1
      • puppeteer-core bumped from 24.42.0 to 24.43.0

puppeteer-core: v24.42.0

24.42.0 (2026-04-20)

🎉 Features

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.43.0 (2026-05-06)

🎉 Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 2.13.0 to 2.13.1

🛠️ Fixes

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

... (truncated)

Commits
  • 07e2a1d chore: release main (#14902)
  • 8451125 chore: Add a special treatment for EPERM error for windows test (#14943)
  • 924eb69 test: Add form node to an accessibility tree (#14942)
  • e54b90a chore: add iframe blocking tests (#14926)
  • fec05a0 feat: support checkboxes and radios in locator.fill (#14939)
  • d6a1003 fix: do not set global offline flag for allowlist (#14931)
  • 2ee0f10 chore(deps-dev): bump the dev-dependencies group with 5 updates (#14935)
  • 7e57729 chore(deps): bump the all group in /website with 11 updates (#14936)
  • e51242d chore(deps): bump github/codeql-action from 4.35.2 to 4.35.3 in the all group...
  • 50438cf fix: roll to Firefox 150.0.1 (#14923)
  • Additional commits viewable in compare view

Updates turbo from 2.8.3 to 2.9.12

Release notes

Sourced from turbo's releases.

Turborepo v2.9.12

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.11...v2.9.12

Turborepo v2.9.11

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.10...v2.9.11

Turborepo v2.9.11-canary.7

What's Changed

Changelog

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

Release notes

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

v0.9.5

What's Changed

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

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

... (truncated)

Commits
  • 994e174 v0.9.5
  • 9dbfe1b Merge pull request #131 from lingualdev/i18next-selector-api-element-access-f...
  • bfd0c44 Fix i18next selector api formatted element access
  • 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
  • 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' },
      },
</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

…ectory with 24 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.9.4` | `2.4.14` |
| [playwright-core](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.37.3` | `24.43.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.8.3` | `2.9.12` |
| [@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.5` |
| [@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.3.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.15.14` | `25.6.2` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.9.19` | `2.10.29` |
| [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.12.2` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.43.0` | `1.63.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.14` |
| [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.18` | `4.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |



Updates `@biomejs/biome` from 1.9.4 to 2.4.14
- [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.14/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.43.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.43.0)

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

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.5
- [Release notes](https://github.com/lingualdev/i18n-check/releases)
- [Commits](lingualdev/i18n-check@v0.8.19...v0.9.5)

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

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

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

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.12.2
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/knip@6.12.2/packages/knip)

Updates `oxlint` from 1.43.0 to 1.63.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.63.0/npm/oxlint)

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

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.18 to 4.3.0
- [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.3.0/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.14
  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.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: turbo
  dependency-version: 2.9.12
  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.5
  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.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.6.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.29
  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.12.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: oxlint
  dependency-version: 1.63.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.14
  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.3.0
  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 May 9, 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