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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 27, 2020

WhiteSource Renovate

This PR contains the following updates:

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

Release Notes

prettier/prettier

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


Renovate configuration

📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Aug 27, 2020
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from c95836c to 6fe31c9 Compare October 28, 2020 08:53
@renovate renovate bot changed the title build(deps): update dependency prettier to v2.1.1 build(deps): update dependency prettier to v2.1.2 Oct 28, 2020
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 6fe31c9 to 22e38f0 Compare November 27, 2020 06:56
@renovate renovate bot changed the title build(deps): update dependency prettier to v2.1.2 build(deps): update dependency prettier to v2.2.0 Nov 27, 2020
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 22e38f0 to 7074ee3 Compare December 11, 2020 19:59
@renovate renovate bot changed the title build(deps): update dependency prettier to v2.2.0 build(deps): update dependency prettier to v2.2.1 Dec 11, 2020
@renovate renovate bot force-pushed the renovate/prettier-2.x branch from 7074ee3 to db8ce3b Compare March 16, 2021 01:35
@jonahsnider jonahsnider merged commit f50f57b into master Mar 16, 2021
@jonahsnider jonahsnider deleted the renovate/prettier-2.x branch March 16, 2021 02:22
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants