[PR #1131] [MERGED] Bump prettier from 3.0.0 to 3.0.1 #1223

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

📋 Pull Request Information

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

Base: mainHead: dependabot/npm_and_yarn/prettier-3.0.1


📝 Commits (1)

  • bd7d647 Bump prettier from 3.0.0 to 3.0.1

📊 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.0 to 3.0.1.

Release notes

Sourced from prettier's releases.

3.0.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.0.1

diff

Fix cursor positioning for a special case (#14812 by @​fisker)

// <|> is the cursor position

/* Input */ // All messages are represented in JSON. // So, the prettier.py controls a subprocess which spawns "node {this_file}". import {<|> } from "fs"

/* Prettier 3.0.0 */ // All messages are represented in JSON. // So, the prettier.py <|>controls a subprocess which spawns "node {this_file}". import {} from "fs"

/* Prettier 3.0.1 */ // All messages are represented in JSON. // So, the prettier.py controls a subprocess which spawns "node {this_file}". import {<|>} from "fs"

Fix plugins/estree.d.ts to make it a module (#15018 by @​kingyue737)

Add export {} in plugins/estree.d.ts to fix the "File is not a module" error

Add parenthesis around leading multiline comment in return statement (#15037 by @​auvred)

// Input
function fn() {
  return (
    /**
     * @type {...}
     */ expresssion
  )
}

// Prettier 3.0.0 function fn() { return /**

</tr></table>

... (truncated)

Commits
  • afee0db Release 3.0.1
  • c3d53dc Fix runYarn function in release script (#15200)
  • 825425c chore(deps): update dependency eslint-plugin-import to v2.28.0 (#15184)
  • 448217d chore(deps): update dependency eslint to v8.46.0 (#15182)
  • f35e9e6 chore(deps): update dependency @​angular/compiler to v16.1.7 (#15173)
  • d14e893 chore(deps): update dependency c8 to v8.0.1 (#15174)
  • c44d4b7 chore(deps): update dependency eslint-plugin-react to v7.33.1 (#15176)
  • 57e8c87 chore(deps): update dependency esbuild to v0.18.17 (#15175)
  • 36c3738 chore(deps): update dependency eslint-plugin-unicorn to v48.0.1 (#15177)
  • 2d274df chore(deps): update dependency flow-parser to v0.213.1 (#15178)
  • Additional commits viewable in compare view

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 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/1131 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/4/2023 **Status:** ✅ Merged **Merged:** 8/4/2023 **Merged by:** [@lipis](https://github.com/lipis) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/prettier-3.0.1` --- ### 📝 Commits (1) - [`bd7d647`](https://github.com/lipis/flag-icons/commit/bd7d6471e6291c22be203665eac2b213dba131d2) Bump prettier from 3.0.0 to 3.0.1 ### 📊 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.0 to 3.0.1. <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.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#301">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.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.0.0...3.0.1">diff</a></p> <h4>Fix cursor positioning for a special case (<a href="https://redirect.github.com/prettier/prettier/pull/14812">#14812</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="js"><code>// &lt;|&gt; is the cursor position <p>/* Input */ // All messages are represented in JSON. // So, the prettier.py controls a subprocess which spawns &quot;node {this_file}&quot;. import {&lt;|&gt; } from &quot;fs&quot;</p> <p>/* Prettier 3.0.0 */ // All messages are represented in JSON. // So, the prettier.py &lt;|&gt;controls a subprocess which spawns &quot;node {this_file}&quot;. import {} from &quot;fs&quot;</p> <p>/* Prettier 3.0.1 */ // All messages are represented in JSON. // So, the prettier.py controls a subprocess which spawns &quot;node {this_file}&quot;. import {&lt;|&gt;} from &quot;fs&quot; </code></pre></p> <h4>Fix plugins/estree.d.ts to make it a module (<a href="https://redirect.github.com/prettier/prettier/pull/15018">#15018</a> by <a href="https://github.com/kingyue737"><code>@​kingyue737</code></a>)</h4> <p>Add <code>export {}</code> in <code>plugins/estree.d.ts</code> to fix the &quot;File is not a module&quot; error</p> <h4>Add parenthesis around leading multiline comment in return statement (<a href="https://redirect.github.com/prettier/prettier/pull/15037">#15037</a> by <a href="https://github.com/auvred"><code>@​auvred</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input function fn() { return ( /** * @type {...} */ expresssion ) } <p>// Prettier 3.0.0 function fn() { return /**</p> <ul> <li><a href="https://github.com/type"><code>@​type</code></a> {...} */ expresssion; }</li> </ul> <p>&lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/afee0db6646ced248e5e53d0640f043fe5e923e4"><code>afee0db</code></a> Release 3.0.1</li> <li><a href="https://github.com/prettier/prettier/commit/c3d53dce7e8d50b2b897f332572032de3aa80409"><code>c3d53dc</code></a> Fix <code>runYarn</code> function in release script (<a href="https://redirect.github.com/prettier/prettier/issues/15200">#15200</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/825425c57f00268abaf3964b441a7649c8004ba0"><code>825425c</code></a> chore(deps): update dependency eslint-plugin-import to v2.28.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15184">#15184</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/448217df2209e3bfa5fba9cad0f5eedc997f281b"><code>448217d</code></a> chore(deps): update dependency eslint to v8.46.0 (<a href="https://redirect.github.com/prettier/prettier/issues/15182">#15182</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f35e9e6babddad791bf6afe52e17ce1d78993ae1"><code>f35e9e6</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v16.1.7 (<a href="https://redirect.github.com/prettier/prettier/issues/15173">#15173</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/d14e893147d1931030a5c253df3fc195ed5e5eae"><code>d14e893</code></a> chore(deps): update dependency c8 to v8.0.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15174">#15174</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c44d4b761ef405b6e251e5b69bf36896371b2e71"><code>c44d4b7</code></a> chore(deps): update dependency eslint-plugin-react to v7.33.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15176">#15176</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/57e8c875066f6b962ec6644cf671a4e8f80c501a"><code>57e8c87</code></a> chore(deps): update dependency esbuild to v0.18.17 (<a href="https://redirect.github.com/prettier/prettier/issues/15175">#15175</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/36c3738aa960f808c7a79ec477dadd34fde23f50"><code>36c3738</code></a> chore(deps): update dependency eslint-plugin-unicorn to v48.0.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15177">#15177</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/2d274dfcdd8813e4ee203441c36ba17d2f4d4071"><code>2d274df</code></a> chore(deps): update dependency flow-parser to v0.213.1 (<a href="https://redirect.github.com/prettier/prettier/issues/15178">#15178</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.0.0...3.0.1">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.0&new-version=3.0.1)](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 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:42 +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#1223
No description provided.