Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Type Update Change OpenSSF
prettier (source) devDependencies minor 3.6.23.8.1 OpenSSF Scorecard

Release Notes

prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

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 - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Europe/Berlin, 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.

🔕 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 the Type: Dependency The issue is a dependency update. label Dec 8, 2025
@renovate renovate bot requested a review from a team as a code owner December 8, 2025 02:58
@renovate renovate bot added the Type: Dependency The issue is a dependency update. label Dec 8, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 8, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions bot added Template: Webcomponent Issues regarding the webcomponent template. Template: Frontend Issues regarding the frontend template. labels Dec 8, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 15 times, most recently from f6b5e45 to cf2aec3 Compare December 15, 2025 03:41
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 6 times, most recently from 31c66cd to 672a760 Compare December 22, 2025 03:09
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 3 times, most recently from 108cd54 to 68ba99f Compare December 22, 2025 15:15
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 5 times, most recently from d3eac97 to cbae7c8 Compare December 29, 2025 10:55
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 3 times, most recently from de6688e to 952e05b Compare January 5, 2026 12:05
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 3 times, most recently from a23214c to 9268ad7 Compare January 18, 2026 02:47
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.7.4 chore(deps): update dependency prettier to v3.8.0 Jan 18, 2026
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 4 times, most recently from 3c02bff to 81cd33f Compare January 24, 2026 22:50
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.8.0 chore(deps): update dependency prettier to v3.8.1 Jan 24, 2026
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 81cd33f to 8698412 Compare January 27, 2026 09:55
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8698412 to 369a283 Compare January 27, 2026 09:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Template: Frontend Issues regarding the frontend template. Template: Webcomponent Issues regarding the webcomponent template. Type: Dependency The issue is a dependency update.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants