Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Update dependency prettier to v2.5.1 #200

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 2.2.1 -> 2.5.1 age adoption passing confidence

Release Notes

prettier/prettier

v2.5.1

Compare Source

diff

Improve formatting for empty tuple types (#​11884 by @​sosukesuzuki)
// Input
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;

// Prettier 2.5.0
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [

]
  ? Foo3
  : Foo4;

// Prettier 2.5.0 (tailingCommma = all)
// Invalid TypeScript code
type Foo = Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends [
  ,
]
  ? Foo3
  : Foo4;

// Prettier 2.5.1
type Foo =
  Foooooooooooooooooooooooooooooooooooooooooooooooooooooooooo extends []
    ? Foo3
    : Foo4;
Fix compatibility with Jest inline snapshot test (#​11892 by @​fisker)

A internal change in Prettier@v2.5.0 accidentally breaks the Jest inline snapshot test.

Support Glimmer's named blocks (#​11899 by @​duailibe)

Prettier already supported this feature, but it converted empty named blocks to self-closing, which is not supported by the Glimmer compiler.

See: Glimmer's named blocks.

// Input
<Component>
  <:named></:named>
</Component>

// Prettier 2.5.0
<Component>
  <:named />
</Component>

// Prettier 2.5.1
<Component>
  <:named></:named>
</Component>

v2.5.0

Compare Source

diff

🔗 Release Notes

v2.4.1

Compare Source

diff

Fix wildcard syntax in @forward (#​11482) (#​11487 by @​niksy)
// Input
@&#8203;forward "library" as btn-*;

// Prettier 2.4.0
@&#8203;forward "library" as btn- *;

// Prettier 2.4.1
@&#8203;forward "library" as btn-*;
Add new CLI option debug-print-ast (#​11514 by @​sosukesuzuki)

A new --debug-print-ast CLI flag for debugging.

v2.4.0

Compare Source

diff

🔗 Release Notes

v2.3.2

Compare Source

diff

Fix failure on dir with trailing slash (#​11000 by @​fisker)
$ ls
1.js  1.unknown

v2.3.1

Compare Source

$ prettier . -l
1.js
$ prettier ./ -l
[error] No supported files were found in the directory: "./".

v2.3.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: "before 3am on the first day of the month" in timezone Asia/Tokyo.

🚦 Automerge: Disabled due to failing status checks.

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.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the renovate label Jul 31, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 43733f9 to 7435840 Compare August 31, 2021 18:16
@renovate renovate bot changed the title Update dependency prettier to v2.3.2 Update dependency prettier to v2.4.0 Sep 9, 2021
@renovate renovate bot changed the title Update dependency prettier to v2.4.0 Update dependency prettier to v2.4.1 Sep 16, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 8e8564a to e7734ac Compare September 30, 2021 17:20
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 4 times, most recently from 624c26d to 0097a97 Compare October 31, 2021 21:20
@renovate renovate bot changed the title Update dependency prettier to v2.4.1 Update dependency prettier to v2.5.0 Nov 25, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 3 times, most recently from 45a60ac to 9093c6f Compare December 4, 2021 16:40
@renovate renovate bot changed the title Update dependency prettier to v2.5.0 Update dependency prettier to v2.5.1 Dec 4, 2021
@renovate renovate bot force-pushed the renovate/prettier-2.x branch 3 times, most recently from 921c091 to b0d862f Compare December 31, 2021 19:08
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants