graphql-code-generator-community
graphql-code-generator-community copied to clipboard
chore(deps): update prettier
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @theguild/prettier-config (source) | 1.1.2 -> 1.2.0 |
||||
| prettier (source) | 2.8.5 -> 2.8.8 |
Release Notes
the-guild-org/shared-config (@theguild/prettier-config)
v1.2.0
Minor Changes
- #228
e899b0cThanks @enisdenjo! - Better prettier plugin for sorting imports
Patch Changes
- #228
e899b0cThanks @enisdenjo! - dependencies updates:- Added dependency
@ianvs/[email protected]↗︎ (todependencies) - Removed dependency
@trivago/prettier-plugin-sort-imports@^4.1.1↗︎ (fromdependencies)
- Added dependency
v1.1.3
Patch Changes
ec9c470Thanks @dotansimha! - Bump @trivago/prettier-plugin-sort-imports
prettier/prettier (prettier)
v2.8.8
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
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
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.
⚠️ No Changeset found
Latest commit: e8ebeaafeee8abc250afa5e43fb271759dceb73b
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
🚀 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 ↗︎ |
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.