Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
@biomejs/biome 2.1.1 2.3.14
@release-it/conventional-changelog 10.0.2 10.0.5
@types/node 22.16.2 25.2.2
cspell 8.19.4 9.6.4
cz-conventional-changelog 3.0.1 3.3.0
glob 11.1.0 13.0.1
tsd 0.32.0 0.33.0
tsup 8.5.0 8.5.1
tsx 4.20.3 4.21.0
typedoc 0.28.7 0.28.16
typedoc-plugin-frontmatter 1.3.0 1.3.1
vitest 3.2.4 4.0.18

Updates @biomejs/biome from 2.1.1 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
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


Updates @release-it/conventional-changelog from 10.0.2 to 10.0.5

Release notes

Sourced from @​release-it/conventional-changelog's releases.

Release 10.0.5

  • test: add should generate changelog with remote origin urls (#132) (7e53f8ce957b1e2469acfff6bb2d1f9a46654b6f) - thanks @​Maxel01!
  • fix: pass parserOpts to both Bumper and ConventionalChangelog (#135) (4dce48ad332aeba00ae49c2f9df229961ab902eb) - thanks @​aarond-sp!

Release 10.0.4

  • fix: add readRepository to resolve correct urls (#131) (933bcc6aa5d854158dc3702f004b5cbd4caf4cad) - thanks @​Maxel01!
  • Update release-it (ac4426a38d5d2c948884901acf8adec065d54c4f)

Release 10.0.3

  • Remove verbose comments (eb178bd556e5939b93a374adc418d6be5cc85323)
  • fix: remove preset options filtering (#129) (1b9fb95608117bc3f0f3379188f5c82f3231a792) - thanks @​NateSmyth!
Commits

Updates @types/node from 22.16.2 to 25.2.2

Commits

Updates cspell from 8.19.4 to 9.6.4

Release notes

Sourced from cspell's releases.

v9.6.4

Fixes

fix: add --no-dictionary option to lint command (#8514)

Pull request overview

This PR adds the --no-dictionary option to the lint command and refactors the prefixCollect helper function for reuse across commands.

Changes:

  • Moved prefixCollect function from commandTrace.ts to commandHelpers.ts for reuse
  • Added --no-dictionary option to the lint command (hidden, as an alias for --disable-dictionary)
  • Added comprehensive tests for the new option including --dictionary=!words and --no-dictionary=words syntax

fix: Correctly report blocked dictionaries (#8506)


v9.6.3

Fixes

fix: Add engines setting (#8491)

Pull request overview

This PR adds a new engines configuration field that allows dictionary authors and configuration authors to specify the minimum version of cspell (or other engines) required for compatibility. This is informational only and does not enforce versioning.

Changes:

  • Added CompatibleEngineVersions interface and SemVersionPredicate type to define engine version requirements
  • Added engines field to FileSettings interface and all related configuration structures
  • Updated JSON schemas to include the new engines definitions
  • Updated snapshot tests to reflect the new configuration field

... (truncated)

Changelog

Sourced from cspell's changelog.

v9.6.4 (2026-02-04)

Fixes

fix: add --no-dictionary option to lint command (#8514)

Pull request overview

This PR adds the --no-dictionary option to the lint command and refactors the prefixCollect helper function for reuse across commands.

Changes:

  • Moved prefixCollect function from commandTrace.ts to commandHelpers.ts for reuse
  • Added --no-dictionary option to the lint command (hidden, as an alias for --disable-dictionary)
  • Added comprehensive tests for the new option including --dictionary=!words and --no-dictionary=words syntax

fix: Correctly report blocked dictionaries (#8506)


v9.6.3 (2026-02-02)

Fixes

fix: Add engines setting (#8491)

Pull request overview

This PR adds a new engines configuration field that allows dictionary authors and configuration authors to specify the minimum version of cspell (or other engines) required for compatibility. This is informational only and does not enforce versioning.

Changes:

  • Added CompatibleEngineVersions interface and SemVersionPredicate type to define engine version requirements
  • Added engines field to FileSettings interface and all related configuration structures
  • Updated JSON schemas to include the new engines definitions

... (truncated)

Commits

Updates cz-conventional-changelog from 3.0.1 to 3.3.0

Release notes

Sourced from cz-conventional-changelog's releases.

v3.3.0

3.3.0 (2020-08-26)

Features

  • engine: add support for disableSubjectLowerCase (df66875)

v3.2.1

3.2.1 (2020-08-24)

Bug Fixes

  • Correct typo in JSON (58df4d1)
  • Wrap updateTypes in packageRules (0f6dfbf)

v3.2.0

3.2.0 (2020-05-04)

Features

v3.1.1

3.1.1 (2020-05-04)

Bug Fixes

  • defaultValues: Added fallback for optional default values (#99) (2aae317)

v3.1.0

3.1.0 (2020-01-28)

Features

  • engine: add support for disableScopeLowerCase (#96) (e7bd546)

v3.0.3

3.0.3 (2020-01-28)

Bug Fixes

  • Update conventional-commit-types to the latest version 🚀 (#105) (5a371c1)

v3.0.2

... (truncated)

Commits
  • 9127e30 Merge pull request #127 from zoffyzhang/master
  • 8b20d34 Merge pull request #63 from commitizen/renovate/configure
  • 0f6dfbf fix: Wrap updateTypes in packageRules
  • 58df4d1 fix: Correct typo in JSON
  • 7210069 chore: Update renovate config
  • 7ac768c Merge pull request #53 from commitizen/greenkeeper/initial
  • 37bb75a Merge branch 'master' into greenkeeper/initial
  • df66875 feat(engine): add support for disableSubjectLowerCase
  • aae2548 feat(types): add suport for custom types (#104)
  • 2aae317 fix(defaultValues): Added fallback for optional default values (#99)
  • Additional commits viewable in compare view

Updates glob from 11.1.0 to 13.0.1

Changelog

Sourced from glob's changelog.

changeglob

13

  • Move the CLI program out to a separate package, glob-bin. Install that if you'd like to continue using glob from the command line.

12

  • Remove the unsafe --shell option. The --shell option is now ONLY supported on known shells where the behavior can be implemented safely.

11.1

GHSA-5j98-mcp5-4vw2

  • Add the --shell option for the command line, with a warning that this is unsafe. (It will be removed in v12.)
  • Add the --cmd-arg/-g as a way to safely add positional arguments to the command provided to the CLI tool.
  • Detect commands with space or quote characters on known shells, and pass positional arguments to them safely, avoiding shell:true execution.

11.0

  • Drop support for node before v20

10.4

  • Add includeChildMatches: false option
  • Export the Ignore class

10.3

  • Add --default -p flag to provide a default pattern
  • exclude symbolic links to directories when follow and nodir are both set

10.2

  • Add glob cli

10.1

  • Return '.' instead of the empty string '' when the current working directory is returned as a match.
  • Add posix: true option to return / delimited paths, even on

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by isaacs, a new releaser for glob since your current version.


Updates tsd from 0.32.0 to 0.33.0

Release notes

Sourced from tsd's releases.

v0.33.0

  • Update to TypeScript 5.9 128fb5e

tsdjs/tsd@v0.32.0...v0.33.0

Commits

Updates tsup from 8.5.0 to 8.5.1

Release notes

Sourced from tsup's releases.

v8.5.1

   🐞 Bug Fixes

    View changes on GitHub
Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for tsup since your current version.


Updates tsx from 4.20.3 to 4.21.0

Release notes

Sourced from tsx's releases.

v4.21.0

4.21.0 (2025-11-30)

Features


This release is also available on:

v4.20.6

4.20.6 (2025-09-26)

Bug Fixes

  • properly hide relaySignal from process.listeners() (#741) (710a424)

This release is also available on:

v4.20.5

4.20.5 (2025-08-24)

Bug Fixes

  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

4.20.4 (2025-08-12)

Bug Fixes

... (truncated)

Commits
  • f6284cd ci: lock in semantic-release v24
  • 048fb62 feat: upgrade esbuild (#748)
  • 710a424 fix: properly hide relaySignal from process.listeners() (#741)
  • 20b91c4 docs: make sponsors dynamic
  • 08dcd59 chore: move vercel settings to root
  • e6d1a47 docs: obfuscate aside classname
  • de2719d style: remove unused variable
  • 13f2954 chore: upgrade docs deps
  • 0504525 chore: upgrade manten
  • 132fdd8 test: assert require.cache
  • Additional commits viewable in compare view

Updates typedoc from 0.28.7 to 0.28.16

Release notes

Sourced from typedoc's releases.

v0.28.16

Bug Fixes

  • Fixed an issue causing TypeDoc to fail to generate documentation when implementing interfaces, #3052.
  • Fixed an issue preventing automatic entry point discovery on Windows, #3057.
  • Improved vertical positioning of text icons, #3056.
  • TypeDoc no longer includes source location information for type literal reflections. This could sometimes cause TypeDoc to infer the wrong path when resolving base paths for display.
  • Adjusted markdown rendering to allow markdownItLoader to override more rendering #3055.

Features

  • Added support for regions for @include in .tsx, .cjs, and .mjs file references #3048.
  • Comments for TS-in-JS @typedef tags may now specify modifier tags with the inline tag syntax {@mod}. This makes it possible to add modifier tags to these members, which previously was not possible as TypeScript's parsing stops for these members at the next non-braced tag, #2916 and #3050.
  • A typedoc-config.schema.json is now included in the root of the package with a JSON schema for TypeDoc's configuration file. The schema for the latest version is also published at https://typedoc.org/schema.json and will automatically be picked up when writing typedoc.json files if you are using VSCode, #3054.

Thanks!

v0.28.15

Features

  • The gitRevision option now accepts the special value {branch}, which indicates source links should use the current git branch for links, #3041.
  • Introduced validation.invalidPath for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, #3033.
  • API: Introduced Logger.validationWarning for validation which occurs during conversion rather than during TypeDoc's normal validation step, #3033.

v0.28.14

Features

  • Introduced the preservedTypeAnnotationTags option to specify tags whose type annotations should be copied to the output documentation, #3020. API: Introduced typeAnnotation on CommentTag
  • Added excludePrivateClassFields option to hide #private members while allowing private members, #3017.
  • Added support for TypeScript's @this tag for JS files which describe this parameters, #3026.

Bug Fixes

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.16 (2026-01-12)

Bug Fixes

  • Fixed an issue causing TypeDoc to fail to generate documentation when implementing interfaces, #3052.
  • Fixed an issue preventing automatic entry point discovery on Windows, #3057.
  • Improved vertical positioning of text icons, #3056.
  • TypeDoc no longer includes source location information for type literal reflections. This could sometimes cause TypeDoc to infer the wrong path when resolving base paths for display.
  • Adjusted markdown rendering to allow markdownItLoader to override more rendering #3055.

Features

  • Added support for regions for @include in .tsx, .cjs, and .mjs file references #3048.
  • Comments for TS-in-JS @typedef tags may now specify modifier tags with the inline tag syntax {@mod}. This makes it possible to add modifier tags to these members, which previously was not possible as TypeScript's parsing stops for these members at the next non-braced tag, #2916 and #3050.
  • A typedoc-config.schema.json is now included in the root of the package with a JSON schema for TypeDoc's configuration file. The schema for the latest version is also published at https://typedoc.org/schema.json and will automatically be picked up when writing typedoc.json files if you are using VSCode, #3054.

Thanks!

v0.28.15 (2025-11-29)

Features

  • The gitRevision option now accepts the special value {branch}, which indicates source links should use the current git branch for links, #3041.
  • Introduced validation.invalidPath for suppressing warnings caused by referencing relative paths which do not exist when building the documentation, #3033.
  • API: Introduced Logger.validationWarning for validation which occurs during conversion rather than during TypeDoc's normal validation step, #3033.

v0.28.14 (2025-10-11)

Features

  • Introduced the preservedTypeAnnotationTags option to specify tags whose type annotations should be copied to the output documentation, #3020. API: Introduced typeAnnotation on CommentTag
  • Added excludePrivateClassFields option to hide #private members while allowing private members, #3017.
  • Added support for TypeScript's @this tag for JS files which describe this parameters, #3026.
  • API: Re-introduced relevanceBoost on DeclarationReflection for plugin use, #3036.

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 typedoc since your current version.


Updates typedoc-plugin-frontmatter from 1.3.0 to 1.3.1

Changelog

Sourced from typedoc-plugin-frontmatter's changelog.

1.3.1 (2025-11-23)

Patch Changes

  • Correctly resolve frontmatterCommentTags for signatures (#848).
Commits

Updates typedoc-plugin-markdown from 4.7.0 to 4.10.0

Release notes

Sourced from typedoc-plugin-markdown's releases.

typedoc-plugin-markdown@4.10.0

Minor Changes

  • A JSON schema to be consumed by typedoc.json is now published to the package root.
  • Mark parameters with default values as optional, matching the default TypeDoc theme.

Patch Changes

  • Fixed markdownlint errors related to empty table cells and invalid link fragments.
  • Anchors inside table cells (when property formats equal "table") are now namespaced by reflection kind (for example property-foo) to prevent collisions with Markdown heading slugs and ensure stable in-page links (#856).
  • Resolve "does not have an anchor but one was requested" warnings in verbose log mode (#850).
  • Guard against undefined types causing errors in complex types in tables (thanks @​ilyabo).

typedoc-plugin-markdown@4.9.0

Minor Changes

  • Exposed new option navigationJson that can be used to write navigation structure as JSON to disk.

Patch Changes

  • Remove type params from inline reflection titles when router=module to resolve anchoring issues (#843).

typedoc-plugin-markdown@4.8.1

Patch Changes

  • Correctly handle empty markdown links (#836).

typedoc-plugin-markdown@4.8.0

Minor Changes

  • Exposed additional placeholders in pageTitleTemplates and adjusted default templates (#831).
  • Tweaked the format of abstract class page titles to include the translated abstract keyword (e.g., "Abstract Class: MyClass") for improved readability.
  • Added strikeDeprecatedPageTitles option.

Patch Changes

  • Fix incorrect link fragments (#832).

typedoc-plugin-markdown@4.7.1

Patch Changes

Changelog

Sourced from typedoc-plugin-markdown's changelog.

4.10.0 (2026-02-06)

Minor Changes

  • A JSON schema to be consumed by typedoc.json is now published to the package root.
  • Mark parameters with default values as optional, matching the default TypeDoc theme.

Patch Changes

  • Fixed markdownlint errors related to empty table cells and invalid link fragments.
  • Anchors inside table cells (when property formats equal "table") are now namespaced by reflection kind (for example property-foo) to prevent collisions with Markdown heading slugs and ensure stable in-page links (#856).
  • Resolve "does not have an anchor but one was requested" warnings in verbose log mode (#850).
  • Guard against undefined types causing errors in complex types in tables (thanks @​ilyabo).

4.9.0 (2025-09-19)

Minor Changes

  • Exposed new option navigationJson that can be used to write navigation structure as JSON to disk.

Patch Changes

  • Remove type params from inline reflection titles when router=module to resolve anchoring issues (#843).

4.8.1 (2025-08-12)

Patch Changes

  • Correctly handle empty markdown links (#836).

4.8.0 (2025-07-29)

Minor Changes

  • Exposed additional placeholders in pageTitleTemplates and adjusted default templates (#831).
  • Tweaked the format of abstract class page titles to include the translated abstract keyword (e.g., "Abstract Class: MyClass") for improved readability.
  • Added strikeDeprecatedPageTitles option.

Patch Changes

  • Fix incorrect link fragments (#832).

4.7.1 (2025-07-19)

Patch Changes

  • Escape square brackets in index signature types (#829).
  • Fix missing segments in declaration titles that contain periods.
Commits
  • f9c8b93 Version Packages
  • 3a67289 fix(core): fixed markdownlint errors
  • a2d209c fix(core): namespace anchors inside table cells
  • 5191340 fix(core): mark parameters with default values as optional
  • 7d46ac2 feat(core): publish json schema to package root
  • 10cd31b fix(core): resolve incorrect anchor warning messages
  • 7c404da fix: Prevent crash in typeDeclarationTable
  • ac7e395 chore(docs): updated changelog date
  • 5b803ed Version Packages

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 8, 2026
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-8ddfdd7b0b branch 11 times, most recently from 9fb5fe7 to 46efa7a Compare February 15, 2026 02:25
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-8ddfdd7b0b branch 15 times, most recently from 7afd863 to 2523230 Compare February 21, 2026 06:12
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-8ddfdd7b0b branch 2 times, most recently from 304d626 to f674081 Compare February 22, 2026 01:50
…ith 13 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.1` | `2.3.14` |
| [@release-it/conventional-changelog](https://github.com/release-it/conventional-changelog) | `10.0.2` | `10.0.5` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.16.2` | `25.2.2` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.19.4` | `9.6.4` |
| [cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) | `3.0.1` | `3.3.0` |
| [glob](https://github.com/isaacs/node-glob) | `11.1.0` | `13.0.1` |
| [tsd](https://github.com/tsdjs/tsd) | `0.32.0` | `0.33.0` |
| [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.3` | `4.21.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.7` | `0.28.16` |
| [typedoc-plugin-frontmatter](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-frontmatter) | `1.3.0` | `1.3.1` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.18` |



Updates `@biomejs/biome` from 2.1.1 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 `@release-it/conventional-changelog` from 10.0.2 to 10.0.5
- [Release notes](https://github.com/release-it/conventional-changelog/releases)
- [Commits](release-it/conventional-changelog@10.0.2...10.0.5)

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

Updates `cspell` from 8.19.4 to 9.6.4
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v9.6.4/packages/cspell)

Updates `cz-conventional-changelog` from 3.0.1 to 3.3.0
- [Release notes](https://github.com/commitizen/cz-conventional-changelog/releases)
- [Commits](commitizen/cz-conventional-changelog@v3.0.1...v3.3.0)

Updates `glob` from 11.1.0 to 13.0.1
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v11.1.0...v13.0.1)

Updates `tsd` from 0.32.0 to 0.33.0
- [Release notes](https://github.com/tsdjs/tsd/releases)
- [Commits](tsdjs/tsd@v0.32.0...v0.33.0)

Updates `tsup` from 8.5.0 to 8.5.1
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.5.0...v8.5.1)

Updates `tsx` from 4.20.3 to 4.21.0
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.3...v4.21.0)

Updates `typedoc` from 0.28.7 to 0.28.16
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.7...v0.28.16)

Updates `typedoc-plugin-frontmatter` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-frontmatter/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-frontmatter@1.3.1/packages/typedoc-plugin-frontmatter)

Updates `typedoc-plugin-markdown` from 4.7.0 to 4.10.0
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases)
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md)
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.10.0/packages/typedoc-plugin-markdown)

Updates `vitest` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/vitest)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.14
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@release-it/conventional-changelog"
  dependency-version: 10.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: cspell
  dependency-version: 9.6.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: cz-conventional-changelog
  dependency-version: 3.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: glob
  dependency-version: 13.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: tsd
  dependency-version: 0.33.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: tsup
  dependency-version: 8.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typedoc
  dependency-version: 0.28.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typedoc-plugin-frontmatter
  dependency-version: 1.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-8ddfdd7b0b branch from f674081 to ba00b79 Compare February 23, 2026 01:05
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