Skip to content

chore(deps): update dependency prettier to v3.8.1#2120

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/prettier-3.x-lockfile
Open

chore(deps): update dependency prettier to v3.8.1#2120
renovate[bot] wants to merge 1 commit intomainfrom
renovate/prettier-3.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 27, 2026

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.6.23.8.1 age confidence

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 - At any time (no schedule defined), 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 requested a review from a team as a code owner February 27, 2026 17:39
@github-actions
Copy link

Warning

This PR is blocked from merging because a required semver label is missing.

major, minor, patch, no-release

You'll need to add one before this PR can be merged.

@github-actions github-actions bot added the size/s Small size PR label Feb 27, 2026
@github-actions
Copy link

github-actions bot commented Feb 27, 2026

Dependency Review

✅ No vulnerabilities or license issues found.

Snapshot Warnings

⚠️: No snapshots were found for the head SHA 64b9f1e.
Ensure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice.

Scanned Files

  • website/pnpm-lock.yaml

@mergify mergify bot added the auto-update This PR was automatically generated label Feb 27, 2026
@codecov
Copy link

codecov bot commented Feb 27, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 77.26%. Comparing base (2be2909) to head (0ee581d).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #2120      +/-   ##
==========================================
+ Coverage   77.21%   77.26%   +0.04%     
==========================================
  Files        1018     1018              
  Lines       96368    96368              
==========================================
+ Hits        74415    74458      +43     
+ Misses      17755    17710      -45     
- Partials     4198     4200       +2     
Flag Coverage Δ
unittests 77.26% <ø> (+0.04%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.
see 8 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 03fccfb to 2dd9e3e Compare February 27, 2026 18:26
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 2dd9e3e to 04ee63a Compare March 1, 2026 22:08
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 04ee63a to 4b7dabe Compare March 2, 2026 02:32
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 4b7dabe to a7716cb Compare March 3, 2026 01:52
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from a7716cb to cd92cef Compare March 3, 2026 06:35
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from cd92cef to 5d8e45b Compare March 3, 2026 15:34
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 5d8e45b to 345dde9 Compare March 3, 2026 16:30
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 345dde9 to 9b02e1f Compare March 3, 2026 20:26
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 9b02e1f to f326d1e Compare March 3, 2026 21:22
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from f326d1e to 663c4c0 Compare March 4, 2026 00:33
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 663c4c0 to 033fa86 Compare March 4, 2026 03:47
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 033fa86 to cfbc297 Compare March 4, 2026 05:48
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 071a410 to be9f6a3 Compare March 5, 2026 19:48
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from be9f6a3 to dadb535 Compare March 5, 2026 22:40
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from dadb535 to f0322cb Compare March 9, 2026 19:11
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from f0322cb to a056a8a Compare March 10, 2026 04:04
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from a056a8a to 27beaf0 Compare March 10, 2026 19:11
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 27beaf0 to e9b22db Compare March 10, 2026 20:26
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from e9b22db to 5d4b6a8 Compare March 11, 2026 02:29
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 5d4b6a8 to b2a37e7 Compare March 11, 2026 03:12
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from b2a37e7 to f0c59ef Compare March 11, 2026 03:50
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from f0c59ef to 6688ead Compare March 11, 2026 05:31
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 6688ead to 5fe9305 Compare March 12, 2026 03:50
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 5fe9305 to b6cde44 Compare March 12, 2026 17:02
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from b6cde44 to 7af6455 Compare March 13, 2026 05:45
@renovate renovate bot force-pushed the renovate/prettier-3.x-lockfile branch from 7af6455 to c05e955 Compare March 13, 2026 20:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-update This PR was automatically generated size/s Small size PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants