[PR #1213] [CLOSED] Bump prettier from 3.1.1 to 3.2.2 #1267

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

📋 Pull Request Information

Original PR: https://github.com/lipis/flag-icons/pull/1213
Author: @dependabot[bot]
Created: 1/15/2024
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/prettier-3.2.2


📝 Commits (1)

  • 0c26071 Bump prettier from 3.1.1 to 3.2.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.1.1 to 3.2.2.

Release notes

Sourced from prettier's releases.

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.2.2

diff

Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (#15896 by @​eelco)

For example this code would crash before:

<style {...spread}>{`.{}`}</style>

Fix formatting error on optional call expression and member chain (#15920 by @​sosukesuzuki)

// Input
a(() => {}, c?.d());

// Prettier 3.2.1 TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.2 a(() => {}, c?.d());

3.2.1

diff

Fix formatting error on member chain (#15915 by @​sosukesuzuki)

// Input
test().test2().test2(thing?.something);

// Prettier 3.2.0 TypeError: Cannot read properties of undefined (reading 'type')

// Prettier 3.2.1 test().test2().test2(thing?.something);

3.2.0

diff

... (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/1213 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 1/15/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/prettier-3.2.2` --- ### 📝 Commits (1) - [`0c26071`](https://github.com/lipis/flag-icons/commit/0c26071a5ad1d31c1e36b0ef8aa9e7329269c3c8) Bump prettier from 3.1.1 to 3.2.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.1.1 to 3.2.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.2.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p> <h2>3.2.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#321">Changelog</a></p> <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/12/3.2.0.html">Release note</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.2.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.2.1...3.2.2">diff</a></p> <h4>Fix crash when parsing template literal CSS in a JSX style tag using a spread attribute (<a href="https://redirect.github.com/prettier/prettier/pull/15896">#15896</a> by <a href="https://github.com/eelco"><code>@​eelco</code></a>)</h4> <p>For example this code would crash before:</p> <!-- raw HTML omitted --> <pre lang="jsx"><code>&lt;style {...spread}&gt;{`.{}`}&lt;/style&gt; </code></pre> <h4>Fix formatting error on optional call expression and member chain (<a href="https://redirect.github.com/prettier/prettier/pull/15920">#15920</a> by <a href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input a(() =&gt; {}, c?.d()); <p>// Prettier 3.2.1 TypeError: Cannot read properties of undefined (reading 'type')</p> <p>// Prettier 3.2.2 a(() =&gt; {}, c?.d()); </code></pre></p> <h1>3.2.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.2.0...3.2.1">diff</a></p> <h4>Fix formatting error on member chain (<a href="https://redirect.github.com/prettier/prettier/pull/15915">#15915</a> by <a href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input test().test2().test2(thing?.something); <p>// Prettier 3.2.0 TypeError: Cannot read properties of undefined (reading 'type')</p> <p>// Prettier 3.2.1 test().test2().test2(thing?.something);</p> <p></code></pre></p> <h1>3.2.0</h1> <p><a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/5f2c6df4629b1474be5002ff3c6f8ad4a666b70f"><code>5f2c6df</code></a> Release 3.2.2</li> <li><a href="https://github.com/prettier/prettier/commit/cb8004f3f1141635e2a4993ab87d55fbe3b64fb7"><code>cb8004f</code></a> Fix formatting error on optional call expression and member chain (<a href="https://redirect.github.com/prettier/prettier/issues/15920">#15920</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/0bfcb2d5a544a09c94a7d6ca637f05271fa270ce"><code>0bfcb2d</code></a> Fix css embed in JSX when using (only) a spread attribute (<a href="https://redirect.github.com/prettier/prettier/issues/15896">#15896</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/12ab54898ca2a59826714c3027b8ce037cabdd6d"><code>12ab548</code></a> Add <code>prettier-plugin-gherkin</code> to the community plugins list (<a href="https://redirect.github.com/prettier/prettier/issues/15919">#15919</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/4ce96dd530613b99bb4a682ec93f719f3d4109f5"><code>4ce96dd</code></a> Fix typo (<a href="https://redirect.github.com/prettier/prettier/issues/15917">#15917</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/08f37968632dc2e72789160704c3f36268bf3c1c"><code>08f3796</code></a> Run <code>yarn</code></li> <li><a href="https://github.com/prettier/prettier/commit/11aea0df1a9708c0c22f6a93b2662c1413f8d783"><code>11aea0d</code></a> Clean changelog_unreleased</li> <li><a href="https://github.com/prettier/prettier/commit/75e66b8c444ec2a251f72917dbe5b58c4a210051"><code>75e66b8</code></a> Git blame ignore 3.2.1</li> <li><a href="https://github.com/prettier/prettier/commit/5811ad00705488365e0d0baf50c92965edddf58e"><code>5811ad0</code></a> Bump Prettier dependency to 3.2.1</li> <li><a href="https://github.com/prettier/prettier/commit/48ad20859bad01bf70ebc27051939c2329c52b18"><code>48ad208</code></a> Release 3.2.1</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.1.1...3.2.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.1.1&new-version=3.2.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:54 +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#1267
No description provided.