Skip to content

deps(ts): Bump the all group across 1 directory with 8 updates#287

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/ts/all-ad354031ab
Open

deps(ts): Bump the all group across 1 directory with 8 updates#287
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/ts/all-ad354031ab

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all group with 8 updates in the /ts directory:

Package From To
@biomejs/biome 2.3.2 2.3.13
@tsconfig/node20 20.1.6 20.1.8
pkgroll 2.20.1 2.23.0
publint 0.3.15 0.3.17
tsx 4.20.6 4.21.0
typedoc 0.28.14 0.28.16
@kineticcafe/result 0.6.2 0.6.3
commander 14.0.2 14.0.3

Updates @biomejs/biome from 2.3.2 to 2.3.13

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.13

2.3.13

Patch Changes

  • #8815 f924f23 Thanks @​dyc3! - Improved useVueValidVOn to be more closely aligned with the source rule. It will now properly allow modifiers for all possible keyboard events. It should have better performance when there are no violations of the rule as well.

    Now treated valid:

    <div @keydown.arrow-down="handler"></div>
    <div @keydown.a="handler"></div>
    <div @keydown.b="handler"></div>
    <div @keydown.27="foo"></div>
  • #8856 85f81f9 Thanks @​dyc3! - Fixed #8710: Biome now parses Vue dynamic slot shorthand arguments that use template literals in [].

  • #8850 2a190e0 Thanks @​dyc3! - Fixed #8708: Tailwind @utility directives now parse functional utility names like px-* when Tailwind directives are enabled.

  • #8863 79386e0 Thanks @​dyc3! - Fixed an issue with biome migrate eslint where it couldn't detect rules for CSS, GraphQL, and HTML.

  • #8771 6f56b6e Thanks @​lghuahua! - Fix the --reporter=summary output incorrectly merging and displaying wrong issue counts for different rules. Fixes #8730

  • #8714 ac3a71f Thanks @​Netail! - Added new nursery rule use-consistent-enum-value-type. This rule disallows enums from having both number and string members.

What's Changed

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.13

Patch Changes

  • #8815 f924f23 Thanks @​dyc3! - Improved useVueValidVOn to be more closely aligned with the source rule. It will now properly allow modifiers for all possible keyboard events. It should have better performance when there are no violations of the rule as well.

    Now treated valid:

    <div @keydown.arrow-down="handler"></div>
    <div @keydown.a="handler"></div>
    <div @keydown.b="handler"></div>
    <div @keydown.27="foo"></div>
  • #8856 85f81f9 Thanks @​dyc3! - Fixed #8710: Biome now parses Vue dynamic slot shorthand arguments that use template literals in [].

  • #8850 2a190e0 Thanks @​dyc3! - Fixed #8708: Tailwind @utility directives now parse functional utility names like px-* when Tailwind directives are enabled.

  • #8863 79386e0 Thanks @​dyc3! - Fixed an issue with biome migrate eslint where it couldn't detect rules for CSS, GraphQL, and HTML.

  • #8771 6f56b6e Thanks @​lghuahua! - Fix the --reporter=summary output incorrectly merging and displaying wrong issue counts for different rules. Fixes #8730

  • #8714 ac3a71f Thanks @​Netail! - Added new nursery rule use-consistent-enum-value-type. This rule disallows enums from having both number and string members.

2.3.12

Patch Changes

  • #8653 047576d Thanks @​dyc3! - Added new nursery rule noDuplicateAttributes to forbid duplicate attributes in HTML elements.

  • #8648 96d09f4 Thanks @​BaeSeokJae! - Added a new nursery rule noVueOptionsApi.

    Biome now reports Vue Options API usage, which is incompatible with Vue 3.6's Vapor Mode. This rule detects Options API patterns in <script> blocks, defineComponent(), and createApp() calls, helping prepare codebases for Vapor Mode adoption.

    For example, the following now triggers this rule:

    <script>
    export default {
      data() {
        return { count: 0 };
      },
    };
    </script>
  • #8832 b08270b Thanks @​Exudev! - Fixed #8809, #7985, and #8136: the noSecrets rule no longer reports false positives on common CamelCase identifiers like paddingBottom, backgroundColor, unhandledRejection, uncaughtException, and IngestGatewayLogGroup.

... (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 @tsconfig/node20 from 20.1.6 to 20.1.8

Commits

Updates pkgroll from 2.20.1 to 2.23.0

Release notes

Sourced from pkgroll's releases.

v2.23.0

2.23.0 (2026-01-30)

Features

  • show import chain in build errors (ba9d81c)

v2.22.0

2.22.0 (2026-01-26)

Bug Fixes

  • add skipSelf to resolve-js-to-ts source resolution (ec0c849)
  • close bundle result in watch mode to prevent memory leaks (f69bfbb)
  • close rollup bundle after build to free resources (323b5a3)

Features

  • support sourcemaps for .d.ts files (3316ebe)

v2.21.5

2.21.5 (2026-01-06)

Bug Fixes

  • correct sourcemap line mappings for TypeScript files (#144) (f5696a2)

v2.21.4

2.21.4 (2025-11-28)

Bug Fixes

  • dont resolve .js to .ts in external dependency (03c7283), closes #141

v2.21.3

2.21.3 (2025-11-22)

Bug Fixes

  • resolve implicit external path (d972431)

v2.21.2

2.21.2 (2025-11-22)

... (truncated)

Commits
  • ba9d81c feat: show import chain in build errors
  • 3316ebe feat: support sourcemaps for .d.ts files
  • 84c4156 refactor(esbuild): use native Rollup hook filtering
  • f69bfbb fix: close bundle result in watch mode to prevent memory leaks
  • 323b5a3 fix: close rollup bundle after build to free resources
  • ec0c849 fix: add skipSelf to resolve-js-to-ts source resolution
  • bd3d939 chore: remove unused @​rollup/plugin-inject dependency
  • 72fb5cc ci: migrate to npm trusted publishers (OIDC)
  • f5696a2 fix: correct sourcemap line mappings for TypeScript files (#144)
  • 03c7283 fix: dont resolve .js to .ts in external dependency
  • Additional commits viewable in compare view
Maintainer changes

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


Updates publint from 0.3.15 to 0.3.17

Release notes

Sourced from publint's releases.

publint@0.3.17

Patch Changes

  • Fix packing packages with pnpm when publishConfig.directory is set (#216)

  • Updated dependencies [2dcb107]:

    • @​publint/pack@​0.1.3

publint@0.3.16

Patch Changes

  • Re-enable file existence checks for TS and TSX files if they do not use custom conditions. In v0.3.10, this was done unconditionally instead which missed catching possible file typos if only common conditions are used. (7b1408e)
Changelog

Sourced from publint's changelog.

0.3.17

Patch Changes

  • Fix packing packages with pnpm when publishConfig.directory is set (#216)

  • Updated dependencies [2dcb107]:

    • @​publint/pack@​0.1.3

0.3.16

Patch Changes

  • Re-enable file existence checks for TS and TSX files if they do not use custom conditions. In v0.3.10, this was done unconditionally instead which missed catching possible file typos if only common conditions are used. (7b1408e)
Commits

Updates tsx from 4.20.6 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:

Commits

Updates typedoc from 0.28.14 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.
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.
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 @kineticcafe/result from 0.6.2 to 0.6.3

Changelog

Sourced from @​kineticcafe/result's changelog.

0.6.3 / 2026-01-5

  • Dependency updates.
Commits

Updates commander from 14.0.2 to 14.0.3

Release notes

Sourced from commander's releases.

v14.0.3

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)
Changelog

Sourced from commander's changelog.

[14.0.3] (2026-01-31)

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)
Commits

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

Bumps the all group with 8 updates in the /ts directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.2` | `2.3.13` |
| [@tsconfig/node20](https://github.com/tsconfig/bases/tree/HEAD/bases) | `20.1.6` | `20.1.8` |
| [pkgroll](https://github.com/privatenumber/pkgroll) | `2.20.1` | `2.23.0` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.3.15` | `0.3.17` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.21.0` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.14` | `0.28.16` |
| [@kineticcafe/result](https://github.com/KineticCafe/result) | `0.6.2` | `0.6.3` |
| [commander](https://github.com/tj/commander.js) | `14.0.2` | `14.0.3` |



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

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

Updates `pkgroll` from 2.20.1 to 2.23.0
- [Release notes](https://github.com/privatenumber/pkgroll/releases)
- [Commits](privatenumber/pkgroll@v2.20.1...v2.23.0)

Updates `publint` from 0.3.15 to 0.3.17
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/publint@0.3.17/packages/publint)

Updates `tsx` from 4.20.6 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.6...v4.21.0)

Updates `typedoc` from 0.28.14 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.14...v0.28.16)

Updates `@kineticcafe/result` from 0.6.2 to 0.6.3
- [Changelog](https://github.com/KineticCafe/result/blob/main/Changelog.md)
- [Commits](https://github.com/KineticCafe/result/commits)

Updates `commander` from 14.0.2 to 14.0.3
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v14.0.2...v14.0.3)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@tsconfig/node20"
  dependency-version: 20.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pkgroll
  dependency-version: 2.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: publint
  dependency-version: 0.3.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tsx
  dependency-version: 4.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typedoc
  dependency-version: 0.28.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@kineticcafe/result"
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: commander
  dependency-version: 14.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2026
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