Skip to content

Update dependency prettier to v3.9.0#38

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

Update dependency prettier to v3.9.0#38
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/prettier-3.x-lockfile

Conversation

@renovate

@renovate renovate Bot commented Jan 6, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 3.3.33.9.0 age adoption passing confidence

Release Notes

prettier/prettier (prettier)

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

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

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 4am on Monday"
  • 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.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jan 6, 2025

Copy link
Copy Markdown

Deploying linkbase with  Cloudflare Pages  Cloudflare Pages

Latest commit: d73f489
Status:🚫  Build failed.

View logs

@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 77ba2f8 to 9ac5470 Compare January 30, 2025 17:41
@renovate renovate Bot changed the title Update dependency prettier to v3.4.2 Update dependency prettier to v3.5.0 Feb 9, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 9ac5470 to 262a0f9 Compare February 9, 2025 14:44
@renovate renovate Bot changed the title Update dependency prettier to v3.5.0 Update dependency prettier to v3.5.1 Feb 13, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 262a0f9 to 1cc02ca Compare February 13, 2025 15:13
@renovate renovate Bot changed the title Update dependency prettier to v3.5.1 Update dependency prettier to v3.5.2 Feb 22, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 1cc02ca to 7b513f2 Compare February 22, 2025 07:12
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 7b513f2 to 743053d Compare March 3, 2025 02:09
@renovate renovate Bot changed the title Update dependency prettier to v3.5.2 Update dependency prettier to v3.5.3 Mar 3, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 3 times, most recently from ec438bb to 5316e9f Compare March 17, 2025 12:46
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 5316e9f to 725e1b0 Compare April 1, 2025 12:50
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 725e1b0 to 8457b0a Compare April 24, 2025 09:51
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 8457b0a to 8af4d28 Compare May 19, 2025 18:06
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 68a9525 to d63a34b Compare June 4, 2025 13:24
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 5dd6510 to f3dc42c Compare June 23, 2025 02:55
@renovate renovate Bot changed the title Update dependency prettier to v3.5.3 Update dependency prettier to v3.6.0 Jun 23, 2025
@renovate renovate Bot changed the title Update dependency prettier to v3.6.0 Update dependency prettier to v3.6.1 Jun 25, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 6608d20 to 0641734 Compare June 27, 2025 03:10
@renovate renovate Bot changed the title Update dependency prettier to v3.6.1 Update dependency prettier to v3.6.2 Jun 27, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 0641734 to 7d92c36 Compare July 2, 2025 19:42
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 08310fc to cd3be0f Compare August 13, 2025 16:48
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from cd3be0f to d147b15 Compare August 19, 2025 14:55
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from d147b15 to dfafbab Compare September 25, 2025 19:28
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from dfafbab to 18f0046 Compare November 10, 2025 17:38
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 18f0046 to 10a240f Compare November 27, 2025 11:47
@renovate renovate Bot changed the title Update dependency prettier to v3.6.2 Update dependency prettier to v3.7.1 Nov 27, 2025
@renovate renovate Bot changed the title Update dependency prettier to v3.7.1 Update dependency prettier to v3.7.2 Nov 28, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 1c5aa0e to ad87aaa Compare November 29, 2025 17:57
@renovate renovate Bot changed the title Update dependency prettier to v3.7.2 Update dependency prettier to v3.7.3 Nov 29, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from ad87aaa to 7bec8de Compare December 3, 2025 06:52
@renovate renovate Bot changed the title Update dependency prettier to v3.7.3 Update dependency prettier to v3.7.4 Dec 3, 2025
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 7bec8de to 7d6b4a4 Compare January 15, 2026 01:27
@renovate renovate Bot changed the title Update dependency prettier to v3.7.4 Update dependency prettier to v3.8.0 Jan 15, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 7d6b4a4 to b27d69c Compare January 21, 2026 17:55
@renovate renovate Bot changed the title Update dependency prettier to v3.8.0 Update dependency prettier to v3.8.1 Jan 21, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from b27d69c to ef453ca Compare February 2, 2026 19:37
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from ef453ca to 6847195 Compare February 12, 2026 11:17
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 6847195 to cc63576 Compare March 5, 2026 15:12
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from cc63576 to 760e1e4 Compare March 27, 2026 12:41
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch 2 times, most recently from 3bd454d to 97f65e5 Compare April 10, 2026 05:51
@renovate renovate Bot changed the title Update dependency prettier to v3.8.1 Update dependency prettier to v3.8.2 Apr 10, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 97f65e5 to 4e59253 Compare April 15, 2026 01:39
@renovate renovate Bot changed the title Update dependency prettier to v3.8.2 Update dependency prettier to v3.8.3 Apr 15, 2026
@renovate renovate Bot force-pushed the renovate/prettier-3.x-lockfile branch from 4e59253 to d73f489 Compare April 29, 2026 11:40
@renovate

renovate Bot commented May 12, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: linkbase/pnpm-lock.yaml
warn: This version of pnpm requires at least Node.js v22.13
warn: The current version of Node.js is v20.18.1
warn: Visit https://r.pnpm.io/comp to see the list of past pnpm versions with respective Node.js version support.
node:internal/modules/cjs/loader:1044
      throw new ERR_UNKNOWN_BUILTIN_MODULE(request);
            ^

Error [ERR_UNKNOWN_BUILTIN_MODULE]: No such built-in module: node:sqlite
    at Module._load (node:internal/modules/cjs/loader:1044:13)
    at Module.require (node:internal/modules/cjs/loader:1311:19)
    at require (node:internal/modules/helpers:179:18)
    at ../store/index/lib/index.js (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:54590:25)
    at __init (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:17:58)
    at ../resolving/npm-resolver/lib/index.js (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:65700:5)
    at __init (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:17:58)
    at ../workspace/projects-graph/lib/index.js (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:65838:5)
    at __init (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:17:58)
    at ../workspace/projects-filter/lib/index.js (file:///opt/containerbase/tools/pnpm/11.9.0/20.18.1/node_modules/pnpm/dist/pnpm.mjs:73232:5) {
  code: 'ERR_UNKNOWN_BUILTIN_MODULE'
}

Node.js v20.18.1

@renovate renovate Bot changed the title Update dependency prettier to v3.8.3 Update dependency prettier to v3.8.4 Jun 9, 2026
@renovate renovate Bot changed the title Update dependency prettier to v3.8.4 Update dependency prettier to v3.8.5 Jun 26, 2026
@renovate renovate Bot changed the title Update dependency prettier to v3.8.5 Update dependency prettier to v3.9.0 Jun 27, 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