Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency prettier to v2.8.8 #1202

Merged
merged 1 commit into from
Jul 25, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

prettier/prettier (prettier)

v2.8.8

Compare Source

This version is a republished version of v2.8.7.
A bad version was accidentally published and it can't be unpublished, apologies for the churn.

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @​decorator()
  get foo () {}
  
  @​decorator()
  set foo (value) {}
}

// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
  3 |   get foo () {}
  4 |   
> 5 |   @​decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @​decorator()
  get foo() {}

  @​decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @​decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @​decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @​decorator()
  #privateMethod() {}
}

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

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

@renovate renovate bot changed the title Update dependency prettier to v2.8.6 Update dependency prettier to v2.8.7 Mar 24, 2023
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 3248c17 to 3a690f2 Compare March 24, 2023 10:12
@renovate renovate bot changed the title Update dependency prettier to v2.8.7 Update dependency prettier to v2.8.8 Apr 23, 2023
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 3a690f2 to 4d66bd5 Compare April 23, 2023 10:08
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 4d66bd5 to 175f104 Compare September 29, 2023 06:35
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 175f104 to 08c9010 Compare October 10, 2023 09:54
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 08c9010 to 2f207ae Compare October 31, 2023 11:59
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 2f207ae to 220bc5c Compare January 2, 2024 09:56
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch 8 times, most recently from 56b0c8b to 00984bf Compare July 25, 2024 09:16
@renovate renovate bot force-pushed the renovate/prettier-2.8.x branch from 00984bf to 1560c63 Compare July 25, 2024 09:35
@renovate renovate bot merged commit ec2ee37 into master Jul 25, 2024
16 checks passed
@renovate renovate bot deleted the renovate/prettier-2.8.x branch July 25, 2024 09:39
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