Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update dependency prettier to v3.5.3 #244

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 3.3.3 -> 3.5.3 age adoption passing confidence

Release Notes

prettier/prettier (prettier)

v3.5.3

Compare Source

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: 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 added renovate upgrade Any kind of dependency updates labels Nov 26, 2024
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 26, 2024
@renovate renovate bot changed the title ⬆️ Update dependency prettier to v3.4.0 ⬆️ Update dependency prettier to v3.4.1 Nov 26, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from b62ada0 to 4f0cb9b Compare November 26, 2024 15:11
renovate-approve[bot]
renovate-approve bot previously approved these changes Nov 26, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 6 times, most recently from 824a36e to 6714cea Compare December 4, 2024 04:50
@renovate renovate bot changed the title ⬆️ Update dependency prettier to v3.4.1 ⬆️ Update dependency prettier to v3.4.2 Dec 4, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 6714cea to 8d1b85f Compare December 4, 2024 10:25
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 4, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 5 times, most recently from 4b641d3 to 98df21f Compare December 16, 2024 03:54
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 3 times, most recently from 868e00b to a55e45d Compare December 23, 2024 05:33
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 4 times, most recently from 3694773 to 1d03475 Compare January 1, 2025 04:57
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 1d03475 to 0e776bc Compare January 2, 2025 23:33
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 03b7c35 to cfd2953 Compare February 13, 2025 15:09
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 13, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 3 times, most recently from d94f1ce to 7b5cb84 Compare February 17, 2025 10:10
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 7b5cb84 to 54027f8 Compare February 22, 2025 03: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 branch from 54027f8 to 25af548 Compare February 22, 2025 06:39
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 22, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 6 times, most recently from a5ff49e to 1f4f659 Compare March 1, 2025 17:29
@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 branch from 1f4f659 to a261399 Compare March 3, 2025 03:24
renovate-approve[bot]
renovate-approve bot previously approved these changes Mar 3, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch 5 times, most recently from c2eab4c to ea9309a Compare March 10, 2025 05:53
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from ea9309a to 3e5eba7 Compare March 17, 2025 07:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate upgrade Any kind of dependency updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants