webbertakken / email-worker

Lightweight tool to process emails directly from Cloudflare
MIT License
54 stars 9 forks source link

chore: Update devDependencies #57

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 4.20240620.0 -> 4.20240712.0 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types) ### [`v4.20240712.0`](https://togithub.com/cloudflare/workerd/compare/649745ce1c07acf0fdc317edd67d3d1670b946d4...f197dd6f1a6475fb266d9fa89dbebedb050a291d) [Compare Source](https://togithub.com/cloudflare/workerd/compare/649745ce1c07acf0fdc317edd67d3d1670b946d4...f197dd6f1a6475fb266d9fa89dbebedb050a291d) ### [`v4.20240701.0`](https://togithub.com/cloudflare/workerd/compare/f8882597f7d4862626fd4e0c5b60723f1c55c9e1...649745ce1c07acf0fdc317edd67d3d1670b946d4) [Compare Source](https://togithub.com/cloudflare/workerd/compare/f8882597f7d4862626fd4e0c5b60723f1c55c9e1...649745ce1c07acf0fdc317edd67d3d1670b946d4)
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // 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](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // 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](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/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: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature.

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

pr-code-reviewer[bot] commented 2 months ago

:wave: Hi there!

  1. Update the version numbers for both "@cloudflare/workers-types" and "prettier".
  2. Ensure that the resolution references and checksums are updated accordingly.
  3. Check if any additional dependencies or configurations need updating in the yarn.lock file.

Automatically generated with the help of gpt-3.5-turbo. Feedback? Please don't hesitate to drop me an email at webber@takken.io.

codecov[bot] commented 2 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 97.36%. Comparing base (3c772f8) to head (7f2c479). Report is 1 commits behind head on main.

Additional details and impacted files [![Impacted file tree graph](https://app.codecov.io/gh/webbertakken/email-worker/pull/57/graphs/tree.svg?width=650&height=150&src=pr&token=vWf0M5qX20&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Webber+Takken)](https://app.codecov.io/gh/webbertakken/email-worker/pull/57?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Webber+Takken) ```diff @@ Coverage Diff @@ ## main #57 +/- ## ======================================= Coverage 97.36% 97.36% ======================================= Files 3 3 Lines 114 114 Branches 24 27 +3 ======================================= Hits 111 111 Misses 2 2 Partials 1 1 ```