Skip to content

chore(deps): update dependency prettier to v3.9.4#306

Open
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/prettier-3.x
Open

chore(deps): update dependency prettier to v3.9.4#306
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/prettier-3.x

Conversation

@renovate

@renovate renovate Bot commented Nov 30, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.6.23.9.4 age confidence

Release Notes

prettier/prettier (prettier)

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}

v3.8.1

Compare Source

diff

Include available printers in plugin type declarations (#​18706 by @​porada)
// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

v3.8.0

Compare Source

diff

🔗 Release Notes

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.0 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 enabled auto-merge November 30, 2025 09:10
@changeset-bot

changeset-bot Bot commented Nov 30, 2025

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: ce5587f

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@tcd-devkit/tsconfig Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai

coderabbitai Bot commented Nov 30, 2025

Copy link
Copy Markdown

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.

@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from a4cc214 to b1baa9e Compare November 30, 2025 12:56
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.0 chore(deps): update dependency prettier to v3.7.1 Nov 30, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from aa7f752 to c8e1b90 Compare December 1, 2025 21:41
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.1 chore(deps): update dependency prettier to v3.7.2 Dec 1, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 4d3a591 to 37195fc Compare December 2, 2025 20:25
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.2 chore(deps): update dependency prettier to v3.7.3 Dec 2, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from e632011 to 73f8b13 Compare December 6, 2025 05:46
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.7.3 chore(deps): update dependency prettier to v3.7.4 Dec 6, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 986aa27 to 4535c59 Compare December 31, 2025 14:07
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 0935e88 to efe7a84 Compare January 8, 2026 18:06
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 52e2027 to ba6c29e Compare January 18, 2026 01:04
@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 3 times, most recently from e2dcca7 to fe8c511 Compare January 24, 2026 17:55
@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 5f1884d to 65ba119 Compare February 2, 2026 18:57
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 9536da1 to 7c032cd Compare February 17, 2026 19:44
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 1504cda to 15dd8b8 Compare March 5, 2026 19:50
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 74df297 to 011ea14 Compare March 13, 2026 18:07
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 31da3d9 to f153409 Compare April 1, 2026 20:44
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 7854c3c to 0552439 Compare April 13, 2026 05:10
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.1 chore(deps): update dependency prettier to v3.8.2 Apr 13, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from c37ca8b to 5794688 Compare April 18, 2026 02:37
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.2 chore(deps): update dependency prettier to v3.8.3 Apr 18, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 0f8fc19 to 3f3ff93 Compare April 29, 2026 11:50
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 4230720 to ed75e06 Compare May 18, 2026 10:35
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 5c6d600 to bfa15f6 Compare May 21, 2026 11:35
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 9315f38 to d3e8aaa Compare June 1, 2026 18:57
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 40fe779 to c66cea3 Compare June 13, 2026 08:28
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 821957d to afa67d5 Compare June 23, 2026 13:43
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.3 chore(deps): update dependency prettier to v3.8.4 Jun 23, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 9e351a8 to 79ccf3a Compare July 10, 2026 18:56
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.4 chore(deps): update dependency prettier to v3.8.5 Jul 10, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from b3cb54b to 138f91b Compare July 11, 2026 13:16
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.8.5 chore(deps): update dependency prettier to v3.9.0 Jul 11, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from f17e5df to 2a3ec4e Compare July 12, 2026 03:06
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.9.0 chore(deps): update dependency prettier to v3.9.1 Jul 12, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch 2 times, most recently from 608abdf to 28ea954 Compare July 13, 2026 19:15
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.9.1 chore(deps): update dependency prettier to v3.9.3 Jul 13, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x branch from 54a59d4 to 67af4a8 Compare July 14, 2026 02:52
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v3.9.3 chore(deps): update dependency prettier to v3.9.4 Jul 14, 2026
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.

0 participants