-
Notifications
You must be signed in to change notification settings - Fork 261
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.4.2 #2133
Merged
Merged
Conversation
This file contains 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
backstage-goalie
bot
requested a review
from christoph-jerolimov
as a code owner
December 4, 2024 23:13
backstage-goalie
bot
added
the
dependencies
Pull requests that update a dependency file
label
Dec 4, 2024
backstage-goalie
bot
requested review from
karthikjeeyar,
a team,
04kash,
schultzp2020 and
jmezach
as code owners
December 4, 2024 23:13
Changed Packages
|
backstage-service
force-pushed
the
renovate/linters
branch
from
December 4, 2024 23:14
73e84af
to
17cf2e6
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 5, 2024 17:13
17cf2e6
to
4e39450
Compare
backstage-goalie
bot
requested review from
BethGriggs and
backstage-service
as code owners
December 5, 2024 17:13
backstage-service
force-pushed
the
renovate/linters
branch
from
December 5, 2024 17:14
4e39450
to
a194873
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 5, 2024 20:15
a194873
to
d3ea9cb
Compare
backstage-service
force-pushed
the
renovate/linters
branch
from
December 5, 2024 20:15
d3ea9cb
to
fc512aa
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 6, 2024 13:29
fc512aa
to
5f9547b
Compare
backstage-service
force-pushed
the
renovate/linters
branch
from
December 6, 2024 13:30
5f9547b
to
ebe32af
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 6, 2024 19:16
ebe32af
to
75cba43
Compare
backstage-service
force-pushed
the
renovate/linters
branch
from
December 6, 2024 19:16
75cba43
to
80daf20
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 6, 2024 20:21
80daf20
to
f7d5d99
Compare
backstage-service
force-pushed
the
renovate/linters
branch
from
December 6, 2024 20:21
f7d5d99
to
9583471
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 6, 2024 21:22
9583471
to
2e647d8
Compare
backstage-service
force-pushed
the
renovate/linters
branch
from
December 6, 2024 21:22
2e647d8
to
35915a8
Compare
awanlin
approved these changes
Dec 19, 2024
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 19, 2024 15:21
915ebb6
to
54629cf
Compare
backstage-goalie
bot
changed the title
chore(deps): update dependency prettier to v3.4.1
chore(deps): update dependency prettier to v3.4.2
Dec 19, 2024
backstage-service
force-pushed
the
renovate/linters
branch
from
December 19, 2024 15:21
54629cf
to
9246b1c
Compare
backstage-goalie
bot
force-pushed
the
renovate/linters
branch
from
December 19, 2024 23:20
9246b1c
to
47d5b11
Compare
Signed-off-by: Renovate Bot <bot@renovateapp.com>
backstage-service
force-pushed
the
renovate/linters
branch
from
December 19, 2024 23:20
47d5b11
to
075f0d9
Compare
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.4.2
Release Notes
prettier/prettier (prettier)
v3.4.2
Compare 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.1
Compare Source
diff
Remove unnecessary parentheses around assignment in
v-on
(#16887 by @fisker)<!-- Input --> <template> <button @​click="foo += 2">Click</button> </template> <!-- Prettier 3.4.0 --> <template> <button @​click="(foo += 2)">Click</button> </template> <!-- Prettier 3.4.1 --> <template> <button @​click="foo += 2">Click</button> </template>
v3.4.0
Compare Source
diff
🔗 Release Notes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR has been generated by Renovate Bot.