Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency prettier to v3.3.3 #4686

Merged
merged 1 commit into from
Aug 2, 2024
Merged

Conversation

openverse-bot
Copy link
Collaborator

@openverse-bot openverse-bot commented Aug 1, 2024

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies patch 3.3.2 -> 3.3.3

Release Notes

prettier/prettier (prettier)

v3.3.3

Compare Source

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
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged 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:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.


Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@openverse-bot openverse-bot requested a review from a team as a code owner August 1, 2024 00:24
@openverse-bot openverse-bot added dependencies Pull requests that update a dependency file 💻 aspect: code Concerns the software code in the repository labels Aug 1, 2024
@openverse-bot openverse-bot requested a review from zackkrida August 1, 2024 00:24
@openverse-bot openverse-bot added 🟨 tech: javascript Involves JavaScript 🟩 priority: low Low priority and doesn't need to be rushed labels Aug 1, 2024
@openverse-bot openverse-bot requested a review from dhruvkb August 1, 2024 00:24
@openverse-bot openverse-bot added 🧰 goal: internal improvement Improvement that benefits maintainers, not users 🧱 stack: frontend Related to the Nuxt frontend labels Aug 1, 2024
@openverse-bot openverse-bot force-pushed the gha-renovateprettier-3.x branch 6 times, most recently from 9c97ccf to 2dc3fa3 Compare August 1, 2024 21:06
@obulat obulat force-pushed the gha-renovateprettier-3.x branch from 2dc3fa3 to c0cceae Compare August 2, 2024 06:08
@obulat obulat requested a review from a team as a code owner August 2, 2024 06:08
@obulat obulat merged commit 49a6fcd into main Aug 2, 2024
45 checks passed
@obulat obulat deleted the gha-renovateprettier-3.x branch August 2, 2024 06:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💻 aspect: code Concerns the software code in the repository dependencies Pull requests that update a dependency file 🧰 goal: internal improvement Improvement that benefits maintainers, not users 🟩 priority: low Low priority and doesn't need to be rushed 🧱 stack: frontend Related to the Nuxt frontend 🟨 tech: javascript Involves JavaScript
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

2 participants