Skip to content

chore(deps-dev): bump the minor-development-deps group across 1 directory with 9 updates#1138

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-development-deps-0000baabb4
Open

chore(deps-dev): bump the minor-development-deps group across 1 directory with 9 updates#1138
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-development-deps-0000baabb4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the minor-development-deps group with 9 updates in the / directory:

Package From To
@biomejs/biome 2.3.13 2.4.13
@readme/standards 2.4.0 2.4.1
@tsconfig/node20 20.1.8 20.1.9
knip 6.5.0 6.10.0
lerna 9.0.3 9.0.7
prettier 3.8.1 3.8.3
@vitest/coverage-v8 4.0.18 4.1.5
ajv 8.18.0 8.20.0
type-fest 5.4.3 5.6.0

Updates @biomejs/biome from 2.3.13 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

Updates @readme/standards from 2.4.0 to 2.4.1

Commits
  • 2d46359 chore(release): publish
  • 766169b chore(deps): bump the minor-production-deps group across 1 directory with 10 ...
  • d9eba3a chore(release): publish
  • 497c5f0 fix(oxlint-config): porting over missing import rules
  • c02324f chore(release): publish
  • 10fed0c fix: lockfile
  • 3af21da chore(deps-dev): bump the minor-development-deps group across 1 directory wit...
  • 325f57e chore(deps): bump globals from 16.5.0 to 17.4.0 (#1110)
  • 316020d chore(deps-dev): bump brace-expansion from 1.1.12 to 1.1.13 (#1115)
  • 28959a1 fix(oxlint-config): upgrading oxlint and removing rules that aren't supported...
  • Additional commits viewable in compare view

Updates @tsconfig/node20 from 20.1.8 to 20.1.9

Commits

Updates knip from 6.5.0 to 6.10.0

Release notes

Sourced from knip's releases.

Release 6.10.0

  • Ecosystem patches → snapshots (1803f9f94d42ebe88730465c002098de54c6650a)
  • Fix unlisted pkg when only @​types/pkg listed (resolve #1707) (62082b69b382ea56d86e718da623ccadb9281a14)
  • Don't report imports matching engines.X as unlisted (23582e0f4da7a98cfe50c065b63d38a75870911e)
  • Treat imports in .d.ts files as type-only (84caac58d99f39fde56c664f42bad2c000d8943e)
  • Treat tsconfig compilerOptions.types as type-only (ce18854b0a008f1060e30c660eee820eba1568e5)
  • Resolve hoisted deps from monorepo root in single-package mode (resolve #1711) (23b756fb0becacaa19fbd71a0d9a0264f8647e88)

Release 6.9.0

  • Expose types for JSON reporter (961b734f398b451bc26708f8d3bfa72a71983dcc)

Release 6.8.0

  • feat: add WXT plugin (#1703) (9167557755a0aef81947aaedfa4745805ffaa571) - thanks @​sebastianbreguel!
  • Add support for pnpm@11 new commands (#1706) (c937697a68caaf1ac224627537993b32d37cc91b) - thanks @​PatrykWalach!
  • Fix case of spread export → other exports used (resolve #1705) (0f94d2d2b024d268df2395677a0ca0f6fd95503d)
  • Add more pnpm commands + tests (f2819b3474b6d6ff7c24197be54072d2291d15b6)
  • Bump oxc-parser (5c21d278814436c4c084d0ee609360eddaedd676)

Release 6.7.0

  • Fix markdown reporter column width (resolve #1700) (4713108de98bcfe76eb606036b9f968abe3e89a0)
  • Handle Vitest agent and minimal reporters (#1701) (a71ead11b99aaa67f31eed7b35628907b2dddd06) - thanks @​dskwrite!
  • Add e2e tests w/ tsgo defs + lib consumption (98113e61d913e47631748b58c25d1042c8dd387e)
  • Fix pkg name inconsistencies (544c3e68d72dd754b20f8e0b0bf8ed107c05d677)
  • Add export {} to maintain module shape (27d8a0230c10f2827ba1e1a8b2c65020554f61f8)
  • Strip leading UTF-8 BOM before parsing package.json (47e4029c39ff95043cd495681e4c7558970b0ed9)
  • Skip workspace with invalid JSON manifest (bfb48670966387a3cd26005b9fb9d8769b2a1213)
  • Preserve out-of-bound writes to stdout/err (95faad8d6219ba456a3700df697273eb154c1dd9)
  • Consistent prefix in logError/logWarning (2c6d8a049d1c20d9427425b4abae3b76ac7a5720)
  • Don't exit on config file load error (0914bd3832b1851e4d34137577c0d08efaf8aef6)
  • Fix tsgo resolution in e2e tests (a68950131e33214ef2a4f13d11fab1a78c16bad6)

Release 6.6.3

  • Use venz chart svg directly from CDN (ba7e9073d1770e4a21ec18435bcb61f394db0d1c)
  • Bump that plugin counter (abae75bbd3030e006fe67d3f63641a31a65e671c)
  • Fix plugin title (f2b8fcfc94bb78fb70dfe2be3f48ef8f254066f7)
  • Work Table util class: fix bugs, tighten API, water-fill widths (2eb4045e0f34c2638875504b9b64e881e9a74db5)
  • Questionable.. (970a0dbdfc7b59df2fd0a3064a4bd6be4e5a59bc)
  • Fmt (14538ec1fe94cdf3c45798515160609f3ffbec9d)
  • Ensure output is flushed on exit (#1699) (9533365115d4704e9b057b7ba8d5f43fd553d1a1) - thanks @​joshkel!
  • Use currentColor to support light/dark themes (7ea055aa68b86ccc6cb302a3092c2da9e56cdde6)
  • Tighten type-chain alignment + gate via ignoreExportsUsedInFile (resolve #1698) (0910b33fc6c07867a751af2e26989a61c8a6c548)
  • Eating our own dog food ↻ (d5aa1f6b007a2dfef1a8326000dc1802510d64ab)

Release 6.6.2

  • Don't track typeof value refs at top of exported type alias (resolve #1697) (1a9904832878f5e8e4b633bdb08fb327baa17ed6)
  • Treat Props as used when Astro.props is referenced (resolve #1629) (46cb33871b236249cf9b09679988d530a61a545f)
  • Update dependencies (dcf53157452b996f970d91d3149c4b7bb4f45edd)

Release 6.6.1

  • Fix website papercuts (#1696) (c6d9c436d4c0b85f8aae34bab1197e3c2b5eb139) - thanks @​skoeva!

... (truncated)

Commits
  • d604ff3 Release knip@6.10.0
  • 23b756f Resolve hoisted deps from monorepo root in single-package mode (resolve #1711)
  • ce18854 Treat tsconfig compilerOptions.types as type-only
  • 84caac5 Treat imports in .d.ts files as type-only
  • 23582e0 Don't report imports matching engines.X as unlisted
  • 62082b6 Fix unlisted pkg when only @​types/pkg listed (resolve #1707)
  • 9ffd437 Release knip@6.9.0
  • 961b734 Expose types for JSON reporter
  • d77a3f8 Release knip@6.8.0
  • 5c21d27 Bump oxc-parser
  • Additional commits viewable in compare view

Updates lerna from 9.0.3 to 9.0.7

Release notes

Sourced from lerna's releases.

v9.0.7

9.0.7 (2026-03-13)

Bug Fixes

  • core: normalize ./ prefix in workspace globs for package detection (#4308) (bd39779)
  • core: remove multimatch dependency and legacy-core internals (#4314) (ec01462)
  • version: skip config resolution in prettier getFileInfo check (#4306) (ae53efe)
  • version: support ESM and new v8+ conventional-changelog preset API (#4302) (575b248)

v9.0.6

9.0.6 (2026-03-11)

Bug Fixes

v9.0.5

9.0.5 (2026-02-28)

Bug Fixes

v9.0.4

9.0.4 (2026-02-10)

Bug Fixes

  • bump tar to 7.5.7, rimraf to 6.1.2, @​npmcli/run-script to 10.0.3 (#4267) (43e3d46)
Changelog

Sourced from lerna's changelog.

9.0.7 (2026-03-13)

Bug Fixes

  • core: remove multimatch dependency and legacy-core internals (#4314) (ec01462)

9.0.6 (2026-03-11)

Bug Fixes

9.0.5 (2026-02-28)

Bug Fixes

9.0.4 (2026-02-10)

Bug Fixes

  • bump tar to 7.5.7, rimraf to 6.1.2, @​npmcli/run-script to 10.0.3 (#4267) (43e3d46)
Commits
  • 4322536 chore(misc): publish 9.0.7
  • ec01462 fix(core): remove multimatch dependency and legacy-core internals (#4314)
  • 538bf1a chore(deps): replace write-pkg with internal writePackage utility (#4313)
  • ebf6729 chore(deps): remove set-blocking, is-stream, get-port (#4311)
  • 76ad78b chore(deps): replace uuid, pify, temp-dir with native Node.js APIs (#4310)
  • 5ad1cf8 chore(deps): replace make-dir, rimraf, resolve-from with native Node.js APIs ...
  • bb30d88 chore(misc): publish 9.0.6
  • c15070b refactor(create): consolidate @​lerna/create into the main lerna package (#4300)
  • 7a69a57 fix(deps): bump tar from 7.5.8 to 7.5.11 (#4296)
  • b768187 fix(deps): add missing ci-info dependency (#4263)
  • Additional commits viewable in compare view

Updates prettier from 3.8.1 to 3.8.3

Release notes

Sourced from prettier's releases.

3.8.3

🔗 Changelog

3.8.2

  • Support Angular v21.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.3

diff

SCSS: Prevent trailing comma in if() function (#18471 by @​kovsu)

// Input
$value: if(sass(false): 1; else: -1);
// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);
// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

</tr></table> 

... (truncated)

Commits

Updates @vitest/coverage-v8 from 4.0.18 to 4.1.5

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.5

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.4

   🚀 Experimental Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.3

   🚀 Experimental Features

... (truncated)

Commits

Updates ajv from 8.18.0 to 8.20.0

Release notes

Sourced from ajv's releases.

v8.20.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.19.0...v8.20.0

v8.19.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.18.0...v8.19.0

Commits

Updates type-fest from 5.4.3 to 5.6.0

Release notes

Sourced from type-fest's releases.

v5.6.0

New types

Improvements

  • Add splitOnPunctuation option to CamelCase / PascalCase / KebabCase / SnakeCase (#1394) 852d016
  • CamelCase: Add preserveLeadingUnderscores option (#1404) 5ca6564
  • TsConfigJson: Add TypeScript 6.0 fields (#1406) ac4861d
  • UnionToTuple: Fix behavior with large unions (#1405) 651f7ea

sindresorhus/type-fest@v5.5.0...v5.6.0

v5.5.0

New types

Improvements

  • Add function parameter constraint examples to numeric comparison types (#1357) 24be93d
  • UnionToTuple: Fix behavior when a union member is a supertype of another (#1349) 0f923d0
  • ConditionalPickDeep: Fix returning {} instead of never when no keys match (#1360) 6af847a
  • ConditionalPick: Fix returning {} instead of never when no keys match (#1359) 3995003
  • GreaterThan / LessThan / GreaterThanOrEqual / LessThanOrEqual: Fix behavior with the number type (#1363) cfea505

sindresorhus/type-fest@v5.4.4...v5.5.0

v5.4.4

  • PackageJson: Use LiteralUnion for engines field (#1354) fc9e2bb
  • IsUnion: Fix behavior when the entire union extends all individual members (#1353) b0321a5
  • Paths: Fix leavesOnly behavior with never leaves (#1350) 2c34128
  • Paths: Fix behavior with WeakMaps / WeakSets (#1348) ac3b50e
  • Paths: Fix behavior with tuples containing optional elements with a rest element (#1346) 7c82a21

... (truncated)

Commits

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 1, 2026
@dependabot dependabot Bot requested a review from erunion as a code owner May 1, 2026 05:59
@erunion erunion removed their request for review May 1, 2026 18:03
…tory with 9 updates

Bumps the minor-development-deps group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.13` | `2.4.13` |
| [@readme/standards](https://github.com/readmeio/standards) | `2.4.0` | `2.4.1` |
| [@tsconfig/node20](https://github.com/tsconfig/bases/tree/HEAD/bases) | `20.1.8` | `20.1.9` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.5.0` | `6.10.0` |
| [lerna](https://github.com/lerna/lerna/tree/HEAD/packages/lerna) | `9.0.3` | `9.0.7` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.3` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.0.18` | `4.1.5` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.18.0` | `8.20.0` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `5.4.3` | `5.6.0` |



Updates `@biomejs/biome` from 2.3.13 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 `@readme/standards` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/readmeio/standards/releases)
- [Commits](https://github.com/readmeio/standards/compare/@readme/standards@2.4.0...@readme/standards@2.4.1)

Updates `@tsconfig/node20` from 20.1.8 to 20.1.9
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

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

Updates `lerna` from 9.0.3 to 9.0.7
- [Release notes](https://github.com/lerna/lerna/releases)
- [Changelog](https://github.com/lerna/lerna/blob/main/packages/lerna/CHANGELOG.md)
- [Commits](https://github.com/lerna/lerna/commits/v9.0.7/packages/lerna)

Updates `prettier` from 3.8.1 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.8.1...3.8.3)

Updates `@vitest/coverage-v8` from 4.0.18 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/coverage-v8)

Updates `ajv` from 8.18.0 to 8.20.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.18.0...v8.20.0)

Updates `type-fest` from 5.4.3 to 5.6.0
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v5.4.3...v5.6.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: "@readme/standards"
  dependency-version: 2.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: "@tsconfig/node20"
  dependency-version: 20.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: ajv
  dependency-version: 8.20.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: knip
  dependency-version: 6.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: lerna
  dependency-version: 9.0.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
- dependency-name: type-fest
  dependency-version: 5.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps-dev): bump the minor-development-deps group with 9 updates chore(deps-dev): bump the minor-development-deps group across 1 directory with 9 updates May 1, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/minor-development-deps-0000baabb4 branch from 99625bc to 5b378f7 Compare May 1, 2026 18:07
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants