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

fix(deps): Update dependency prettier to v3.3.3 #550

Merged
merged 1 commit into from
Aug 1, 2024

Conversation

cq-bot
Copy link
Contributor

@cq-bot cq-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: Disabled by config. Please merge this manually once you are satisfied.

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.

@kodiakhq kodiakhq bot merged commit d4ff5c6 into main Aug 1, 2024
10 checks passed
@kodiakhq kodiakhq bot deleted the renovate/prettier-3.x branch August 1, 2024 01:46
kodiakhq bot pushed a commit that referenced this pull request Aug 1, 2024
🤖 I have created a release *beep* *boop*
---


## [3.0.18](v3.0.17...v3.0.18) (2024-08-01)


### Bug Fixes

* **deps:** Update dependency @types/node to v20.14.13 ([#548](#548)) ([e47cd27](e47cd27))
* **deps:** Update dependency eslint-plugin-n to v17.10.1 ([#553](#553)) ([d39edbd](d39edbd))
* **deps:** Update dependency eslint-plugin-prettier to v5.2.1 ([#554](#554)) ([b613ef0](b613ef0))
* **deps:** Update dependency husky to v9.1.4 ([#555](#555)) ([85b8c4c](85b8c4c))
* **deps:** Update dependency prettier to v3.3.3 ([#550](#550)) ([d4ff5c6](d4ff5c6))
* **deps:** Update dependency semver to v7.6.3 ([#551](#551)) ([b8dd5ab](b8dd5ab))
* **deps:** Update dependency typescript to v5.5.4 ([#552](#552)) ([fbb2898](fbb2898))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant