Skip to content

chore(deps): bump the dev-dependencies group across 1 directory with 13 updates#107

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-8416814bc6
Open

chore(deps): bump the dev-dependencies group across 1 directory with 13 updates#107
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/dev-dependencies-8416814bc6

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 4, 2026

Bumps the dev-dependencies group with 13 updates in the / directory:

Package From To
@biomejs/biome 2.3.13 2.3.14
@commitlint/cli 20.3.1 20.4.1
@commitlint/config-conventional 20.3.1 20.4.1
@commitlint/types 20.3.1 20.4.0
turbo 2.7.6 2.8.3
@golevelup/ts-jest 1.2.0 1.2.1
@nestjs/testing 11.1.12 11.1.13
@swc/core 1.15.10 1.15.11
@testcontainers/postgresql 10.28.0 11.11.0
@types/node 22.19.7 25.2.0
testcontainers 10.28.0 11.11.0
jest-expo 54.0.16 54.0.17
react-test-renderer 19.1.0 19.2.4

Updates @biomejs/biome from 2.3.13 to 2.3.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.14

2.3.14

Patch Changes

  • #8921 29e2435 Thanks @​siketyan! - Fixed #8759: The useConsistentTypeDefinitions rule no longer converts empty object type declarations into interfaces, as it will conflict with the noEmptyInterface rule and can cause an infinite loop when both rules are enabled.

  • #8928 ccaeac4 Thanks @​taga3s! - Added the nursery rule useGlobalThis. This rule enforces using globalThis over window, self and global.

  • #8602 9a18daa Thanks @​dyc3! - Added the new nursery rule noVueArrowFuncInWatch. This rule forbids using arrow functions in watchers in Vue components, because arrow functions do not give access to the component instance (via this), while regular functions do.

  • #8905 9b1eea8 Thanks @​ryan-m-walker! - Fixed #8428: Improved parsing recovery when encountering qualified rules inside CSS @page at-rule blocks.

  • #8900 f788cff Thanks @​mdevils! - Fixed #8802: useExhaustiveDependencies now correctly suggests dependencies without including callback-scoped variables or method names.

    When accessing object properties with a callback-scoped variable, only the object path is suggested:

    // Now correctly suggests `props.value` instead of `props.value[day]`
    useMemo(() => {
      return WeekdayValues.filter((day) => props.value[day]);
    }, [props.value]);

    When calling methods on objects, only the object is suggested as a dependency:

    // Now correctly suggests `props.data` instead of `props.data.forEach`
    useMemo(() => {
      props.data.forEach((item) => console.log(item));
    }, [props.data]);
  • #8913 e1e20ea Thanks @​dyc3! - Fixed #8363: HTML parser no longer crashes when encountering a < character followed by a digit in text content (e.g., <12 months). The parser now correctly emits an "Unescaped < bracket character" error instead of treating <12 as a tag name and crashing.

  • #8910 2fb63a4 Thanks @​dyc3! - Fixed #8774: Type aliases with generic parameters that have extends constraints now properly indent comments after the equals sign.

    Previously, comments after the = in type aliases with extends constraints were not indented:

    -type A<B, C extends D> = // Some comment
    -undefined;
    +type A<B, C extends D> =
    +    // Some comment
    +    undefined;
  • #8916 ea4bd04 Thanks @​ryan-m-walker! - Fixed #4013, where comments in member chains caused unnecessary line breaks.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.14

Patch Changes

  • #8921 29e2435 Thanks @​siketyan! - Fixed #8759: The useConsistentTypeDefinitions rule no longer converts empty object type declarations into interfaces, as it will conflict with the noEmptyInterface rule and can cause an infinite loop when both rules are enabled.

  • #8928 ccaeac4 Thanks @​taga3s! - Added the nursery rule useGlobalThis. This rule enforces using globalThis over window, self and global.

  • #8602 9a18daa Thanks @​dyc3! - Added the new nursery rule noVueArrowFuncInWatch. This rule forbids using arrow functions in watchers in Vue components, because arrow functions do not give access to the component instance (via this), while regular functions do.

  • #8905 9b1eea8 Thanks @​ryan-m-walker! - Fixed #8428: Improved parsing recovery when encountering qualified rules inside CSS @page at-rule blocks.

  • #8900 f788cff Thanks @​mdevils! - Fixed #8802: useExhaustiveDependencies now correctly suggests dependencies without including callback-scoped variables or method names.

    When accessing object properties with a callback-scoped variable, only the object path is suggested:

    // Now correctly suggests `props.value` instead of `props.value[day]`
    useMemo(() => {
      return WeekdayValues.filter((day) => props.value[day]);
    }, [props.value]);

    When calling methods on objects, only the object is suggested as a dependency:

    // Now correctly suggests `props.data` instead of `props.data.forEach`
    useMemo(() => {
      props.data.forEach((item) => console.log(item));
    }, [props.data]);
  • #8913 e1e20ea Thanks @​dyc3! - Fixed #8363: HTML parser no longer crashes when encountering a < character followed by a digit in text content (e.g., <12 months). The parser now correctly emits an "Unescaped < bracket character" error instead of treating <12 as a tag name and crashing.

  • #8910 2fb63a4 Thanks @​dyc3! - Fixed #8774: Type aliases with generic parameters that have extends constraints now properly indent comments after the equals sign.

    Previously, comments after the = in type aliases with extends constraints were not indented:

    -type A<B, C extends D> = // Some comment
    -undefined;
    +type A<B, C extends D> =
    +    // Some comment
    +    undefined;
  • #8916 ea4bd04 Thanks @​ryan-m-walker! - Fixed #4013, where comments in member chains caused unnecessary line breaks.

    // Before

... (truncated)

Commits

Updates @commitlint/cli from 20.3.1 to 20.4.1

Release notes

Sourced from @​commitlint/cli's releases.

v20.4.1

20.4.1 (2026-02-02)

Reverts

Chore

Full Changelog: conventional-changelog/commitlint@v20.4.0...v20.4.1

v20.4.0

20.4.0 (2026-01-30)

Features

Refactor

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.3.1...v20.4.0

Changelog

Sourced from @​commitlint/cli's changelog.

20.4.1 (2026-02-02)

Note: Version bump only for package @​commitlint/cli

20.4.0 (2026-01-30)

Features

Commits

Updates @commitlint/config-conventional from 20.3.1 to 20.4.1

Release notes

Sourced from @​commitlint/config-conventional's releases.

v20.4.1

20.4.1 (2026-02-02)

Reverts

Chore

Full Changelog: conventional-changelog/commitlint@v20.4.0...v20.4.1

v20.4.0

20.4.0 (2026-01-30)

Features

Refactor

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.3.1...v20.4.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

20.4.1 (2026-02-02)

Note: Version bump only for package @​commitlint/config-conventional

20.4.0 (2026-01-30)

Features

Commits

Updates @commitlint/types from 20.3.1 to 20.4.0

Release notes

Sourced from @​commitlint/types's releases.

v20.4.0

20.4.0 (2026-01-30)

Features

Refactor

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.3.1...v20.4.0

Changelog

Sourced from @​commitlint/types's changelog.

20.4.0 (2026-01-30)

Features

Commits

Updates turbo from 2.7.6 to 2.8.3

Release notes

Sourced from turbo's releases.

Turborepo v2.8.3

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.2...v2.8.3

Turborepo v2.8.3-canary.4

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.3-canary.3...v2.8.3-canary.4

Turborepo v2.8.3-canary.3

What's Changed

Changelog

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

Turborepo v2.8.3-canary.2

What's Changed

Changelog

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

Turborepo v2.8.3-canary.1

... (truncated)

Commits

Updates @golevelup/ts-jest from 1.2.0 to 1.2.1

Release notes

Sourced from @​golevelup/ts-jest's releases.

@​golevelup/ts-jest@​1.2.1

Patch Changes

  • Includes dev dependencies upgrades such as Vite, Vitest and nestjs CLI and a new Stripe upgrade
Commits
  • 36e2f47 chore(release): version packages (#1130)
  • e44298a chore: devDependencies upgrade such as Vite and Stripe upgrade (#1129)
  • 99b849e docs(stripe): fix for wrong import in example (#1123)
  • cf48def chore(release): version packages (#1122)
  • 45be403 chore: bump version deployment for several packages with deps updated
  • afcc69e chore: update deps (#1121)
  • 3cbf0b9 chore(release): version packages (#1119)
  • 08c1deb chore: bump google cloud pubsub package
  • 8c15f80 feat(@​golevelup/nestjs-google-cloud-pubsub): batching, async initialization, ...
  • See full diff in compare view

Updates @nestjs/testing from 11.1.12 to 11.1.13

Release notes

Sourced from @​nestjs/testing's releases.

v11.1.13 (2026-02-03)

Bug fixes

  • common
    • #16230 fix(common): Fix skipping maxArrayLength and maxStringLength option (@​chojs23)

Enhancements

Dependencies

Committers: 6

Commits

Updates @swc/core from 1.15.10 to 1.15.11

Changelog

Sourced from @​swc/core's changelog.

[1.15.11] - 2026-01-27

Bug Fixes

  • (es/codegen) Emit leading comments for JSX elements, fragments, and empty expressions (#11488) (1520633)

  • (es/decorators) Invoke addInitializer callbacks for decorated fields (#11495) (11cfe4d)

  • (es/es3) Visit export decl body even if name is not reserved (#11473) (9113fff)

  • (es/es3) Remove duplicate code (#11499) (fbee775)

  • (es/minifier) Treat new expression with empty class as side-effect free (#11455) (a33a45e)

  • (es/minifier) Escape control characters when converting strings to template literals (#11464) (028551f)

  • (es/minifier) Handle unused parameters with default values (#11494) (6ed1ee9)

  • (es/module) Preserve ./ prefix for hidden directory imports (#11489) (a005391)

  • (es/parser) Validate dynamic import argument count (#11462) (2f67591)

  • (es/parser) Allow compilation with --no-default-features (#11460) (b70c5f8)

  • (es/parser) Skip emitting TS1102 in TypeScript mode (#11463) (e6f5b06)

  • (es/parser) Reject ambiguous generic arrow functions in TSX mode (#11491) (ac00915)

  • (es/parser) Disallow NumericLiteralSeparator with BigInts (#11510) (6b3644b)

  • (es/react) Preserve HTML entity-encoded whitespace in JSX (#11474) (7d433a9)

  • (es/renamer) Prevent duplicate parameter names with destructuring patterns (#11456) (e25a2c8)

... (truncated)

Commits
  • 6f77bea chore: Publish 1.15.11 with swc_core v56.0.0
  • c757548 chore: Publish 1.15.11-nightly-20260127.1 with swc_core v56.0.0
  • c0bfe61 chore: Add missing repository.directory property to package.json (#11486)
  • See full diff in compare view

Updates @testcontainers/postgresql from 10.28.0 to 11.11.0

Release notes

Sourced from @​testcontainers/postgresql's releases.

v11.11.0

Changes

🚀 Features

🐛 Bug Fixes

🧹 Maintenance

📦 Dependency Updates

v11.10.0

Changes

🚀 Features

🧹 Maintenance

📦 Dependency Updates

v11.9.0

Changes

🚀 Features

📦 Dependency Updates

... (truncated)

Commits
  • a558850 Selenium support user-provided network (#1207)
  • 155f962 Fix abstract started container async dispose (#1203)
  • 252239f Bump the dependencies group across 16 directories with 18 updates (#1200)
  • 7882ed9 Bump the dependencies group with 12 updates (#1199)
  • 504de94 Add Azure Service Bus module (#1194)
  • 17930dd Export KafkaContainer's SaslSslListenerOptions (#1201)
  • 23de77e Authenticate with identityToken when present in auths (#1197)
  • 5385863 Update Kafka module markdown and ZK test version (#1198)
  • ad7dc86 v11.10.0
  • 68cf3cd Bump the dependencies group across 5 directories with 6 updates (#1190)
  • Additional commits viewable in compare view

Updates @types/node from 22.19.7 to 25.2.0

Commits

Updates testcontainers from 10.28.0 to 11.11.0

Release notes

Sourced from testcontainers's releases.

v11.11.0

Changes

🚀 Features

🐛 Bug Fixes

🧹 Maintenance

📦 Dependency Updates

v11.10.0

Changes

🚀 Features

🧹 Maintenance

📦 Dependency Updates

v11.9.0

Changes

🚀 Features

📦 Dependency Updates

... (truncated)

Commits
  • a558850 Selenium support user-provided network (#1207)
  • 155f962 Fix abstract started container async dispose (#1203)
  • 252239f Bump the dependencies group across 16 directories with 18 updates (#1200)
  • 7882ed9 Bump the dependencies group with 12 updates (#1199)
  • 504de94 Add Azure Service Bus module (#1194)
  • 17930dd Export KafkaContainer's SaslSslListenerOptions (#1201)
  • 23de77e Authenticate with identityToken when present in auths (#1197)
  • 5385863 Update Kafka module markdown and ZK test version (#1198)
  • ad7dc86 v11.10.0
  • 68cf3cd Bump the dependencies group across 5 directories with 6 updates (#1190)
  • Additional commits viewable in compare view

Updates jest-expo from 54.0.16 to 54.0.17

CommitsDescription has been truncated

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 4, 2026

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

…13 updates

Bumps the dev-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.13` | `2.3.14` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `20.3.1` | `20.4.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `20.3.1` | `20.4.1` |
| [@commitlint/types](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/types) | `20.3.1` | `20.4.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.7.6` | `2.8.3` |
| [@golevelup/ts-jest](https://github.com/golevelup/nestjs) | `1.2.0` | `1.2.1` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `11.1.12` | `11.1.13` |
| [@swc/core](https://github.com/swc-project/swc/tree/HEAD/packages/core) | `1.15.10` | `1.15.11` |
| [@testcontainers/postgresql](https://github.com/testcontainers/testcontainers-node) | `10.28.0` | `11.11.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.7` | `25.2.0` |
| [testcontainers](https://github.com/testcontainers/testcontainers-node) | `10.28.0` | `11.11.0` |
| [jest-expo](https://github.com/expo/expo/tree/HEAD/packages/jest-expo) | `54.0.16` | `54.0.17` |
| [react-test-renderer](https://github.com/facebook/react/tree/HEAD/packages/react-test-renderer) | `19.1.0` | `19.2.4` |



Updates `@biomejs/biome` from 2.3.13 to 2.3.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.3.14/packages/@biomejs/biome)

Updates `@commitlint/cli` from 20.3.1 to 20.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.4.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 20.3.1 to 20.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.4.1/@commitlint/config-conventional)

Updates `@commitlint/types` from 20.3.1 to 20.4.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/types/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.4.0/@commitlint/types)

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

Updates `@golevelup/ts-jest` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/golevelup/nestjs/releases)
- [Commits](https://github.com/golevelup/nestjs/compare/@golevelup/ts-jest@1.2.0...@golevelup/ts-jest@1.2.1)

Updates `@nestjs/testing` from 11.1.12 to 11.1.13
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.13/packages/testing)

Updates `@swc/core` from 1.15.10 to 1.15.11
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](https://github.com/swc-project/swc/commits/v1.15.11/packages/core)

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

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

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

Updates `jest-expo` from 54.0.16 to 54.0.17
- [Changelog](https://github.com/expo/expo/blob/main/CHANGELOG.md)
- [Commits](https://github.com/expo/expo/commits/HEAD/packages/jest-expo)

Updates `react-test-renderer` from 19.1.0 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-test-renderer)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@commitlint/cli"
  dependency-version: 20.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@commitlint/types"
  dependency-version: 20.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: turbo
  dependency-version: 2.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@golevelup/ts-jest"
  dependency-version: 1.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@nestjs/testing"
  dependency-version: 11.1.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.15.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@testcontainers/postgresql"
  dependency-version: 11.11.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: testcontainers
  dependency-version: 11.11.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: jest-expo
  dependency-version: 54.0.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: react-test-renderer
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-8416814bc6 branch from 872d6b7 to 95b44d5 Compare February 5, 2026 08:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants