An open index of dependabot pull requests across open source projects.

Bump the development-dependencies group across 1 directory with 19 updates

Open
Number: #27
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: September 03, 2025 at 11:39 AM UTC
(5 days ago)
Updated: September 03, 2025 at 11:39 AM UTC
(5 days ago)
Labels:
dependencies javascript
Description:

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

Package From To
@biomejs/biome 1.9.4 2.2.2
@types/node 22.14.1 24.3.0
dotenv-cli 8.0.0 10.0.0
turbo 2.5.0 2.5.6
typescript 5.8.3 5.9.2
@content-collections/core 0.8.2 0.11.1
@content-collections/next 0.2.6 0.2.7
@mdx-js/mdx 3.1.0 3.1.1
@playwright/test 1.51.1 1.55.0
@shikijs/rehype 3.2.2 3.12.1
@tailwindcss/postcss 4.1.3 4.1.12
dotenv 16.5.0 17.2.1
postcss 8.5.3 8.5.6
start-server-and-test 2.0.11 2.0.13
tailwindcss 4.1.3 4.1.12
prisma 6.6.0 6.15.0
drizzle-kit 0.30.5 0.31.4
prisma-json-types-generator 3.2.3 3.6.0
tsx 4.19.3 4.20.5

Updates @biomejs/biome from 1.9.4 to 2.2.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.2

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    

    // After

    •  import "./sub/index";
      
    •  import "./sub/index.js";
      

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    

    // After

    •  import "./sub/index";
      
    •  import "./sub/index.js";
      

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1
    

... (truncated)

Commits

Updates @types/node from 22.14.1 to 24.3.0

Commits

Updates dotenv-cli from 8.0.0 to 10.0.0

Release notes

Sourced from dotenv-cli's releases.

v10.0.0: bump dotenv-expand

Fixes entropitor/dotenv-cli#121

v9.0.0 Bump dotenv and be quiet by default

entropitor/dotenv-cli#129

Commits

Updates turbo from 2.5.0 to 2.5.6

Release notes

Sourced from turbo's releases.

Turborepo v2.5.6

What's Changed

Docs

@​turbo/repository

Examples

Changelog

New Contributors

Full Changelog: https://github.com/vercel/turborepo/compare/v2.5.5...v2.5.6

Turborepo v2.5.6-canary.2

What's Changed

@​turbo/repository

... (truncated)

Commits
  • f02b1a8 publish 2.5.6 to registry
  • a0eed73 release(turborepo): 2.5.6-canary.2 (#10765)
  • ddaed6e fix(turbo): graceful shutdown on sighup (#10764)
  • 6f5557f feat: upgrade NestJS to v11 and migrate to ESLint flat config (#10746)
  • e34dcd4 chore(deps-dev): bump the non-monorepo group in /examples/non-monorepo with 2...
  • bc7cbe0 chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with...
  • 310565e chore(deps-dev): bump the basic group in /examples/basic with 4 updates (#10757)
  • 8113d43 chore: update to Rust 1.89.0 (#10749)
  • f9a61db release(turborepo): 2.5.6-canary.1 (#10761)
  • ae20686 fix(logs): no longer output group prefixes if no logs present (#10760)
  • Additional commits viewable in compare view

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

Updates @content-collections/core from 0.8.2 to 0.11.1

Release notes

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

@​content-collections/core@​0.11.1

Patch Changes

@​content-collections/core@​0.11.0

Minor Changes

Patch Changes

@​content-collections/core@​0.10.0

Minor Changes

Patch Changes

@​content-collections/core@​0.9.1

Patch Changes

@​content-collections/core@​0.9.0

Minor Changes

Changelog

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

0.11.1

Patch Changes

0.11.0

Minor Changes

Patch Changes

0.10.0

Minor Changes

Patch Changes

0.9.1

Patch Changes

0.9.0

Minor Changes

Commits
  • d5f0739 chore(release): #642 version packages
  • a24db7e refactor(core): remove unused code
  • 5b16eaf test(core): add missing tests for builder events
  • 475b888 fix(core): throw if a collection is defined with an invalid parser
  • 7129c62 fix(core): ensure all deprecation warnings are properly suppressed
  • 593a7ac refactor(core): #638 refactor core tests
  • f008896 chore(release): #630 version packages
  • b37a2a0 build(core): increase test timeout on all platforms
  • 86490bc feat(core): #620 add option to skip documents
  • 0bee209 build: update vitest to 3.2.4
  • Additional commits viewable in compare view

Updates @content-collections/next from 0.2.6 to 0.2.7

Release notes

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

@​content-collections/next@​0.2.7

Patch Changes

  • Updated dependencies [86490bc]:
    • @​content-collections/integrations@​0.3.0
Changelog

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

0.2.7

Patch Changes

  • Updated dependencies [86490bc]:
    • @​content-collections/integrations@​0.3.0
Commits

Updates @mdx-js/mdx from 3.1.0 to 3.1.1

Release notes

Sourced from @​mdx-js/mdx's releases.

3.1.1

Fix

Types

  • 933ab444 @mdx-js/mdx: add attributes to export/import declarations

Docs

Full Changelog: https://github.com/mdx-js/mdx/compare/3.1.0...3.1.1

Commits

Updates @playwright/test from 1.51.1 to 1.55.0

Release notes

Sourced from @​playwright/test's releases.

v1.55.0

New APIs

  • New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.

Codegen

  • Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.

Breaking Changes

  • ⚠️ Dropped support for Chromium extension manifest v2.

Miscellaneous

  • Added support for Debian 13 "Trixie".

Browser Versions

  • Chromium 140.0.7339.16
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.54.2

Highlights

microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Highlights

microsoft/playwright#36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by playwright-bot, a new releaser for @​playwright/test since your current version.


Updates @shikijs/rehype from 3.2.2 to 3.12.1

Release notes

Sourced from @​shikijs/rehype's releases.

v3.12.1

No significant changes

    View changes on GitHub

v3.12.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.11.0

   🚀 Features

    View changes on GitHub

v3.10.0

   🚀 Features

    View changes on GitHub

v3.9.2

   🚀 Features

    View changes on GitHub

v3.9.1

   🚀 Features

    View changes on GitHub

v3.9.0

   🐞 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 @​shikijs/rehype since your current version.


Updates @tailwindcss/postcss from 4.1.3 to 4.1.12

Release notes

Sourced from @​tailwindcss/postcss's releases.

v4.1.12

Fixed

Package Dependencies
Ecosystem:
npm
Version Change:
22.14.1 → 24.3.0
Update Type:
Major
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.12
Update Type:
Patch
Package:
typescript
Ecosystem:
npm
Version Change:
5.8.3 → 5.9.2
Update Type:
Minor
Package:
tailwindcss
Ecosystem:
npm
Version Change:
4.1.3 → 4.1.12
Update Type:
Patch
Package:
postcss
Ecosystem:
npm
Version Change:
8.5.3 → 8.5.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.51.1 → 1.55.0
Update Type:
Minor
Package:
prisma
Ecosystem:
npm
Version Change:
6.6.0 → 6.15.0
Update Type:
Minor
Package:
turbo
Ecosystem:
npm
Version Change:
2.5.0 → 2.5.6
Update Type:
Patch
Package:
tsx
Ecosystem:
npm
Version Change:
4.19.3 → 4.20.5
Update Type:
Minor
Package:
dotenv
Ecosystem:
npm
Version Change:
16.5.0 → 17.2.1
Update Type:
Major
Package:
dotenv-cli
Ecosystem:
npm
Version Change:
8.0.0 → 10.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
2.0.11 → 2.0.13
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.9.4 → 2.2.2
Update Type:
Major
Package:
drizzle-kit
Ecosystem:
npm
Version Change:
0.30.5 → 0.31.4
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.8.2 → 0.11.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.2.6 → 0.2.7
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.2.2 → 3.12.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.2.3 → 3.6.0
Update Type:
Minor
Package:
@mdx-js/mdx
Ecosystem:
npm
Version Change:
3.1.0 → 3.1.1
Update Type:
Patch
Technical Details
ID: 6739114
UUID: 2795630420
Node ID: PR_kwDOOuk7MM6moe9U
Host: GitHub
Repository: kernelai/next-learn
Merge State: Unknown