dependabot[bot] opened a new pull request, #1650: URL: https://github.com/apache/qpid-dispatch/pull/1650
Bumps [prettier](https://github.com/prettier/prettier) from 2.5.1 to 3.0.2. <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.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> <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.3...3.0.0-alpha.4">https://github.com/prettier/prettier/compare/3.0.0-alpha.3...3.0.0-alpha.4</a></p> <h2>3.0.0-alpha.3</h2> <ul> <li>Fix <code>exports</code> field in <code>package.json</code> file</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.2...3.0.0-alpha.3">https://github.com/prettier/prettier/compare/3.0.0-alpha.2...3.0.0-alpha.3</a></p> <h2>3.0.0-alpha.2</h2> <ul> <li>Fix bundled <code>index.cjs</code> file</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> <!-- 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.0.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.0.1...3.0.2">diff</a></p> <h4>Break after <code>=</code> of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (<a href="https://redirect.github.com/prettier/prettier/pull/15204">#15204</a> by <a href="https://github.com/seiyab"><code>@​seiyab</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="js"><code>// Input const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData); <p>// Prettier 3.0.1 const { section, rubric, authors, tags } = await utils.upsertCommonData( mainData, );</p> <p>// Prettier 3.0.2 const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData); </code></pre></p> <h4>Do not add trailing comma for grouped scss comments (<a href="https://redirect.github.com/prettier/prettier/pull/15217">#15217</a> by <a href="https://github.com/auvred"><code>@​auvred</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="scss"><code>/* Input */ $foo: ( 'property': (), // comment 1 // comment 2 ) <p>/* Prettier 3.0.1 */ $foo: ( "property": (), // comment 1 // comment 2, );</p> <p>/* Prettier 3.0.2 */ $foo: ( "property": (), // comment 1 // comment 2 ); </code></pre></p> <h4>Print <code>declare</code> and <code>export</code> keywords for nested namespace (<a href="https://redirect.github.com/prettier/prettier/pull/15249">#15249</a> by <a href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4> <!-- raw HTML omitted --> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/157e42accdcff98a6a4e92a0de2fbd3eee9fcd4f"><code>157e42a</code></a> Release 3.0.2</li> <li><a href="https://github.com/prettier/prettier/commit/1b0c756bd69c5897dc828f63c697283f447f20a3"><code>1b0c756</code></a> Print <code>declare</code> and <code>export</code> keywords for nested namespace (<a href="https://redirect.github.com/prettier/prettier/issues/15249">#15249</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b4082cb6471c07766bfb2d6865cbe61fd495bda5"><code>b4082cb</code></a> chore(deps): update babel to v7.22.10 (<a href="https://redirect.github.com/prettier/prettier/issues/15236">#15236</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/91e850b2bdeb24c27d64163c35ccc36be102196d"><code>91e850b</code></a> chore(deps): update dependency camelcase to v8 (<a href="https://redirect.github.com/prettier/prettier/issues/15245">#15245</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f24132eda3e6af2b907cbf65d949561cb13bcf53"><code>f24132e</code></a> Make chalk/assert shim a Proxy (<a href="https://redirect.github.com/prettier/prettier/issues/15234">#15234</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/e22a5516f5b2c44e6d68be4c0a7ba0b32c1b9f86"><code>e22a551</code></a> chore(deps): update dependency <code>@​babel/parser</code> to v7.22.10 (<a href="https://redirect.github.com/prettier/prettier/issues/15237">#15237</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/fbe46aa74a7b3f68f635fe3d55da193d9223de4d"><code>fbe46aa</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v16.2.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15240">#15240</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/7ecdbf7bc4f86f574c79bca24e5e74ef5ebe8853"><code>7ecdbf7</code></a> chore(deps): update typescript-eslint to v6.3.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15244">#15244</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/fb557803935f5ce059d5292e96f23304147b76b3"><code>fb55780</code></a> chore(deps): update dependency eslint to v8.47.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15242">#15242</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/fde937d7b4cae43470a3c3e234d0105de7d77de3"><code>fde937d</code></a> chore(deps): update dependency hermes-parser to v0.15.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15239">#15239</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/2.5.1...3.0.2">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