Skip to content

Update dependency prettier to v2.8.8#71

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

Update dependency prettier to v2.8.8#71
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/prettier-2.x

Conversation

@renovate

@renovate renovate Bot commented Aug 24, 2020

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

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

v2.1.2

Compare Source

diff

Fix formatting for directives in fields (#​9116 by @​sosukesuzuki)

v2.1.1

Compare Source

diff

Fix format on html with frontMatter (#​9043 by @​fisker)
<!-- Input -->
---
layout: foo
---

Test <a
href="https://prettier.io">abc</a>.

<!-- Prettier stable -->
TypeError: Cannot read property 'end' of undefined
  ...

<!-- Prettier master -->
---
layout: foo
---

Test <a href="https://prettier.io">abc</a>.
Fix broken format for ...infer T (#​9044 by @​fisker)
// Input
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;

// Prettier stable
type Tail<T extends any[]> = T extends [infer U, ...(infer R)] ? R : never;

// Prettier master
type Tail<T extends any[]> = T extends [infer U, ...infer R] ? R : never;
Fix format on style[lang="sass"] (#​9051 by @​fisker)
<!-- Input -->
<style lang="sass">
.hero
  @&#8203;include background-centered
</style>

<!-- Prettier stable -->
<style lang="sass">
.hero @&#8203;include background-centered;
</style>

<!-- Prettier master -->
<style lang="sass">
  .hero
    @&#8203;include background-centered
</style>
Fix self-closing blocks and blocks with src attribute format (#​9052, #​9055 by @​fisker)
<!-- Input -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />

<!-- Prettier stable -->
<custom lang="markdown" src="./foo.md">

</custom>
<custom lang="markdown" src="./foo.md"

/>
<custom lang="markdown"

/>

<!-- Prettier master -->
<custom lang="markdown" src="./foo.md"></custom>
<custom lang="markdown" src="./foo.md" />
<custom lang="markdown" />

v2.1.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.

@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 4dcd1dd to 1f6fb3a Compare August 26, 2020 05:01
@renovate renovate Bot changed the title Update dependency prettier to v2.1.0 Update dependency prettier to v2.1.1 Aug 26, 2020
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 1f6fb3a to b79f06d Compare September 16, 2020 00:51
@renovate renovate Bot changed the title Update dependency prettier to v2.1.1 Update dependency prettier to v2.1.2 Sep 16, 2020
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from b79f06d to 62fc311 Compare November 28, 2020 05:59
@renovate renovate Bot changed the title Update dependency prettier to v2.1.2 Update dependency prettier to v2.2.1 Nov 28, 2020
@renovate renovate Bot changed the title Update dependency prettier to v2.2.1 Update dependency prettier to v2.3.0 May 15, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 62fc311 to 9a75d67 Compare May 15, 2021 20:31
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 9a75d67 to 2efc017 Compare June 6, 2021 19:44
@renovate renovate Bot changed the title Update dependency prettier to v2.3.0 Update dependency prettier to v2.3.1 Jun 6, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 2efc017 to 713f211 Compare October 18, 2021 15:23
@renovate renovate Bot changed the title Update dependency prettier to v2.3.1 Update dependency prettier to v2.4.1 Oct 18, 2021
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 713f211 to e2db4dc Compare March 7, 2022 13:36
@renovate renovate Bot changed the title Update dependency prettier to v2.4.1 Update dependency prettier to v2.5.1 Mar 7, 2022
@renovate renovate Bot changed the title Update dependency prettier to v2.5.1 Update dependency prettier to v2.6.1 Mar 26, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from e2db4dc to a873c5c Compare March 26, 2022 14:49
@renovate renovate Bot changed the title Update dependency prettier to v2.6.1 Update dependency prettier to v2.6.2 Apr 24, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from a873c5c to 849eb4a Compare April 24, 2022 21:17
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 849eb4a to c325f27 Compare June 18, 2022 22:58
@renovate renovate Bot changed the title Update dependency prettier to v2.6.2 Update dependency prettier to v2.7.1 Jun 18, 2022
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from c325f27 to 8688ac6 Compare March 17, 2023 14:04
@renovate renovate Bot changed the title Update dependency prettier to v2.7.1 Update dependency prettier to v2.8.4 Mar 17, 2023
@renovate

renovate Bot commented Mar 17, 2023

Copy link
Copy Markdown
Contributor Author

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit

File name: yarn.lock
Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit

@renovate renovate Bot changed the title Update dependency prettier to v2.8.4 Update dependency prettier to v2.8.7 Mar 24, 2023
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 8688ac6 to ef25257 Compare March 24, 2023 21:51
@renovate renovate Bot changed the title Update dependency prettier to v2.8.7 Update dependency prettier to v2.8.8 Jun 1, 2023
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 74d327c to 3658d9a Compare August 10, 2025 12:40
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 3658d9a to 5c1b16c Compare December 31, 2025 12:35
@renovate renovate Bot force-pushed the renovate/prettier-2.x branch from 5c1b16c to 65366da Compare December 31, 2025 20:37
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