[PR #1141] [MERGED] Bump prettier from 3.0.1 to 3.0.2 #1232

Closed
opened 2026-03-03 14:42:44 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/lipis/flag-icons/pull/1141
Author: @dependabot[bot]
Created: 8/16/2023
Status: Merged
Merged: 8/16/2023
Merged by: @lipis

Base: mainHead: dependabot/npm_and_yarn/prettier-3.0.2


📝 Commits (1)

  • bd5db5f Bump prettier from 3.0.1 to 3.0.2

📊 Changes

2 files changed (+5 additions, -5 deletions)

View changed files

📝 package.json (+1 -1)
📝 yarn.lock (+4 -4)

📄 Description

Bumps prettier from 3.0.1 to 3.0.2.

Release notes

Sourced from prettier's releases.

3.0.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.2

diff

Break after = of assignment if RHS is poorly breakable AwaitExpression or YieldExpression (#15204 by @​seiyab)

// Input
const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData);

// Prettier 3.0.1 const { section, rubric, authors, tags } = await utils.upsertCommonData( mainData, );

// Prettier 3.0.2 const { section, rubric, authors, tags } = await utils.upsertCommonData(mainData);

Do not add trailing comma for grouped scss comments (#15217 by @​auvred)

/* Input */
$foo: (
	'property': (),
	// comment 1
	// comment 2
)

/* Prettier 3.0.1 */ $foo: ( "property": (), // comment 1 // comment 2, );

/* Prettier 3.0.2 */ $foo: ( "property": (), // comment 1 // comment 2 );

Print declare and export keywords for nested namespace (#15249 by @​sosukesuzuki)

... (truncated)

Commits

Dependabot compatibility score

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.


Dependabot commands and options

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/lipis/flag-icons/pull/1141 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/16/2023 **Status:** ✅ Merged **Merged:** 8/16/2023 **Merged by:** [@lipis](https://github.com/lipis) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/prettier-3.0.2` --- ### 📝 Commits (1) - [`bd5db5f`](https://github.com/lipis/flag-icons/commit/bd5db5f7fed9e356a463f1daf8fe74c5d3d1bac7) Bump prettier from 3.0.1 to 3.0.2 ### 📊 Changes **2 files changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `yarn.lock` (+4 -4) </details> ### 📄 Description Bumps [prettier](https://github.com/prettier/prettier) from 3.0.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> </blockquote> </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: ( &quot;property&quot;: (), // comment 1 // comment 2, );</p> <p>/* Prettier 3.0.2 */ $foo: ( &quot;property&quot;: (), // 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/3.0.1...3.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=prettier&package-manager=npm_and_yarn&previous-version=3.0.1&new-version=3.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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`. [//]: # (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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 14:42:44 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flag-icons#1232
No description provided.