Skip to content

chore(deps): update dependency prettier to v2.8.8#23

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

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

Conversation

@renovate

@renovate renovate Bot commented Nov 20, 2020

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 2.1.22.8.8 age confidence

Release Notes

prettier/prettier (prettier)

v2.8.8

Compare Source

v2.8.7

Compare Source

v2.8.6

Compare Source

v2.8.5

Compare Source

v2.8.4

Compare Source

v2.8.3

Compare Source

v2.8.2

Compare Source

v2.8.1

Compare Source

v2.8.0

Compare Source

v2.7.1

Compare Source

v2.7.0

Compare Source

v2.6.2

Compare Source

v2.6.1

Compare Source

diff

Ignore loglevel when printing information (#​12477 by @​fisker)

v2.6.0

Compare Source

prettier --loglevel silent --find-config-path index.js

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

v2.2.1

Compare Source

diff

Fix formatting for AssignmentExpression with ClassExpression (#​9741 by @​sosukesuzuki)
// Input
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.0
module.exports = class A extends (
  B
) {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.1
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

v2.2.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (UTC)

  • 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 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, check this box

This PR was generated by Mend Renovate. View the repository job log.

@codecov

codecov Bot commented Nov 20, 2020

Copy link
Copy Markdown

Codecov Report

Merging #23 (fca1640) into master (e4f67a9) will not change coverage.
The diff coverage is n/a.

❗ Current head fca1640 differs from pull request most recent head e5251dc. Consider uploading reports for the commit e5251dc to get more accurate results

@@            Coverage Diff            @@
##            master       #23   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            3         3           
  Lines           25        25           
  Branches         7         7           
=========================================
  Hits            25        25           

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 377569e to 1df4118 Compare December 9, 2020 08:59
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.2.0 chore(deps): update dependency prettier to v2.2.1 Dec 9, 2020
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 1df4118 to fdfbeda Compare May 9, 2021 21:33
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.2.1 chore(deps): update dependency prettier to v2.3.0 May 9, 2021
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.3.0 chore(deps): update dependency prettier to v2.3.1 Jun 6, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from fdfbeda to f9c26d3 Compare June 6, 2021 20:22
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from f9c26d3 to 5d06297 Compare October 18, 2021 18:35
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.3.1 chore(deps): update dependency prettier to v2.4.1 Oct 18, 2021
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.4.1 chore(deps): update dependency prettier to v2.5.1 Mar 7, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 5d06297 to 7897765 Compare March 7, 2022 11:02
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.5.1 chore(deps): update dependency prettier to v2.6.1 Mar 26, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 7897765 to a1158d9 Compare March 26, 2022 14:14
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.6.1 chore(deps): update dependency prettier to v2.6.2 Apr 24, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from a1158d9 to 4f10da6 Compare April 24, 2022 20:15
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 4f10da6 to fca1640 Compare June 18, 2022 17:56
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.6.2 chore(deps): update dependency prettier to v2.7.1 Jun 18, 2022
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.7.1 chore(deps): update dependency prettier to v2.8.4 Mar 18, 2023
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from fca1640 to 796c38e Compare March 18, 2023 18:09
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.8.4 chore(deps): update dependency prettier to v2.8.7 Mar 24, 2023
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 796c38e to 4b3a0c9 Compare March 24, 2023 13:52
@renovate renovate Bot changed the title chore(deps): update dependency prettier to v2.8.7 chore(deps): update dependency prettier to v2.8.8 May 28, 2023
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 4b3a0c9 to e5251dc Compare May 28, 2023 12:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants