Skip to content

chore(deps-dev): bump the minor-development-deps group with 4 updates#1119

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-development-deps-5c56788f94
Closed

chore(deps-dev): bump the minor-development-deps group with 4 updates#1119
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-development-deps-5c56788f94

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2026

Bumps the minor-development-deps group with 4 updates: @biomejs/biome, @tsconfig/node20, knip and type-fest.

Updates @biomejs/biome from 2.3.13 to 2.4.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.4

2.4.4

Patch Changes

  • #9150 6946835 Thanks @​dyc3! - Fixed #9138: Astro files containing --- in HTML content (e.g., <h1>---Hi</h1>) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all.

  • #9150 aa6f837 Thanks @​dyc3! - Fixed #9138: The HTML parser incorrectly failing to parse bracket characters ([ and ]) in text content (e.g. <div>[Foo]</div>).

  • #9151 c0d4b0c Thanks @​dyc3! - Fixed parsing of Svelte directive keywords (use, style) when used as plain text content in HTML/Svelte files. Previously, <p>use JavaScript</p> or <p>style it</p> would incorrectly produce a bogus element instead of proper text content.

  • #9162 7f1e060 Thanks @​dyc3! - Fixed #9161: The Vue parser now correctly handles colon attributes like xlink:href and xmlns:xlink by parsing them as single attributes instead of splitting them into separate tokens.

  • #9164 458211b Thanks @​dyc3! - Fixed #9161: The noAssignInExpressions rule no longer flags assignments in Vue v-on directives (e.g., @click="counter += 1"). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule.

What's Changed

Full Changelog: https://github.com/biomejs/biome/compare/@​biomejs/biome@​2.4.3...@​biomejs/biome@​2.4.4

Biome CLI v2.4.3

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.4

Patch Changes

  • #9150 6946835 Thanks @​dyc3! - Fixed #9138: Astro files containing --- in HTML content (e.g., <h1>---Hi</h1>) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all.

  • #9150 aa6f837 Thanks @​dyc3! - Fixed #9138: The HTML parser incorrectly failing to parse bracket characters ([ and ]) in text content (e.g. <div>[Foo]</div>).

  • #9151 c0d4b0c Thanks @​dyc3! - Fixed parsing of Svelte directive keywords (use, style) when used as plain text content in HTML/Svelte files. Previously, <p>use JavaScript</p> or <p>style it</p> would incorrectly produce a bogus element instead of proper text content.

  • #9162 7f1e060 Thanks @​dyc3! - Fixed #9161: The Vue parser now correctly handles colon attributes like xlink:href and xmlns:xlink by parsing them as single attributes instead of splitting them into separate tokens.

  • #9164 458211b Thanks @​dyc3! - Fixed #9161: The noAssignInExpressions rule no longer flags assignments in Vue v-on directives (e.g., @click="counter += 1"). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule.

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noConditionalExpect. This rule disallows conditional expect() calls inside tests, which can lead to tests that silently pass when assertions never run.

    // Invalid - conditional expect may not run
    test("conditional", async ({ page }) => {
      if (someCondition) {
        await expect(page).toHaveTitle("Title");
      }

... (truncated)

Commits

Updates @tsconfig/node20 from 20.1.8 to 20.1.9

Commits

Updates knip from 5.82.1 to 5.85.0

Release notes

Sourced from knip's releases.

Release 5.85.0

  • Fix require.context regex matching for path-aware patterns (#1547) (c33d93ae24dc1304baa49f85b25beb24af803dd8) - thanks @​jstaab!
  • Make knip compatible with erasableSyntaxOnly (#1541) (f63089bdadb2cea47d22fa27b22c16003e1a4b61) - thanks @​wojtekmaj!
  • feat: add Payload CMS plugin (#1546) (58d99de46ee3a9e15cd77e3806b5de55931cebf2) - thanks @​Robot-Inventor!
  • Look everywhere for manifest/robots file in next plugin (9da6205fdc45fdc992919d3e246415829025ea46)
  • Merge some next glob patterns (8c5f35fa81ccccc4faceb6a1d8329d562927d450)
  • Add SAP & Google Gemini to projects using Knip (c8ab8957ad1f15ee9ff67f13f5029f213e464ada)
  • Bump remark-preset-webpro & dedupe (b9372cd7a0dc1a1ab54b7baa7b8a939a399ccc14)
  • Document CLI usage for LS (97fe1cfe8a18af145eff9ca1f040e4c756acd270)
  • fix: tsdown entry compatibility issues #1550 (#1554) (95051ebf3aa44a2db722837acf3ce73e03f72fc5) - thanks @​huijiewei!
  • Fix incorrect coverage provider being reported (#1552) (2d0b5cda41f994116c6e211fc68c95b44c21b2cb) - thanks @​rexxars!
  • Temp disable npmx in ecosystem run (a5cd9862943dcca1b217bcec2895553ba23dbe34)
  • Fix OOM in gitignore walk for large monorepos (f192a6ba3fbe9fc303f48e3901db918f5bcd5164)

Release 5.84.1

  • Fix false positives for arrow-wrapped dynamic imports assigned to variables (#1544) (75a42c3aa4b8f9db59fb450ef4f45540ab94ec26) - thanks @​jantimon!
  • Improve pnpm arg handling (df8c353c7f30ee11d749b2cf3208f288def1ed84)
  • Ignore module.register if 2nd arg is not import.meta.url (#1535) (970fdb1f747c0941759aa3e0394c30ff6cf63481)

Release 5.84.0

  • Post-release shenanigans (e7965cba23b0c63f0165a12c96aed75257aa6919)
  • Move most compilers to plugins & register from there (61beafe3e002408e91169397f7c384e14c613d92)
  • Minor refactor (e20a6828be8dd1e49b819d5b5b896a26db2a91ac)
  • Fix lint issues (d2bbc139e63235c415a243e76ad8685693b8edf2)
  • Add missing catalog property to rules in JSON schema (#1518) (5d49dea2696db454e630014efd25172d6edde9fa) - thanks @​Mohmdev!
  • feat(plugins): add @​typescript/native-preview (tsgo) support (#1513) (babfb10a0426059bc2d79d14a2ba9c33767b6571) - thanks @​jgoux!
  • Fix up quoting for spaced args (resolve #1515) (2b735cb8d87a827bf9ea53ea2bcfcedf117e6d4d)
  • Switch to tsconfig-aware module resolver in input handler (634d0f68f681df1bf1e8896846f4d4c29b03e689)
  • Use bun test positionals as entry points (resolve #1521) (da9472555b28b04eddba703b1dfee69b2cb8b6f9)
  • Edit docs (327726ff2c5f2b135581088dea62bd3ed4bc99d4)
  • Minor refactor while at it (dc87e8ea7157745a449955e9a275877d19cf4d87)
  • Add config hints for unused ignore and ignoreFiles items (a4989eef8c870aa038d9c9d9e09597590ca444e7)
  • Accept known bins only behind double-dash (resolve #1524) (b9214e35659f1f87eabc6695d9b9643c0e6c8022)
  • feat(plugins): add support for bun test preloaded files (#1525) (14ee32a8f818e1cbf48398ba57bf0f19812ed8be) - thanks @​jgoux!
  • Add date to IGNORED_GLOBAL_BINARIES (#1476) (f08f92bd9eac95ec4eafd01ddb01279cb047544e) - thanks @​duci9y!
  • Fix edge case for binaries in scripts (82331ee2d336349d24a23437527991b73c764039)
  • Report ignore/files config hints only if sure & relevant (4c3bd085477139f50dce468c4231ba2753459c54)
  • Add consistent repository fields (781a0fd44a2cece4fd9c1413e50caa88df528607)
  • Add language-server bin (13d78454c4100f5d6a4f0cadcf1d77eadec523b2)
  • Use --stdio if no transport provided (bedb21adff873c13095350842c85bb1bfeac643b)
  • Refactor from "enabled" to "deferSession" (resolve #1499) (15e3360f11c81a866b8e6de76e894986bdfddedd)
  • Use initializationOptions.config or default fallback config obj (resolve #1503) (0abe5684083428340254dc1b0136760aacb9acff)
  • Also publish ls + mcp with pkg-pr-new (78065260f55fc491d59912e2db41d789e49a1bb7)
  • Auto-format (51b7dc1de9e2ec5b738df5389906df84dc1f3dd7)
  • Remove chdir shenanigans (close #1516) (0cbee8f38f4a91504b3adc4faee466b9624120fc)
  • Bind console.* to distinguish internal↔ external logs (3eac278273856994483a9164539bf57a51ed440b)
  • Add early bail-outs for changed files we can ignore (36c2dd5c4345d743c3de58ebd677b6f48a270213)
  • Avoid unnecessary module graph updates for unmodified files (f94c41f24fb7f5c4682a620bafd03700cf14ba68)
  • Fix typo in pkg-pr-new-pkg-dir (7e7a8b05a06f1f972a1d5e236dc53facbbb99729)
  • Add .DS_Store to .gitignore (#1530) (40fe5cc608f2ecf71d148e061071e249c8940edb) - thanks @​wojtekmaj!

... (truncated)

Commits
  • e28a3e7 Release knip@5.85.0
  • f192a6b Fix OOM in gitignore walk for large monorepos
  • 2d0b5cd Fix incorrect coverage provider being reported (#1552)
  • 95051eb fix: tsdown entry compatibility issues #1550 (#1554)
  • 8c5f35f Merge some next glob patterns
  • 9da6205 Look everywhere for manifest/robots file in next plugin
  • 58d99de feat: add Payload CMS plugin (#1546)
  • f63089b Make knip compatible with erasableSyntaxOnly (#1541)
  • c33d93a Fix require.context regex matching for path-aware patterns (#1547)
  • 5c2cccf Release knip@5.84.1
  • Additional commits viewable in compare view

Updates type-fest from 5.4.3 to 5.4.4

Release notes

Sourced from type-fest's releases.

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

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

Commits
  • 8e9af4c 5.4.4
  • fc9e2bb PackageJson: Use LiteralUnion for engines field (#1354)
  • 6e08190 Make twoslash (\\=>) type validation agnostic of union order (#1347)
  • b0321a5 IsUnion: Fix behavior when the entire union extends all individual members ...
  • 2c34128 Paths: Fix leavesOnly behavior with never leaves (#1350)
  • ac3b50e Paths: Fix behavior with WeakMaps / WeakSets (#1348)
  • 7c82a21 Paths: Fix behavior with tuples containing optional elements with a rest el...
  • f6cf954 fix: remove duplicate test case
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-development-deps group with 4 updates: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [@tsconfig/node20](https://github.com/tsconfig/bases/tree/HEAD/bases), [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) and [type-fest](https://github.com/sindresorhus/type-fest).


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

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

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

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

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: knip
  dependency-version: 5.85.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-development-deps
- dependency-name: type-fest
  dependency-version: 5.4.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-development-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 1, 2026
@dependabot dependabot bot requested a review from erunion as a code owner March 1, 2026 05:12
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 1, 2026
@erunion erunion closed this Mar 1, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 1, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-development-deps-5c56788f94 branch March 1, 2026 15:34
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.

1 participant