Update dependency prettier to v3.8.4 - #60
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
November 26, 2024 14:35
a88db50 to
9ab0959
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
December 4, 2024 11:47
9ab0959 to
8a21c7c
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
December 9, 2024 00:05
040d2af to
8a21c7c
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
February 9, 2025 14:40
8a21c7c to
d641797
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
February 13, 2025 16:42
d641797 to
40f3ba6
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
February 22, 2025 05:23
40f3ba6 to
b988d1b
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
March 3, 2025 02:56
b988d1b to
29cde23
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
June 23, 2025 06:53
29cde23 to
de7f2c1
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
June 25, 2025 11:56
de7f2c1 to
c205e9f
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
June 27, 2025 03:22
c205e9f to
cfcbe85
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
November 27, 2025 10:05
cfcbe85 to
df6eb46
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
November 27, 2025 13:47
df6eb46 to
f1b7702
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
November 28, 2025 21:31
f1b7702 to
49927ce
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
November 30, 2025 00:07
49927ce to
72978bd
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
December 3, 2025 07:11
72978bd to
38ddd37
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
January 15, 2026 00:57
38ddd37 to
af9abce
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
January 21, 2026 22:09
af9abce to
d708ccb
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
April 10, 2026 05:44
d708ccb to
16d7342
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
April 15, 2026 11:52
16d7342 to
58492af
Compare
renovate
Bot
force-pushed
the
renovate/prettier-3.x-lockfile
branch
from
June 9, 2026 12:07
58492af to
ce6e691
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.3.3→3.8.4Release Notes
prettier/prettier (prettier)
v3.8.4Compare Source
v3.8.3Compare Source
v3.8.2Compare Source
v3.8.1Compare Source
v3.8.0Compare Source
diff
🔗 Release note
v3.7.4Compare Source
diff
LWC: Avoid quote around interpolations (#18383 by @kovsu)
TypeScript: Fix comment inside union type gets duplicated (#18393 by @fisker)
TypeScript: Fix unstable comment print in union type comments (#18395 by @fisker)
v3.7.3Compare Source
diff
API: Fix
prettier.getFileInfo()change that breaks VSCode extension (#18375 by @fisker)An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
v3.6.2Compare Source
diff
Markdown: Add missing blank line around code block (#17675 by @fisker)
v3.6.1Compare Source
diff
TypeScript: Allow const without initializer (#17650, #17654 by @fisker)
Miscellaneous: Avoid closing files multiple times (#17665 by @43081j)
When reading a file to infer the interpreter from a shebang, we use the
n-readlineslibrary to read the first line in order to get the shebang.This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if
n-readlinesdid not already closethem.
v3.6.0Compare Source
diff
🔗 Release Notes
v3.5.3Compare Source
diff
Flow: Fix missing parentheses in
ConditionalTypeAnnotation(#17196 by @fisker)v3.5.2Compare Source
diff
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.v3.5.1Compare 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
dockercomposeandgithub-actions-workflowlanguages in Visual Studio Code.v3.5.0Compare Source
diff
🔗 Release Notes
v3.4.2Compare Source
diff
Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @tats-u)
Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.
U+30A0 can be used as the replacement of the
-in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).Fix comments print on class methods with decorators (#16891 by @fisker)
Fix non-idempotent formatting (#16899 by @seiyab)
This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.
v3.4.1Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on(#16887 by @fisker)v3.4.0Compare Source
diff
🔗 Release Notes
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.