Skip to content

chore(deps): update dependency prettier to ^3.8.2#850

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/eslint-and-prettier
Open

chore(deps): update dependency prettier to ^3.8.2#850
renovate[bot] wants to merge 1 commit intomainfrom
renovate/eslint-and-prettier

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) ^3.4.2^3.8.2 age adoption passing confidence

Release Notes

prettier/prettier (prettier)

v3.8.2

Compare Source

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

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

v3.5.3

Compare Source

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#​17196 by @​fisker)
// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);

// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;

// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • Branch creation
    • "after 9pm,before 9am"
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, 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 renovate label Feb 9, 2025
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.0 chore(deps): update dependency prettier to ^3.5.1 Feb 13, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from affe287 to 6c5e7a0 Compare February 13, 2025 16:23
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.1 chore(deps): update dependency prettier to ^3.5.2 Feb 22, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 6c5e7a0 to 9f67cd4 Compare February 22, 2025 14:26
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.2 chore(deps): update dependency prettier to ^3.5.3 Mar 3, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 9f67cd4 to 9b8d2a4 Compare March 3, 2025 18:05
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.3 chore(deps): update dependency prettier to ^3.6.0 Jun 23, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 5f2913d to 72ebb1c Compare June 25, 2025 18:04
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.6.0 chore(deps): update dependency prettier to ^3.6.1 Jun 25, 2025
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.6.1 chore(deps): update dependency prettier to ^3.6.2 Jun 27, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 72ebb1c to 1fb2918 Compare June 27, 2025 14:47
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 1fb2918 to 5deda5e Compare September 25, 2025 16:56
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 5deda5e to c334169 Compare November 19, 2025 14:39
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from c334169 to 46a0050 Compare November 27, 2025 17:34
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.6.2 chore(deps): update dependency prettier to ^3.7.1 Nov 27, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from 46a0050 to 9a1616d Compare November 28, 2025 21:27
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.7.1 chore(deps): update dependency prettier to ^3.7.2 Nov 28, 2025
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.7.2 chore(deps): update dependency prettier to ^3.7.3 Nov 29, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 3 times, most recently from 80c4008 to f240694 Compare December 6, 2025 13:37
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.7.3 chore(deps): update dependency prettier to ^3.7.4 Dec 6, 2025
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from f240694 to 49c84dc Compare January 18, 2026 14:49
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.7.4 chore(deps): update dependency prettier to ^3.8.0 Jan 18, 2026
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch 2 times, most recently from 45b08f9 to a17c567 Compare January 24, 2026 21:25
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.8.0 chore(deps): update dependency prettier to ^3.8.1 Jan 24, 2026
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from a17c567 to face8e5 Compare February 12, 2026 18:31
@renovate renovate bot force-pushed the renovate/eslint-and-prettier branch from face8e5 to abb70ae Compare April 13, 2026 13:49
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.8.1 chore(deps): update dependency prettier to ^3.8.2 Apr 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants