dependabot[bot] opened a new pull request, #1684: URL: https://github.com/apache/qpid-dispatch/pull/1684
Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 3.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.2.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/01/13/3.2.0.html">Release note</a></p> <h2>3.1.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#311">Changelog</a></p> <h2>3.1.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2023/11/13/3.1.0.html">Release note</a></p> <h2>3.0.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#303">Changelog</a></p> <h2>3.0.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#302">Changelog</a></p> <h2>3.0.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#301">Changelog</a></p> <h2>3.0.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.0.0-alpha.6...3.0.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2023/07/05/3.0.0.html">Release note</a></p> <h2>3.0.0-alpha.6</h2> <h2>What's Changed</h2> <ul> <li>Update <code>.d.ts</code> files of plugins to use <code>export default ...</code> by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/14435">prettier/prettier#14435</a></li> </ul> <p>Other changes since v2, see <a href="https://github.com/prettier/prettier/releases/tag/3.0.0-alpha.1"><code>3.0.0-alpha.1</code> release notes</a></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/prettier/prettier/compare/3.0.0-alpha.5...3.0.0-alpha.6">https://github.com/prettier/prettier/compare/3.0.0-alpha.5...3.0.0-alpha.6</a></p> <h2>3.0.0-alpha.5</h2> <h2>What's Changed</h2> <ul> <li>Add <code>.d.ts</code> files by <a href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/14212">prettier/prettier#14212</a></li> <li>Support TypeScript 5 via <code>babel-ts</code> parser by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/14391">prettier/prettier#14391</a></li> </ul> <p>Other changes since v2, see <a href="https://github.com/prettier/prettier/releases/tag/3.0.0-alpha.1"><code>3.0.0-alpha.1</code> release notes</a></p> <p><strong>Full Changelog</strong>: <a href="https://github.com/prettier/prettier/compare/3.0.0-alpha.4...3.0.0-alpha.5">https://github.com/prettier/prettier/compare/3.0.0-alpha.4...3.0.0-alpha.5</a></p> <h2>3.0.0-alpha.4</h2> <h2>What's Changed</h2> <ul> <li>Remove support for Flow comment types by <a href="https://github.com/thorn0"><code>@​thorn0</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/13687">prettier/prettier#13687</a></li> <li>Make <code>resolveParser</code> work like v2 by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/13732">prettier/prettier#13732</a></li> <li>Add <code>__debug</code> apis to cjs version by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/13731">prettier/prettier#13731</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.2.0</h1> <p><a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2024/01/13/3.2.0.html">Release Notes</a></p> <h1>3.1.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.1.0...3.1.1">diff</a></p> <h4>Fix config file search (<a href="https://redirect.github.com/prettier/prettier/pull/15363">#15363</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <p>Previously, we start search for config files from the filePath as a directory, if it happened to be a directory and contains config file, it will be used by mistake.</p> <pre lang="text"><code>├─ .prettierrc └─ test.js (A directory) └─ .prettierrc </code></pre> <pre lang="js"><code>// Prettier 3.1.0 await prettier.resolveConfigFile(new URL("./test.js", import.meta.url)); // <CWD>/test.js/.prettierrc <p>// Prettier 3.1.1 await prettier.resolveConfigFile(new URL("./test.js", import.meta.url)); // <CWD>/.prettierrc </code></pre></p> <h4>Skip explicitly passed symbolic links with <code>--no-error-on-unmatched-pattern</code> (<a href="https://redirect.github.com/prettier/prettier/pull/15533">#15533</a> by <a href="https://github.com/sanmai-NL"><code>@​sanmai-NL</code></a>)</h4> <p>Since Prettier v3, we stopped following symbolic links, however in some use cases, the symbolic link patterns can't be filtered out, and there is no way to prevent Prettier from throwing errors.</p> <p>In Prettier 3.1.1, you can use <code>--no-error-on-unmatched-pattern</code> to simply skip symbolic links.</p> <h4>Consistently use tabs in ternaries when <code>useTabs</code> is <code>true</code> (<a href="https://redirect.github.com/prettier/prettier/pull/15662">#15662</a> by <a href="https://github.com/auvred"><code>@​auvred</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input aaaaaaaaaaaaaaa ? bbbbbbbbbbbbbbbbbb : ccccccccccccccc ? ddddddddddddddd : eeeeeeeeeeeeeee ? fffffffffffffff : gggggggggggggggg; <p>// Prettier 3.1.0 </tr></table> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/29f299f73edf9dea28aae9d44a52377a8d12620f"><code>29f299f</code></a> Release 3.2.0</li> <li><a href="https://github.com/prettier/prettier/commit/c9fc23e0e7fe364af77e8d6da88292519da40736"><code>c9fc23e</code></a> Update issue template (<a href="https://redirect.github.com/prettier/prettier/issues/15886">#15886</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/45ad4668ebc133621c7f94e678ce399cab318068"><code>45ad466</code></a> Fix a TODO (<a href="https://redirect.github.com/prettier/prettier/issues/15902">#15902</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b56fe35893ec28fb1b7d1b5b52472bbd32d79806"><code>b56fe35</code></a> Use <code>fs.copyFile</code> where possible (<a href="https://redirect.github.com/prettier/prettier/issues/15895">#15895</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/9236a5271534ed037e7c14be5019f1b191d18e3d"><code>9236a52</code></a> chore(deps): update dependency serialize-javascript to v6.0.2 (<a href="https://redirect.github.com/prettier/prettier/issues/15901">#15901</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/81efe72536d11ee673cca57e3bbc2117198f0f1f"><code>81efe72</code></a> Add VSCode settings (<a href="https://redirect.github.com/prettier/prettier/issues/15885">#15885</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/d3dca9229265178025a97aa148e073e8a1e1ccd9"><code>d3dca92</code></a> Switch to the new ESLint config (<a href="https://redirect.github.com/prettier/prettier/issues/15869">#15869</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/6432f9b931b99a0011eb4bed86f9fed77f142e37"><code>6432f9b</code></a> Add <code>clean-changelog</code> step to release script (<a href="https://redirect.github.com/prettier/prettier/issues/15890">#15890</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/06c7e52da6dccd1b261207e89cba139c541bf42f"><code>06c7e52</code></a> Avoid adding colon for <code>track</code> in 3rd expression of <code>for</code> blocks (<a href="https://redirect.github.com/prettier/prettier/issues/15887">#15887</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/5c6450db9cd456e7442c5c578a18c064c47ce189"><code>5c6450d</code></a> Clean changelog for 3.1.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15889">#15889</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/2.5.1...3.2.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~prettier-bot">prettier-bot</a>, a new releaser for prettier since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) - `@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) - `@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) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org