Bump prettier from 3.4.2 to 3.5.3
Bumps prettier from 3.4.2 to 3.5.3.
Changelog
Sourced from prettier's changelog.
3.5.3
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);3.5.2
Remove
module-synccondition (#17156 by@fisker)In Prettier 3.5.0, we added
module-synccondition topackage.json, so thatrequire("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 themodule-synccondition, sorequire("prettier")will still use the CommonJS version, we'll revisit untilrequire(ESM)feature is more stable.3.5.1
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
dockercomposeandgithub-actions-workflowlanguages in Visual Studio Code.3.5.0
Commits
-
4ff5dc5Release 3.5.3 -
a2e560eFix missing parentheses inConditionalTypeAnnotation(#17196) -
fa95c97AddmergeBlogPoststep to release script (#17199) -
b47cd50Add title to patch release changelog (#17197) -
de30788Minor fix in release script -
ecee6a0Clean changelog_unreleased -
fd06512Bump Prettier dependency to 3.5.2 -
1f74dd5Update dependents count -
399f427Release 3.5.2 -
bf5aab8Revert "Use ESM entrypoint forrequire(ESM)" (#17156) - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreatewill recreate this MR rewriting all the manual changes and resolving conflicts