Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@types/node (source) 24.10.1 -> 24.10.2 age confidence devDependencies patch
actions/checkout v6.0.0 -> v6.0.1 age confidence action patch
actions/setup-node v6.0.0 -> v6.1.0 age confidence action minor
eslint-plugin-jsdoc 61.4.1 -> 61.5.0 age confidence devDependencies minor
prettier (source) 3.6.2 -> 3.7.4 age confidence devDependencies minor
ts-jest (source) 29.4.5 -> 29.4.6 age confidence devDependencies patch
typescript-eslint (source) 8.47.0 -> 8.49.0 age confidence devDependencies minor
wit-bindgen 0.48 -> 0.49 age confidence dependencies minor

Release Notes

actions/checkout (actions/checkout)

v6.0.1

Compare Source

actions/setup-node (actions/setup-node)

v6.1.0

Compare Source

What's Changed

Enhancement:
Dependency updates:
Documentation update:

Full Changelog: actions/setup-node@v6...v6.1.0

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v61.5.0

Compare Source

Features
  • check-tag-names, require-template, check-template-names: make typeParam a non-preferred alias for template (3cd7cbd)

v61.4.2

Compare Source

Bug Fixes
  • require-rejects: reflect proper tag name in error message (44b2631)
prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

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

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

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 */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

kulshekhar/ts-jest (ts-jest)

v29.4.6

Compare Source

Bug Fixes
typescript-eslint/typescript-eslint (typescript-eslint)

v8.49.0

Compare Source

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.

v8.48.1

Compare Source

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.

v8.48.0

Compare Source

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.

bytecodealliance/wit-bindgen (wit-bindgen)

v0.49.0

Compare Source

What's Changed

Full Changelog: bytecodealliance/wit-bindgen@v0.48.1...v0.49.0


Configuration

📅 Schedule: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-updates branch 2 times, most recently from 37e5936 to 5b38dbc Compare November 24, 2025 09:51
@renovate renovate bot changed the title build(deps): update all dependencies updates build(deps): update actions/checkout action to v5.0.1 Nov 24, 2025
@renovate renovate bot changed the title build(deps): update actions/checkout action to v5.0.1 build(deps): update actions/checkout action to v5.0.1 - autoclosed Nov 24, 2025
@renovate renovate bot closed this Nov 24, 2025
@renovate renovate bot deleted the renovate/all-updates branch November 24, 2025 13:18
@renovate renovate bot changed the title build(deps): update actions/checkout action to v5.0.1 - autoclosed build(deps): update all dependencies updates Nov 29, 2025
@renovate renovate bot reopened this Nov 29, 2025
@renovate renovate bot force-pushed the renovate/all-updates branch 8 times, most recently from f66993f to 36e03a6 Compare December 4, 2025 04:57
@renovate renovate bot force-pushed the renovate/all-updates branch 2 times, most recently from febeaa9 to fdf6a72 Compare December 7, 2025 18:51
@renovate renovate bot force-pushed the renovate/all-updates branch from fdf6a72 to 5263776 Compare December 9, 2025 02:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant