Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the dev-dependencies group with 8 updates:

Package From To
@microsoft/api-documenter 7.27.3 7.28.1
@microsoft/api-extractor 7.53.3 7.55.1
@types/node 20.19.24 20.19.25
@vitest/eslint-plugin 1.4.0 1.5.1
prettier 3.6.2 3.7.3
tsup 8.5.0 8.5.1
typescript-eslint 8.46.3 8.48.0
vitest 4.0.7 4.0.14

Updates @microsoft/api-documenter from 7.27.3 to 7.28.1

Changelog

Sourced from @​microsoft/api-documenter's changelog.

7.28.1

Fri, 21 Nov 2025 16:13:56 GMT

Version update only

7.28.0

Wed, 12 Nov 2025 01:12:56 GMT

Minor changes

  • Bump the @microsoft/tsdoc dependency to ~0.16.0.

7.27.4

Tue, 04 Nov 2025 08:15:14 GMT

Version update only

Commits

Updates @microsoft/api-extractor from 7.53.3 to 7.55.1

Changelog

Sourced from @​microsoft/api-extractor's changelog.

7.55.1

Fri, 21 Nov 2025 16:13:56 GMT

Version update only

7.55.0

Wed, 12 Nov 2025 01:12:56 GMT

Minor changes

  • Bump the @microsoft/tsdoc dependency to ~0.16.0.
  • Bump the @microsoft/tsdoc-config dependency to ~0.18.0.

7.54.0

Tue, 04 Nov 2025 08:15:14 GMT

Minor changes

  • Add a new setting IExtractorInvokeOptions.printApiReportDiff that makes build logs easier to diagnose by printing a diff of any changes to API report files (*.api.md).
  • Add a --print-api-report-diff CLI flag that causes a diff of any changes to API report files (*.api.md) to be printed.
Commits
  • a6dcf1a Bump versions [skip ci]
  • 05a77ca Update changelogs [skip ci]
  • ba53f2b Bump versions [skip ci]
  • 5a39dfe Update changelogs [skip ci]
  • 5b5c350 Bump decoupled local dependencies. (#5440)
  • 3f7b8f9 Bump versions [skip ci]
  • 6ae6a7a Update changelogs [skip ci]
  • 6d8ac64 Generate a JSON schemas artifact after publish. (#5429)
  • 41eeffd [API Extractor] Add support for printing a diff of changed API reports in non...
  • 29fe6d1 Bump decoupled local dependencies. (#5420)
  • See full diff in compare view

Updates @types/node from 20.19.24 to 20.19.25

Commits

Updates @vitest/eslint-plugin from 1.4.0 to 1.5.1

Release notes

Sourced from @​vitest/eslint-plugin's releases.

v1.5.1

   🐞 Bug Fixes

    View changes on GitHub

v1.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.4.4...v1.5.0

v1.4.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.4.3...v1.4.4

... (truncated)

Commits
  • cc85c0a chore: release v1.5.1
  • 4ea5673 fix(no-alias-methods): Align no-alias-methods rule with Vitest by aliasing to...
  • fb2b134 chore: release v1.5.0
  • bc95b10 feat: Add rule to recommended Vitest ESLint config (#827)
  • 54be66e fix(consistent-test-it): Handle aliased Vitest imports when enforcing consist...
  • cc5fcdb fix minor docs update
  • 13efaaf chore: release v1.4.4
  • db570c8 feat: add rule consistent-each-for (#826)
  • 962defb fix(no-identical-title): FP when using test.for (#825)
  • 5e5a64b docs(prefer-equality-matcher): correct (e)quality typo in description (#824)
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.7.3

Release notes

Sourced from prettier's releases.

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.3

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

3.7.2

diff

JavaScript: Fix string print when switching quotes (#18351 by @​fisker)

// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\'s .kind must be "method" or "field".');

JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @​kovsu)

// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ &lt;div class=${styles.banner}&gt;&lt;/div&gt;;
// Prettier 3.7.2
const html = /* HTML */ &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt;;

TypeScript: Fix comment in empty type literal (#18364 by @​fisker)

// Input
export type XXX = {
  // tbd
};
// Prettier 3.7.1
</tr></table>

... (truncated)

Commits
Maintainer changes

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


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 typescript-eslint from 8.46.3 to 8.48.0

Release notes

Sourced from typescript-eslint's releases.

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.48.0 (2025-11-24)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.47.0 (2025-11-17)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.46.4 (2025-11-10)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates vitest from 4.0.7 to 4.0.14

Release notes

Sourced from vitest's releases.

v4.0.14

   🚀 Experimental Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.13

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.12

   🐞 Bug Fixes

... (truncated)

Commits
  • 9ca74cf chore: release v4.0.14
  • 821aa20 feat(runner): Add full names to tasks (#9087)
  • 1256b5c fix: rename collect to import, remove prepare (#9091)
  • 3326cc9 fix: collect the duration of external imports (#9097)
  • 379185b fix(pool): init VITEST_POOL_ID + VITEST_WORKER_ID before environment setu...
  • 2c468ee fix(jsdom): reuse abort signals if possible (#9090)
  • e1b2e08 fix: externalize before caching (#9077)
  • acc5152 perf: replace debug with obug (#9057)
  • 73b54ce chore: release v4.0.13
  • b27e002 perf: avoid fetchModule roundtrip if the module is cached (#9075)
  • 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 minor We expect this work to be a minor semver change npm Pull request with npm dependency update skip changelog No documentation needed for this PR labels Dec 1, 2025
@dependabot dependabot bot added minor We expect this work to be a minor semver change dependencies Pull requests that update a dependency file npm Pull request with npm dependency update skip changelog No documentation needed for this PR labels Dec 1, 2025
Bumps the dev-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@microsoft/api-documenter](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-documenter) | `7.27.3` | `7.28.1` |
| [@microsoft/api-extractor](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor) | `7.53.3` | `7.55.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.19.24` | `20.19.25` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.4.0` | `1.5.1` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` |
| [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.3` | `8.48.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.0.7` | `4.0.14` |


Updates `@microsoft/api-documenter` from 7.27.3 to 7.28.1
- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/api-documenter/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-documenter_v7.28.1/apps/api-documenter)

Updates `@microsoft/api-extractor` from 7.53.3 to 7.55.1
- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/api-extractor/CHANGELOG.md)
- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-extractor_v7.55.1/apps/api-extractor)

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

Updates `@vitest/eslint-plugin` from 1.4.0 to 1.5.1
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.4.0...v1.5.1)

Updates `prettier` from 3.6.2 to 3.7.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.7.3)

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 `typescript-eslint` from 8.46.3 to 8.48.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/typescript-eslint)

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

---
updated-dependencies:
- dependency-name: "@microsoft/api-documenter"
  dependency-version: 7.28.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@microsoft/api-extractor"
  dependency-version: 7.55.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 20.19.25
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: prettier
  dependency-version: 3.7.3
  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: typescript-eslint
  dependency-version: 8.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: vitest
  dependency-version: 4.0.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dev-dependencies-b61e00d744 branch from c0f71fd to ce5b1e9 Compare December 2, 2025 18:09
@colincasey colincasey enabled auto-merge (squash) December 12, 2025 19:32
@colincasey colincasey merged commit cea71c9 into master Dec 12, 2025
11 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-dependencies-b61e00d744 branch December 12, 2025 19:33
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 minor We expect this work to be a minor semver change npm Pull request with npm dependency update skip changelog No documentation needed for this PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants