Skip to content

Bump prettier from 2.7.1 to 3.3.3#1806

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/prettier-3.3.3
Open

Bump prettier from 2.7.1 to 3.3.3#1806
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/prettier-3.3.3

Conversation

@dependabot
Copy link
prettier's releases</a>.</em></p> <blockquote> <h2>3.3.3</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p> <h2>3.3.2</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#332">Changelog</a></p> <h2>3.3.1</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#331">Changelog</a></p> <h2>3.3.0</h2> <p><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/compare/3.2.5...3.3.0">diff

<p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://prettier.io/blog/2024/06/01/3.3.0.html">Release note</a></p> <h2>3.2.5</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#325">Changelog</a></p> <h2>3.2.4</h2> <ul> <li>Fix <code>.eslintrc.json</code> format <a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/15947">#15947</a></li> </ul> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#324">Changelog</a></p> <h2>3.2.3</h2> <ul> <li>Format <code>tsconfig.json</code> file with <code>jsonc</code> parser <a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/15927">#15927</a></li> </ul> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#323">Changelog</a></p> <h2>3.2.2</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#322">Changelog</a></p> <h2>3.2.1</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#321">Changelog</a></p> <h2>3.2.0</h2> <p><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/compare/3.1.1...3.2.0">diff

<p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://prettier.io/blog/2024/01/12/3.2.0.html">Release note</a></p> <h2>3.1.1</h2> <p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#311">Changelog</a></p> <h2>3.1.0</h2> <p><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/compare/3.0.3...3.1.0">diff

<p>🔗 <a href=https://github.com/animate-css/animate.css/pull/"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/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md#303">Changelog</a></p> <h2>3.0.2</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.3.3</h1> <p><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/compare/3.3.2...3.3.3">diff

<h4>Add parentheses for nullish coalescing in ternary (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/pull/16391">#16391</a> by <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/cdignam-segment">@​cdignam-segment) <p>This change adds clarity to operator precedence.</p> <!-- raw HTML omitted --> <pre lang="js"><code>// Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; <p>// Prettier 3.3.2<br /> foo ? bar ?? foo : baz;<br /> foo ?? bar ? a : b;<br /> a ? b : foo ?? bar;</p> <p>// Prettier 3.3.3<br /> foo ? (bar ?? foo) : baz;<br /> (foo ?? bar) ? a : b;<br /> a ? b : (foo ?? bar);<br /> </code></pre></p> <h4>Add parentheses for decorator expressions (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/pull/16458">#16458</a> by <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/y-schneider">@​y-schneider) <p>Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.</p> <!-- raw HTML omitted --> <pre lang="ts"><code>// Input @(foo`tagged template`) class X {} <p>// Prettier 3.3.2<br /> <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/foo">@​footagged template</code><br /> class X {}</p> <p>// Prettier 3.3.3<br /> @(foo<code>tagged template</code>)<br /> class X {}<br /> </code></pre></p> <h4>Support <code>@let</code> declaration syntax (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/pull/16474">#16474</a> by <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/sosukesuzuki">@​sosukesuzuki) <p>Adds support for Angular v18 <code>@let</code> declaration syntax.</p> <p>Please see the following code example. The <code>@let</code> declaration allows you to define local variables within the template:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/52829385bcc4d785e58ae2602c0b098a643523c9">5282938 Release 3.3.3</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/9102b73d8cd01795e7ba5af8a476d500c5dbcf2c">9102b73 Add parentheses for decorator expressions (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16458">#16458</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/6bbd46194e4db25025afd6fe2f8506a8a2d1e47e">6bbd461 chore(deps): update eslint related dependencies (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16478">#16478</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/04b560fc4386ee2ba1fc7c611c7a78655d6e60da">04b560f chore(deps): update dependency browserslist to v4.23.2 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16475">#16475</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/614f070ac5f8d30628cc6cbbca1dda0e080e41d9">614f070 chore(deps): update typescript-eslint to v8.0.0-alpha.41 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16477">#16477</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/d59a15ded901c6dd66c07cf508e14646a6f12cd9">d59a15d chore(deps): update dependency npm-run-all2 to v6.2.2 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16476">#16476</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/5ca2fc9be8369bf8c96899e2e5e8f3264086645a">5ca2fc9 Support Angular <code>@let</code> declaration syntax (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16474">#16474</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/bfcfdccdf892141ce9cfbc179493557157c24e4c">bfcfdcc chore(deps): update babel to v7.24.8 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16472">#16472</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/977c161924efa328660fe1802b604de2bc2527ea">977c161 chore(deps): update dependency acorn to v8.12.1 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16464">#16464</a>)</li> <li><a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/commit/550606edf9f3c2e2d2c75f37f627c42030de34a3">550606e chore(deps): update babel to v7.24.8 (<a href=https://github.com/animate-css/animate.css/pull/"https://redirect.github.com/prettier/prettier/issues/16470">#16470</a>)</li> <li>Additional commits viewable in <a href=https://github.com/animate-css/animate.css/pull/"https://github.com/prettier/prettier/compare/2.7.1...3.3.3">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=2.7.1&new-version=3.3.3)](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>" data-view-component="true" class="dropdown-item btn-link"> Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Bumps prettier from 2.7.1 to 3.3.3.

Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

... (truncated)

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​footagged template
class X {}
// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (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)

Bumps [prettier](https://github.com/prettier/prettier) from 2.7.1 to 3.3.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.7.1...3.3.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 15, 2024
@dependabot dependabot bot requested review from daneden and eltonmesquita July 15, 2024 19:17
friuns2 pushed a commit to friuns2/animate.css that referenced this pull request Feb 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants