Skip to content

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

Open
postalcode-renovate-ci[bot] wants to merge 1 commit into
mainfrom
renovate/prettier-3.x-lockfile
Open

chore(deps): update dependency prettier to v3.9.4#69
postalcode-renovate-ci[bot] wants to merge 1 commit into
mainfrom
renovate/prettier-3.x-lockfile

Conversation

@postalcode-renovate-ci

@postalcode-renovate-ci postalcode-renovate-ci Bot commented Apr 11, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.8.13.9.4 age confidence

Release Notes

prettier/prettier (prettier)

v3.9.4

Compare Source

diff

Angular: Format @content(name) -> @content (name) to align with other block syntax (#​19499 by @​fisker)
<!-- Input -->
<FancyButton [label]="title">
  @&#8203;content (icon) {
    <span>Icon!</span>
  }
  @&#8203;content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

<!-- Prettier 3.9.3 -->
<FancyButton [label]="title">
  @&#8203;content(icon) {
    <span>Icon!</span>
  }
  @&#8203;content(description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

<!-- Prettier 3.9.4 -->
<FancyButton [label]="title">
  @&#8203;content (icon) {
    <span>Icon!</span>
  }
  @&#8203;content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>

v3.9.3

Compare Source

diff

Markdown: Fix unexpected removal of characters in liquid syntax (#​19489 by @​seiyab)
// Input
<!-- Input -->
{{ page.title
}} text

<!-- Prettier 3.9.1 -->
{{ page.title
 text

<!-- Prettier 3.9.3 -->
{{ page.title
}} text
TypeScript: Allow decorators to be used with declare on class fields (#​19492 by @​evoactivity)

Extensively used within the Ember ecosystem, decorators with declare on class fields will ignore the babel parser error and allow Prettier to format the code without breaking it.

// Input
export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
  @&#8203;service declare server: ServerService;
}

// Prettier 3.9.1
// SyntaxError: Decorators can't be used with a declare field. (2:3)
//  1 | export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
//> 2 |   @&#8203;service declare server: ServerService;
//    |   ^
//  3 | }

// Prettier 3.9.3
export default class ProjectStatusComponent extends Component<ProjectStatusSig> {
  @&#8203;service declare server: ServerService;
}

v3.9.2

Compare Source

v3.9.1

Compare Source

diff

CLI: Fix ignored file has been cached incorrectly (#​19483 by @​kovsu)

Bug details #​18016

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

diff

Flow: Support readonly as a variance annotation (#​19022 by @​marcoww6)

Flow now accepts readonly as a property variance annotation, equivalent to + (covariant/read-only).

// Input
type T = {
  readonly foo: string,
};

// Prettier 3.8.4
SyntaxError

// Prettier 3.8.5
type T = {
  readonly foo: string,
};

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) }}

Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • 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 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 has been generated by Mend Renovate.

@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from 59f93da to 4edf347 Compare April 16, 2026 00:29
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.8.2 chore(deps): update dependency prettier to v3.8.3 Apr 16, 2026
@postalcode-renovate-ci

Copy link
Copy Markdown
Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from 4edf347 to 87afe7e Compare June 10, 2026 00:44
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.8.3 chore(deps): update dependency prettier to v3.8.4 Jun 10, 2026
@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from 87afe7e to 02758fe Compare June 27, 2026 00:40
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.8.4 chore(deps): update dependency prettier to v3.8.5 Jun 27, 2026
@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from 02758fe to ae551c6 Compare June 28, 2026 00:41
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.8.5 chore(deps): update dependency prettier to v3.9.1 Jun 28, 2026
@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from ae551c6 to 9877b9c Compare June 30, 2026 00:41
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.9.1 chore(deps): update dependency prettier to v3.9.3 Jun 30, 2026
@postalcode-renovate-ci postalcode-renovate-ci Bot force-pushed the renovate/prettier-3.x-lockfile branch from 9877b9c to 9d03910 Compare July 1, 2026 00:43
@postalcode-renovate-ci postalcode-renovate-ci Bot changed the title chore(deps): update dependency prettier to v3.9.3 chore(deps): update dependency prettier to v3.9.4 Jul 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants