Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 28, 2025

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

Package From To
@biomejs/biome 2.1.1 2.2.2
@types/node 22.16.2 24.3.0
cspell 8.19.4 9.2.0
cz-conventional-changelog 3.0.1 3.3.0
release-it 19.0.3 19.0.4
tsd 0.32.0 0.33.0
tsx 4.20.3 4.20.5
typedoc 0.28.7 0.28.11
typedoc-plugin-markdown 4.7.0 4.8.1
typescript 5.8.3 5.9.2

Updates @biomejs/biome from 2.1.1 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.16.2 to 24.3.0

Commits

Updates cspell from 8.19.4 to 9.2.0

Release notes

Sourced from cspell's releases.

v9.2.0

refactor: Support url based cache entries (#7639)


Features

fix: Support remote dependencies in cache (#7642)


Fixes

fix: Remove flat-cache dependency (#7636)

flat-cache v6 is not compatible with the cspell cache. Since flat-cache was mostly a pass through to flatted, it was better to just replace it.


refactor: move towards caching URLs (#7634)


... (truncated)

Changelog

Sourced from cspell's changelog.

v9.2.0 (2025-07-19)

refactor: Support url based cache entries (#7639)


Features

fix: Support remote dependencies in cache (#7642)


Fixes

fix: Remove flat-cache dependency (#7636)

flat-cache v6 is not compatible with the cspell cache. Since flat-cache was mostly a pass through to flatted, it was better to just replace it.


refactor: move towards caching URLs (#7634)


fix: Support async cache (#7631)


... (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 release-it from 19.0.3 to 19.0.4

Release notes

Sourced from release-it's releases.

Release 19.0.4

  • Replace lodash.get with custom get() function and add tests (#1231) (879a2ef69bb245d28cfe4abe4701ceefaadb6bee) - thanks @​AlejandroRM-DEV!
  • fix: set octokit log to {} instead of null (#1237) (6fc696f324897e133a9443064dfc6ef5dd827871) - thanks @​efstathiosntonas!
  • Update dependencies (2195b7935f7bece7e0f49bd13089fc0eb4f671aa)
Commits

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 tsx from 4.20.3 to 4.20.5

Release notes

Sourced from tsx's releases.

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


This release is also available on:

Commits
  • e6d1a47 docs: obfuscate aside classname
  • de2719d style: remove unused variable
  • 13f2954 chore: upgrade docs deps
  • 0504525 chore: upgrade manten
  • 132fdd8 test: assert require.cache
  • f057e7d test: require loop
  • a6f8f9f refactor: getFormat to handle all formats
  • 796053a fix: handle ambiguous packages
  • 471997a test: CJS & ESM race condition
  • a639836 fix: override Node's native TS formats (#733)
  • Additional commits viewable in compare view

Updates typedoc from 0.28.7 to 0.28.11

Release notes

Sourced from typedoc's releases.

v0.28.11

Features

  • Object properties declared with shorthand property assignment will now use the variable's comment if they do not have their own comment, #2999.

Bug Fixes

  • Fixed link resolution not working correctly in first comment on the file in some cases, #2994.
  • Optional methods are now rendered with a trailing ? in the reflection preview and signature, #2995.
  • The compilerOptions option now functions properly with non-boolean options, #3000.
  • Configuration errors within the compilerOptions option are now handled gracefully, #3000.
  • Fixed improper casing of "Type Declaration" header, #3002.

v0.28.10

Bug Fixes

  • Fixed inconsistent anchors on module pages for re-exports, #2990.
  • Markdown references which appear to be footnotes will no longer be checked for links, #2991.

v0.28.9

Features

  • Add support for TypeScript 5.9, #2989.

Bug Fixes

  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs when members inherited from a complex type alias, #2982.
  • Fixed automatic discovery of entry points when not running in packages mode, #2988.
  • Fixed discovery of package.json file when running with entry points containing a glob, #2985.

v0.28.8

Features

  • If using JS config files, the plugin option can now be given plugin functions to load.
  • Permit - within tag names to support typescript-json-schema's @TJS-type tag, #2972.
  • Exposed Context.createSymbolId for use by plugins.

Bug Fixes

  • Relative links in <img srcset> will now be discovered by TypeDoc, #2975.
  • Relative links in <source src> and <source srcset> elements will now be discovered by TypeDoc, #2975.
  • Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978

Thanks!

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.11 (2025-08-25)

Features

  • Object properties declared with shorthand property assignment will now use the variable's comment if they do not have their own comment, #2999.

Bug Fixes

  • Fixed link resolution not working correctly in first comment on the file in some cases, #2994.
  • Optional methods are now rendered with a trailing ? in the reflection preview and signature, #2995.
  • The compilerOptions option now functions properly with non-boolean options, #3000.
  • Configuration errors within the compilerOptions option are now handled gracefully, #3000.
  • Fixed improper casing of "Type Declaration" header, #3002.

v0.28.10 (2025-08-10)

Bug Fixes

  • Fixed inconsistent anchors on module pages for re-exports, #2990.
  • Markdown references which appear to be footnotes will no longer be checked for links, #2991.

v0.28.9 (2025-08-01)

Features

  • Add support for TypeScript 5.9, #2989.

Bug Fixes

  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs when members inherited from a complex type alias, #2982.
  • Fixed automatic discovery of entry points when not running in packages mode, #2988.
  • Fixed discovery of package.json file when running with entry points containing a glob, #2985.

v0.28.8 (2025-07-28)

Features

  • If using JS config files, the plugin function can now be given plugin functions to load.
  • Permit - within tag names to support typescript-json-schema's @TJS-type tag, #2972.
  • Exposed Context.createSymbolId for use by plugins.

Bug Fixes

  • Relative links in <img srcset> will now be discovered by TypeDoc, #2975.
  • Relative links in <source src> and <source srcset> elements will now be discovered by TypeDoc, #2975.
  • Improved inherited from/overwrites link discovery to point to parent properties in more cases, #2978

Thanks!

... (truncated)

Commits
  • 17347c9 Update changelog for release
  • 2077c80 Bump version to 0.28.11
  • 8f47c24 Fix rendering of "Type Declaration" header
  • 06a4239 Pick up shorthand property's variable comments
  • e5cd9d1 Fix rendering of optional methods
  • ef3a42e Convert compiler options before setting overrides
  • 708e77d Fix TS link resolution in first comment of file
  • 0489e32 Update changelog for release
  • 4a01cd2 Bump version to 0.28.10
  • 1f917bf Clear comment cache between conversions
  • Additional commits viewable in compare view

Updates typedoc-plugin-markdown from 4.7.0 to 4.8.1

Release notes

Sourced from typedoc-plugin-markdown's releases.

[email protected]

Patch Changes

  • Correctly handle empty markdown links (#836).

[email protected]

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).

[email protected]

Patch Changes

Changelog

Sourced from typedoc-plugin-markdown's changelog.

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
  • 6682592 Version Packages
  • 54b6d06 chore(all): fix npm
  • f98c0b6 fix(core): correctly handle empty markdown links
  • 880194d chore(all): added publish script
  • 7da57e2 Version Packages
  • 4f7cbf1 feat(core): exposed additional placeholders to "pageTitleTemplates" and adjus...
  • 5ad7a88 fix(core): fix incorrect link fragments
  • f872871 chore(core): updated changelog date
  • 74a649f Version Packages
  • 51b8f88 fix(core): fix missing segments in declaration titles that contain periods
  • 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

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 28, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-27e8aee101 branch from e44fbca to 5219e82 Compare August 28, 2025 21:21
…ith 10 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.1.1` | `2.2.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.16.2` | `24.3.0` |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.19.4` | `9.2.0` |
| [cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) | `3.0.1` | `3.3.0` |
| [release-it](https://github.com/release-it/release-it) | `19.0.3` | `19.0.4` |
| [tsd](https://github.com/tsdjs/tsd) | `0.32.0` | `0.33.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.3` | `4.20.5` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.7` | `0.28.11` |
| [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown) | `4.7.0` | `4.8.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |



Updates `@biomejs/biome` from 2.1.1 to 2.2.2
- [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/[email protected]/packages/@biomejs/biome)

Updates `@types/node` from 22.16.2 to 24.3.0
- [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.2.0
- [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.2.0/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 `release-it` from 19.0.3 to 19.0.4
- [Release notes](https://github.com/release-it/release-it/releases)
- [Changelog](https://github.com/release-it/release-it/blob/main/CHANGELOG.md)
- [Commits](release-it/release-it@19.0.3...19.0.4)

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 `tsx` from 4.20.3 to 4.20.5
- [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.20.5)

Updates `typedoc` from 0.28.7 to 0.28.11
- [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.11)

Updates `typedoc-plugin-markdown` from 4.7.0 to 4.8.1
- [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/[email protected]/packages/typedoc-plugin-markdown)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: cspell
  dependency-version: 9.2.0
  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: release-it
  dependency-version: 19.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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: tsx
  dependency-version: 4.20.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typedoc
  dependency-version: 0.28.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: typedoc-plugin-markdown
  dependency-version: 4.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-27e8aee101 branch from 5219e82 to df88beb Compare August 29, 2025 23:21
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