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

chore(deps): update dependency prettier to ^3.3.3 #77

Merged
merged 1 commit into from
Aug 7, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 19, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) ^3.3.2 -> ^3.3.3 age adoption passing confidence

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 - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from prisis as a code owner July 19, 2024 16:21
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Jul 19, 2024
@renovate renovate bot enabled auto-merge July 19, 2024 16:21
@renovate renovate bot force-pushed the renovate/patch-prettier branch 2 times, most recently from 25b01c2 to 178203b Compare July 22, 2024 08:49
prisis
prisis previously approved these changes Jul 22, 2024
prisis
prisis previously approved these changes Aug 6, 2024
@renovate renovate bot added this pull request to the merge queue Aug 6, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to a conflict with the base branch Aug 6, 2024
@renovate renovate bot added this pull request to the merge queue Aug 7, 2024
Merged via the queue into main with commit ea2119c Aug 7, 2024
11 checks passed
@renovate renovate bot deleted the renovate/patch-prettier branch August 7, 2024 07:58
prisis pushed a commit that referenced this pull request Aug 7, 2024
…-08-07)

### Bug Fixes

* update dev deps, removed dependencyDashboardApproval ([ac8079c](ac8079c))

### Miscellaneous Chores

* **deps:** lock file maintenance ([#62](#62)) ([ba725f2](ba725f2))
* **deps:** lock file maintenance ([#72](#72)) ([048ea2c](048ea2c))
* **deps:** lock file maintenance ([#82](#82)) ([8d47cd8](8d47cd8))
* **deps:** update actions/checkout action to v4.1.7 ([#70](#70)) ([5bf4790](5bf4790))
* **deps:** update actions/dependency-review-action action to v4.3.4 ([#73](#73)) ([8d9ad25](8d9ad25))
* **deps:** update actions/setup-node action to v4.0.3 ([#74](#74)) ([f04ed5d](f04ed5d))
* **deps:** update actions/upload-artifact action to v4.3.4 ([#75](#75)) ([2f521d3](2f521d3))
* **deps:** update amannn/action-semantic-pull-request action to v5.5.3 ([#76](#76)) ([b91c130](b91c130))
* **deps:** update dependency lint-staged to ^15.2.7 ([#68](#68)) ([c4883a0](c4883a0))
* **deps:** update dependency prettier to ^3.3.3 ([#77](#77)) ([ea2119c](ea2119c))
* **deps:** update dependency taze to ^0.13.9 ([#78](#78)) ([fa34460](fa34460))
* **deps:** update github/codeql-action action to v3.25.10 ([#71](#71)) ([13723ea](13723ea))
* **deps:** update github/codeql-action action to v3.25.13 ([#79](#79)) ([4ab41c5](4ab41c5))
* **deps:** update minor updates ([#80](#80)) ([05c274d](05c274d))
* **deps:** update step-security/harden-runner action to v2.8.1 ([#69](#69)) ([fb493fd](fb493fd))
* moved conventional-changelog-conventionalcommits into dev deps ([883cf86](883cf86))

### Continuous Integration

* removed Verify the integrity..., now its inside the anolilab/workflows/step/setup ([6c3361e](6c3361e))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant