Update dependency ts-graphql-plugin to v3
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| ts-graphql-plugin | ^2.1.6 -> ^3.1.2 |
Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.
Release Notes
Quramy/ts-graphql-plugin (ts-graphql-plugin)
v3.1.2
v3.1.1
What's Changed
- fix: Add addons js to npm files entries by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1238
Full Changelog: https://github.com/Quramy/ts-graphql-plugin/compare/v3.1.0...v3.1.1
v3.1.0
New Features
:tada: ts-graphql-plugin gets compat graphql-codegen :tada:
- The new
enabledGlobalFragmentsoption allows to analyze operation and fragments defined in different templates without interpolation(e.g.${postFragment}). - Function call expression is available as GraphQL document via
tagoption .
In combination these, ts-graplql-plugin works with graphql-codegen compatible code such as:
import { graphql } from "./gql";
const postFragment = graphql(`
fragment PostFragment on Post {
title
author {
name
}
}
`);
const query = graphql(`
query AppQuery {
popularPosts {
id
...PostFragment
}
}
`);
See example If you want more details,
What's Changed
- chore: Modify Codecov configuration by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1204
- chore: Modify jest instrumentation by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1205
- chore: Allow findAllNodes callback to return generic AST nodes by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1220
- Global fragment registry by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1209
- chore: Organize package.json by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1225
- feat: Add
tagcustomize pattern by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1226 - chore: Update example report md by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1227
- modify prettier config by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1228
- docs: Add example using graphql-codegen by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1229
- docs: Write about
enabledGlobalFragmentsby @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1232 - fix: Transformer should uses getFragmentDependenciesForAST by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1233
- feat: Resolve interpolation referring call expression by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1234
- fix: Allow to transform CallExpression by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1235
- chore: Fix module name typo by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1237
- fix: TypedDocument addon import specifier by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1236
Full Changelog: https://github.com/Quramy/ts-graphql-plugin/compare/v3.0.2...v3.1.0
v3.0.2
Misc changes
- Fix issue template by @fregante in https://github.com/Quramy/ts-graphql-plugin/pull/1048
- Refactor HTTP test by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1195
- refactor: Migrate to use graphql-language-service package by @Quramy in https://github.com/Quramy/ts-graphql-plugin/pull/1202
New Contributors
- @fregante made their first contribution in https://github.com/Quramy/ts-graphql-plugin/pull/1048
Full Changelog: https://github.com/Quramy/ts-graphql-plugin/compare/v3.0.1...v3.0.2
v3.0.1
Misc
- Allow TypeScript v5 as peer dependency
v3.0.0
Breaking Changes
- Require
typescript@^4.8.0. Since TypeScript 4.8, ts AST structures changes significantly. And ts-graphql-plugin omitted old TypeScript version support to follow this TypeScript change.
v2.1.8
Misc
- Make compatible to TypeScript v4.7
v2.1.7
Misc
- Update
graphqlpeer dependencies version( allowgraphql: "^16") (#808)
Configuration
📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, 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 has been generated by Mend Renovate. View repository job log here.