Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 12, 2025

This PR contains the following updates:

Package Change Age Confidence
prettier (source) ^3.3.3^3.5.1 age confidence

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.


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 05:59 AM, only on Monday ( * 0-5 * * 1 ) in timezone Europe/Berlin, Automerge - Monday through Friday ( * * * * 1-5 ) in timezone Europe/Berlin.

🚦 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 a team as a code owner August 12, 2025 04:51
@renovate renovate bot enabled auto-merge (squash) August 12, 2025 04:51
@changeset-bot
Copy link

changeset-bot bot commented Aug 12, 2025

⚠️ No Changeset found

Latest commit: 420d393

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 13 times, most recently from bfbbad3 to 27dccb3 Compare August 19, 2025 08:48
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 5 times, most recently from 7c231ca to e6b2ff5 Compare August 25, 2025 08:29
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch from e6b2ff5 to 2b0db3a Compare September 17, 2025 20:50
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 2 times, most recently from af72d3c to 4849a91 Compare September 26, 2025 13:04
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 2 times, most recently from 4428567 to a424825 Compare October 17, 2025 14:15
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 2 times, most recently from 67aac6d to 68bfa71 Compare October 21, 2025 06:43
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch from 68bfa71 to e50fb46 Compare November 10, 2025 17:12
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch from e50fb46 to 47196a9 Compare December 3, 2025 20:03
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch 6 times, most recently from 28ba32c to 9b6c190 Compare January 19, 2026 09:12
@renovate renovate bot force-pushed the renovate/patch-linter-dependencies branch from 9b6c190 to bdc6942 Compare January 20, 2026 14:56
Signed-off-by: Mikhail Aheichyk <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants