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 #61

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 13, 2024

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 these updates 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 August 13, 2024 10:33
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Aug 13, 2024
Copy link
Contributor

github-actions bot commented Aug 13, 2024

Thank you for following the naming conventions! 🙏

Copy link

codecov bot commented Aug 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 55.36%. Comparing base (2308bc9) to head (49c759d).
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #61   +/-   ##
=======================================
  Coverage   55.36%   55.36%           
=======================================
  Files          23       23           
  Lines        1109     1109           
  Branches       75       75           
=======================================
  Hits          614      614           
- Misses        484      495   +11     
+ Partials       11        0   -11     
Flag Coverage Δ
rc 96.08% <ø> (ø)
semantic-release-pnpm 44.70% <ø> (ø)

see 9 files with indirect coverage changes

Copy link

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/eslint-plugin-deprecation@3.0.0 Transitive: filesystem +36 4.19 MB gund
npm/eslint-plugin-editorconfig@4.0.3 Transitive: environment, filesystem, shell +3 331 kB phanect
npm/eslint-plugin-etc@2.0.3 Transitive: environment, filesystem +28 4.07 MB cartant
npm/eslint-plugin-i@2.29.1 filesystem, unsafe Transitive: environment +21 2.08 MB jounqin
npm/eslint-plugin-mdx@3.1.5 eval +18 1.63 MB wooorm
npm/eslint-plugin-n@17.9.0 filesystem Transitive: environment, unsafe +17 3.33 MB weiran.zsd
npm/eslint-plugin-vitest-globals@1.5.0 None 0 5.89 kB saqqdy
npm/eslint-plugin-vitest@0.5.4 Transitive: filesystem +17 2.11 MB veritem
npm/eslint-plugin-you-dont-need-lodash-underscore@6.14.0 None 0 167 kB cht8687
npm/eslint@8.57.0 environment, filesystem Transitive: eval, shell, unsafe +44 8.91 MB eslintbot
npm/eslint@9.5.0 environment Transitive: eval, filesystem, shell, unsafe +42 7.85 MB eslintbot
npm/execa@9.3.0 environment Transitive: filesystem, shell +5 422 kB ehmicky
npm/file-url@4.0.0 None 0 3.99 kB sindresorhus
npm/get-stream@9.0.1 None +1 43.9 kB sindresorhus
npm/git-log-parser@1.2.0 shell +1 11 kB bendrucker
npm/got@14.4.1 Transitive: network +11 668 kB sindresorhus
npm/husky@9.0.11 environment, filesystem, shell 0 3.61 kB typicode
npm/ini@4.1.3 None 0 12.1 kB npm-cli-ops
npm/is-ci@3.0.1 Transitive: environment +1 29.9 kB sibiraj-s

🚮 Removed packages: npm/lodash-es@4.17.21, npm/resolve-from@5.0.0, npm/yargs@17.7.2

View full report↗︎

@github-actions github-actions bot added the Stale label Sep 19, 2024
@github-actions github-actions bot closed this Sep 26, 2024
Copy link
Contributor Author

renovate bot commented Sep 26, 2024

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (^3.3.3). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/patch-prettier branch September 26, 2024 00:12
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 Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants