Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 4, 2025

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.6.23.7.4 age confidence

Release Notes

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


Configuration

📅 Schedule: Branch creation - Monday through Friday ( * * * * 1-5 ) in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 4, 2025
@renovate renovate bot enabled auto-merge (squash) December 4, 2025 09:16
@vercel
Copy link

vercel bot commented Dec 4, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
blog Ready Ready Preview, Comment Jan 2, 2026 4:42pm

renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 4, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from a65bec2 to e472129 Compare December 4, 2025 15:53
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.7.0 chore(deps): update dependency prettier to v3.7.1 Dec 4, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 4, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 5, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from f3159eb to a69e1f7 Compare December 22, 2025 17:11
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from a69e1f7 to 14eebd8 Compare December 22, 2025 22:32
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 14eebd8 to 82b6d82 Compare December 23, 2025 00:40
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 82b6d82 to a2570b7 Compare December 23, 2025 09:52
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from a2570b7 to ec4e082 Compare December 23, 2025 21:06
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from ec4e082 to 5be8634 Compare December 24, 2025 17:06
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 5be8634 to 8fe485d Compare December 25, 2025 01:01
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8fe485d to a8ebe7f Compare December 25, 2025 05:51
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from a8ebe7f to 17bb8c0 Compare December 26, 2025 06:09
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 17bb8c0 to 20b8700 Compare December 26, 2025 09:12
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 20b8700 to a84d976 Compare December 30, 2025 00:32
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from a84d976 to 038dd76 Compare December 30, 2025 05:02
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 038dd76 to 812cbeb Compare December 30, 2025 16:56
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.

1 participant