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 v3.3.3 #6343

Merged
merged 3 commits into from
Jul 13, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 13, 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 - At any time (no schedule defined), 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 Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 13, 2024
Copy link

changeset-bot bot commented Jul 13, 2024

🦋 Changeset detected

Latest commit: ed8454b

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@graphql-tools/executor-http Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

github-actions bot commented Jul 13, 2024

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-tools/executor-http 1.1.3-alpha-20240713153428-ed8454bcf4809943cd6f6c06f8b613108540ee3a npm ↗︎ unpkg ↗︎

Copy link
Contributor

github-actions bot commented Jul 13, 2024

✅ Benchmark Results

     ✓ no_errors
     ✓ expected_result

     checks.........................: 100.00% ✓ 328       ✗ 0  
     data_received..................: 38 MB   3.8 MB/s
     data_sent......................: 140 kB  14 kB/s
     http_req_blocked...............: avg=3.88µs   min=2.05µs  med=2.65µs   max=159.1µs  p(90)=3.86µs   p(95)=4.02µs  
     http_req_connecting............: avg=622ns    min=0s      med=0s       max=102.04µs p(90)=0s       p(95)=0s      
     http_req_duration..............: avg=57.08ms  min=48.75ms med=52.8ms   max=162.33ms p(90)=69.65ms  p(95)=87.51ms 
       { expected_response:true }...: avg=57.08ms  min=48.75ms med=52.8ms   max=162.33ms p(90)=69.65ms  p(95)=87.51ms 
     http_req_failed................: 0.00%   ✓ 0         ✗ 164
     http_req_receiving.............: avg=129.38µs min=89.49µs med=123.83µs max=438.39µs p(90)=141.26µs p(95)=153.04µs
     http_req_sending...............: avg=24.65µs  min=16.97µs med=23.11µs  max=89.98µs  p(90)=30.15µs  p(95)=33.92µs 
     http_req_tls_handshaking.......: avg=0s       min=0s      med=0s       max=0s       p(90)=0s       p(95)=0s      
     http_req_waiting...............: avg=56.93ms  min=48.61ms med=52.65ms  max=161.97ms p(90)=69.5ms   p(95)=87.36ms 
     http_reqs......................: 164     16.322315/s
     iteration_duration.............: avg=61.24ms  min=52.35ms med=57.15ms  max=166.69ms p(90)=74.62ms  p(95)=91.67ms 
     iterations.....................: 164     16.322315/s
     vus............................: 1       min=1       max=1
     vus_max........................: 1       min=1       max=1

Copy link
Contributor

github-actions bot commented Jul 13, 2024

💻 Website Preview

The latest changes are available as preview in: https://60ce775d.graphql-tools.pages.dev

@renovate renovate bot requested a review from dimaMachina July 13, 2024 15:28
@ardatan ardatan merged commit bec6eac into master Jul 13, 2024
26 of 27 checks passed
@ardatan ardatan deleted the renovate/all-minor-patch branch July 13, 2024 15:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant