Skip to content
This repository was archived by the owner on Oct 31, 2022. It is now read-only.

chore(deps): update dependency prettier to v2.5.1#6

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/prettier-2.x
Open

chore(deps): update dependency prettier to v2.5.1#6
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/prettier-2.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Oct 7, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) 2.3.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

Configuration

📅 Schedule: "after 9pm,before 6am" in timezone Europe/Zurich.

🚦 Automerge: Enabled.

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 dependencies label Oct 7, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 48bc175 to bed48c3 Compare November 25, 2021 15:36
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.4.1 chore(deps): update dependency prettier to v2.5.0 Nov 25, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from bed48c3 to 85f8135 Compare December 4, 2021 16:36
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.5.0 chore(deps): update dependency prettier to v2.5.1 Dec 4, 2021
@renovate
Copy link
Copy Markdown
Author

renovate Bot commented Jan 5, 2022

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants