113.md (9258B)
1 # PR #113 Bump prettier from 3.0.2 to 3.4.2 2 3 - **Status:** merged 4 - **Author:** @dependabot[bot] 5 - **Created:** 2024-12-29T14:13:33Z 6 - **Branch:** dependabot/npm_and_yarn/prettier-3.4.2 → main 7 - **Merged:** 2024-12-29T14:15:19Z 8 - **Labels:** dependencies, javascript 9 - **Diff:** [113.diff](./113.diff) 10 11 --- 12 13 Bumps [prettier](https://github.com/prettier/prettier) from 3.0.2 to 3.4.2. 14 <details> 15 <summary>Release notes</summary> 16 <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> 17 <blockquote> 18 <h2>3.4.2</h2> 19 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#342">Changelog</a></p> 20 <h2>3.4.1</h2> 21 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#341">Changelog</a></p> 22 <h2>3.4.0</h2> 23 <p><a href="https://github.com/prettier/prettier/compare/3.3.3...3.4.0">diff</a></p> 24 <p>🔗 <a href="https://prettier.io/blog/2024/11/26/3.4.0.html">Release note</a></p> 25 <h2>3.3.3</h2> 26 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p> 27 <h2>3.3.2</h2> 28 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#332">Changelog</a></p> 29 <h2>3.3.1</h2> 30 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#331">Changelog</a></p> 31 <h2>3.3.0</h2> 32 <p><a href="https://github.com/prettier/prettier/compare/3.2.5...3.3.0">diff</a></p> 33 <p>🔗 <a href="https://prettier.io/blog/2024/06/01/3.3.0.html">Release note</a></p> 34 <h2>3.2.5</h2> 35 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#325">Changelog</a></p> 36 <h2>3.2.4</h2> 37 <ul> 38 <li>Fix <code>.eslintrc.json</code> format <a href="https://redirect.github.com/prettier/prettier/issues/15947">#15947</a></li> 39 </ul> 40 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#324">Changelog</a></p> 41 <h2>3.2.3</h2> 42 <ul> 43 <li>Format <code>tsconfig.json</code> file with <code>jsonc</code> parser <a href="https://redirect.github.com/prettier/prettier/issues/15927">#15927</a></li> 44 </ul> 45 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#323">Changelog</a></p> 46 <h2>3.2.2</h2> 47 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p> 48 <h2>3.2.1</h2> 49 <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#321">Changelog</a></p> 50 <h2>3.2.0</h2> 51 <p><a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p> 52 <p>🔗 <a href="https://prettier.io/blog/2024/01/12/3.2.0.html">Release note</a></p> 53 <h2>3.1.1</h2> 54 <!-- raw HTML omitted --> 55 </blockquote> 56 <p>... (truncated)</p> 57 </details> 58 <details> 59 <summary>Changelog</summary> 60 <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> 61 <blockquote> 62 <h1>3.4.2</h1> 63 <p><a href="https://github.com/prettier/prettier/compare/3.4.1...3.4.2">diff</a></p> 64 <h4>Treat U+30A0 & U+30FB in Katakana Block as CJK (<a href="https://redirect.github.com/prettier/prettier/pull/16796">#16796</a> by <a href="https://github.com/tats-u"><code>@tats-u</code></a>)</h4> 65 <p>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.</p> 66 <!-- raw HTML omitted --> 67 <pre lang="md"><code><!-- Input (--prose-wrap=never) --> 68 <p>C言<br /> 69 語<br /> 70 ・<br /> 71 C++<br /> 72 ・<br /> 73 Go<br /> 74 ・<br /> 75 Rust</p> 76 <p><!-- Prettier 3.4.1 --><br /> 77 C言語・ C++ ・ Go ・ Rust</p> 78 <p><!-- Prettier 3.4.2 --><br /> 79 C言語・C++・Go・Rust<br /> 80 </code></pre></p> 81 <p>U+30A0 can be used as the replacement of the <code>-</code> 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 “サン=サーンス”).</p> 82 <h4>Fix comments print on class methods with decorators (<a href="https://redirect.github.com/prettier/prettier/pull/16891">#16891</a> by <a href="https://github.com/fisker"><code>@fisker</code></a>)</h4> 83 <!-- raw HTML omitted --> 84 <pre lang="jsx"><code>// Input 85 class A { 86 @decorator 87 /** 88 * The method description 89 * 90 */ 91 async method(foo: Foo, bar: Bar) { 92 console.log(foo); 93 } 94 } 95 <p>// Prettier 3.4.1<br /> 96 class A {<br /> 97 <a href="https://github.com/decorator"><code>@decorator</code></a><br /> 98 async /**<br /> 99 </tr></table><br /> 100 </code></pre></p> 101 </blockquote> 102 <p>... (truncated)</p> 103 </details> 104 <details> 105 <summary>Commits</summary> 106 <ul> 107 <li><a href="https://github.com/prettier/prettier/commit/cca946176c3ec04ae46bf7bcb08c5bba8c041682"><code>cca9461</code></a> Release 3.4.2</li> 108 <li><a href="https://github.com/prettier/prettier/commit/572bebe2d450eacd7028cd05d157faf7b50605f8"><code>572bebe</code></a> Fix comments on class methods with decorators (<a href="https://redirect.github.com/prettier/prettier/issues/16891">#16891</a>)</li> 109 <li><a href="https://github.com/prettier/prettier/commit/359c4f02d00a8b95a4ab10046cb4957771abbe65"><code>359c4f0</code></a> chore(deps): update dependency <code>@angular/compiler</code> to v19.0.1 (<a href="https://redirect.github.com/prettier/prettier/issues/16903">#16903</a>)</li> 110 <li><a href="https://github.com/prettier/prettier/commit/64709969fb4ac8b7ec597db27d583ec60b47d7b7"><code>6470996</code></a> chore(deps): update dependency <code>@glimmer/syntax</code> to v0.93.1 (<a href="https://redirect.github.com/prettier/prettier/issues/16904">#16904</a>)</li> 111 <li><a href="https://github.com/prettier/prettier/commit/e13614ffd806ee39bdb1ed8fb1026b538de025af"><code>e13614f</code></a> Correct fit() for fill() (<a href="https://redirect.github.com/prettier/prettier/issues/16899">#16899</a>)</li> 112 <li><a href="https://github.com/prettier/prettier/commit/10db357c5f2c684b07e2103f11b5e3debb736cdc"><code>10db357</code></a> Remove check on <code>TSImportType.isTypeOf</code> (<a href="https://redirect.github.com/prettier/prettier/issues/16892">#16892</a>)</li> 113 <li><a href="https://github.com/prettier/prettier/commit/ac46a4f16eaaf73c1ba82b7cdec6d10ab18ad38a"><code>ac46a4f</code></a> Treat U+30A0 & U+30FB in Katakana Block as CJK (<a href="https://redirect.github.com/prettier/prettier/issues/16796">#16796</a>)</li> 114 <li><a href="https://github.com/prettier/prettier/commit/d52e905869dffd6e870fed453f25aaf2f78b736c"><code>d52e905</code></a> Add test for <a href="https://redirect.github.com/prettier/prettier/issues/16207">#16207</a> (<a href="https://redirect.github.com/prettier/prettier/issues/16890">#16890</a>)</li> 115 <li><a href="https://github.com/prettier/prettier/commit/a1e354d7fc4c8d10b066405369df61fadba75b25"><code>a1e354d</code></a> Clean changelog_unreleased</li> 116 <li><a href="https://github.com/prettier/prettier/commit/99875da4e774680e4569ed12fcbac263aa05a7db"><code>99875da</code></a> Bump Prettier dependency to 3.4.1</li> 117 <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.0.2...3.4.2">compare view</a></li> 118 </ul> 119 </details> 120 <br /> 121 122 123 [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 124 125 Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. 126 127 [//]: # (dependabot-automerge-start) 128 [//]: # (dependabot-automerge-end) 129 130 --- 131 132 <details> 133 <summary>Dependabot commands and options</summary> 134 <br /> 135 136 You can trigger Dependabot actions by commenting on this PR: 137 - `@dependabot rebase` will rebase this PR 138 - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it 139 - `@dependabot merge` will merge this PR after your CI passes on it 140 - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it 141 - `@dependabot cancel merge` will cancel a previously requested merge and block automerging 142 - `@dependabot reopen` will reopen this PR if it is closed 143 - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually 144 - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency 145 - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) 146 - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) 147 - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) 148 149 150 </details> 151