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

chore(deps): update prettier #608

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

chore(deps): update prettier #608

wants to merge 2 commits into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@theguild/prettier-config (source) 1.1.2 -> 1.2.0 age adoption passing confidence
prettier (source) 2.8.5 -> 2.8.8 age adoption passing confidence

Release Notes

the-guild-org/shared-config (@​theguild/prettier-config)

v1.2.0

Compare Source

Minor Changes
Patch Changes

v1.1.3

Compare Source

Patch Changes
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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the dependencies label Feb 2, 2024
Copy link

changeset-bot bot commented Feb 2, 2024

⚠️ No Changeset found

Latest commit: e8ebeaa

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

github-actions bot commented Feb 2, 2024

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphql-codegen/named-operations-object 3.1.0-alpha-20240711161804-95e49af3f02af05e78ee4a12ef576fb6c9712a56 npm ↗︎ unpkg ↗︎

@renovate renovate bot force-pushed the renovate/prettier branch 2 times, most recently from 75a070e to 044a932 Compare March 20, 2024 23:04
@renovate renovate bot force-pushed the renovate/prettier branch 2 times, most recently from eb83be4 to ddd8363 Compare May 12, 2024 07:34
@renovate renovate bot force-pushed the renovate/prettier branch 3 times, most recently from a3fa5b0 to a5b42ff Compare May 24, 2024 16:06
@renovate renovate bot force-pushed the renovate/prettier branch 3 times, most recently from dbda255 to 32e2808 Compare July 9, 2024 03:53
@renovate renovate bot force-pushed the renovate/prettier branch 3 times, most recently from 95e49af to 997281c Compare July 15, 2024 19:42
@renovate renovate bot requested a review from dimaMachina July 22, 2024 21:07
Copy link
Contributor Author

renovate bot commented Jul 23, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant