Skip to content

Update dependency prettier to v3.5.3 #5400

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

Merged
merged 2 commits into from
Apr 9, 2025
Merged

Update dependency prettier to v3.5.3 #5400

merged 2 commits into from
Apr 9, 2025

Conversation

openverse-bot
Copy link
Collaborator

This PR contains the following updates:

Package Type Update Change
prettier (source) devDependencies minor 3.4.2 -> 3.5.3

Release Notes

prettier/prettier (prettier)

v3.5.3

Compare Source

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#​17196 by @​fisker)
// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);

// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;

// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), 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 has been generated by Renovate Bot.

@openverse-bot openverse-bot added dependencies Pull requests that update a dependency file 💻 aspect: code Concerns the software code in the repository labels Apr 1, 2025
@openverse-bot openverse-bot requested a review from a team as a code owner April 1, 2025 02:39
@openverse-bot openverse-bot added 🟨 tech: javascript Involves JavaScript 🟩 priority: low Low priority and doesn't need to be rushed 🧰 goal: internal improvement Improvement that benefits maintainers, not users labels Apr 1, 2025
@openverse-bot openverse-bot requested review from krysal and obulat April 1, 2025 02:39
@openverse-bot openverse-bot added the 🧱 stack: frontend Related to the Nuxt frontend label Apr 1, 2025
@openverse-bot openverse-bot moved this to 👀 Needs Review in Openverse PRs Apr 1, 2025
Copy link

github-actions bot commented Apr 9, 2025

Latest k6 run output1

     ✓ status was 200

     checks.........................: 100.00% ✓ 398      ✗ 0   
     data_received..................: 93 MB   387 kB/s
     data_sent......................: 52 kB   217 B/s
     http_req_blocked...............: avg=78.91µs  min=2.36µs   med=5.02µs   max=2.09ms   p(90)=177.53µs p(95)=315.49µs
     http_req_connecting............: avg=33.04µs  min=0s       med=0s       max=1.32ms   p(90)=96.07µs  p(95)=155.87µs
     http_req_duration..............: avg=157.18ms min=20.71ms  med=100.34ms max=1.03s    p(90)=352.18ms p(95)=469.13ms
       { expected_response:true }...: avg=157.18ms min=20.71ms  med=100.34ms max=1.03s    p(90)=352.18ms p(95)=469.13ms
   ✓ http_req_failed................: 0.00%   ✓ 0        ✗ 398 
     http_req_receiving.............: avg=185.52µs min=47.45µs  med=145.8µs  max=2.73ms   p(90)=305.07µs p(95)=384.31µs
     http_req_sending...............: avg=26.69µs  min=8.53µs   med=22.73µs  max=136.37µs p(90)=38.86µs  p(95)=49.56µs 
     http_req_tls_handshaking.......: avg=0s       min=0s       med=0s       max=0s       p(90)=0s       p(95)=0s      
     http_req_waiting...............: avg=156.97ms min=20.54ms  med=100.14ms max=1.02s    p(90)=351.87ms p(95)=468.83ms
     http_reqs......................: 398     1.654001/s
     iteration_duration.............: avg=830.14ms min=288.81ms med=868.99ms max=1.74s    p(90)=1.16s    p(95)=1.46s   
     iterations.....................: 76      0.315839/s
     vus............................: 0       min=0      max=6 
     vus_max........................: 60      min=60     max=60

Footnotes

  1. This comment will automatically update with new output each time k6 runs for this PR

@openverse-bot
Copy link
Collaborator Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@krysal krysal force-pushed the gha-renovateprettier-3.x branch from 115ddd9 to a879be7 Compare April 9, 2025 15:29
Copy link
Contributor

@obulat obulat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the fix, @krysal !

@openverse-bot openverse-bot moved this from 👀 Needs Review to ✅ Approved in Openverse PRs Apr 9, 2025
@krysal krysal merged commit 0c0eb78 into main Apr 9, 2025
48 checks passed
@krysal krysal deleted the gha-renovateprettier-3.x branch April 9, 2025 16:13
@github-project-automation github-project-automation bot moved this from ✅ Approved to 🤝 Merged in Openverse PRs Apr 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💻 aspect: code Concerns the software code in the repository dependencies Pull requests that update a dependency file 🧰 goal: internal improvement Improvement that benefits maintainers, not users 🟩 priority: low Low priority and doesn't need to be rushed 🧱 stack: frontend Related to the Nuxt frontend 🟨 tech: javascript Involves JavaScript
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

3 participants