From 312f3fca79c7e34d7032badd965d822e0ab57cd4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 19:55:20 +0100 Subject: [PATCH] chore(deps): update dependency ts-graphql-plugin to v3.1.2 (#732) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [ts-graphql-plugin](https://togithub.com/Quramy/ts-graphql-plugin) | [`3.0.2` -> `3.1.2`](https://renovatebot.com/diffs/npm/ts-graphql-plugin/3.0.2/3.1.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/ts-graphql-plugin/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ts-graphql-plugin/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ts-graphql-plugin/3.0.2/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ts-graphql-plugin/3.0.2/3.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
Quramy/ts-graphql-plugin (ts-graphql-plugin) ### [`v3.1.2`](https://togithub.com/Quramy/ts-graphql-plugin/releases/tag/v3.1.2) [Compare Source](https://togithub.com/Quramy/ts-graphql-plugin/compare/v3.1.1...v3.1.2) #### What's Changed - fix: Add arguments length check by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1240](https://togithub.com/Quramy/ts-graphql-plugin/pull/1240) **Full Changelog**: https://github.com/Quramy/ts-graphql-plugin/compare/v3.1.1...v3.1.2 ### [`v3.1.1`](https://togithub.com/Quramy/ts-graphql-plugin/releases/tag/v3.1.1) [Compare Source](https://togithub.com/Quramy/ts-graphql-plugin/compare/v3.1.0...v3.1.1) #### What's Changed - fix: Add addons js to npm files entries by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1238](https://togithub.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`](https://togithub.com/Quramy/ts-graphql-plugin/releases/tag/v3.1.0) [Compare Source](https://togithub.com/Quramy/ts-graphql-plugin/compare/v3.0.2...v3.1.0) #### New Features ##### :tada: ts-graphql-plugin gets compat `graphql-codegen` :tada: - The new `enabledGlobalFragments` option allows to analyze operation and fragments defined in different templates without interpolation(e.g. `${postFragment}`). - Function call expression is available as GraphQL document via `tag` option . In combination these, ts-graplql-plugin works with `graphql-codegen` compatible code such as: ```tsx import { graphql } from "./gql"; const postFragment = graphql(` fragment PostFragment on Post { title author { name } } `); const query = graphql(` query AppQuery { popularPosts { id ...PostFragment } } `); ``` See [example](https://togithub.com/Quramy/ts-graphql-plugin/tree/main/project-fixtures/graphql-codegen-prj) If you want more details, #### What's Changed - chore: Modify Codecov configuration by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1204](https://togithub.com/Quramy/ts-graphql-plugin/pull/1204) - chore: Modify jest instrumentation by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1205](https://togithub.com/Quramy/ts-graphql-plugin/pull/1205) - chore: Allow findAllNodes callback to return generic AST nodes by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1220](https://togithub.com/Quramy/ts-graphql-plugin/pull/1220) - Global fragment registry by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1209](https://togithub.com/Quramy/ts-graphql-plugin/pull/1209) - chore: Organize package.json by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1225](https://togithub.com/Quramy/ts-graphql-plugin/pull/1225) - feat: Add `tag` customize pattern by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1226](https://togithub.com/Quramy/ts-graphql-plugin/pull/1226) - chore: Update example report md by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1227](https://togithub.com/Quramy/ts-graphql-plugin/pull/1227) - modify prettier config by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1228](https://togithub.com/Quramy/ts-graphql-plugin/pull/1228) - docs: Add example using graphql-codegen by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1229](https://togithub.com/Quramy/ts-graphql-plugin/pull/1229) - docs: Write about `enabledGlobalFragments` by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1232](https://togithub.com/Quramy/ts-graphql-plugin/pull/1232) - fix: Transformer should uses getFragmentDependenciesForAST by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1233](https://togithub.com/Quramy/ts-graphql-plugin/pull/1233) - feat: Resolve interpolation referring call expression by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1234](https://togithub.com/Quramy/ts-graphql-plugin/pull/1234) - fix: Allow to transform CallExpression by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1235](https://togithub.com/Quramy/ts-graphql-plugin/pull/1235) - chore: Fix module name typo by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1237](https://togithub.com/Quramy/ts-graphql-plugin/pull/1237) - fix: TypedDocument addon import specifier by [@​Quramy](https://togithub.com/Quramy) in [https://github.com/Quramy/ts-graphql-plugin/pull/1236](https://togithub.com/Quramy/ts-graphql-plugin/pull/1236) #### **Full Changelog**: https://github.com/Quramy/ts-graphql-plugin/compare/v3.0.2...v3.1.0
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ckomop0x/ckomop0x.me.site.v2). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8a20a663..43019bcc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -63,7 +63,7 @@ "next-sitemap": "4.2.3", "prettier": "3.2.5", "storybook": "8.0.2", - "ts-graphql-plugin": "3.0.2", + "ts-graphql-plugin": "3.1.2", "ts-jest": "29.1.2", "tsconfig-paths-webpack-plugin": "4.1.0", "typescript": "5.4.2" @@ -25869,9 +25869,9 @@ } }, "node_modules/ts-graphql-plugin": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/ts-graphql-plugin/-/ts-graphql-plugin-3.0.2.tgz", - "integrity": "sha512-HEhId/xvr0Jcelma0ZNXGvdxBlZXL28cn++0yqIo6JN4pXrJxvOW1PgOpoRO7FLSA5cdWjaqkOfOu68SnTXo0Q==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/ts-graphql-plugin/-/ts-graphql-plugin-3.1.2.tgz", + "integrity": "sha512-zFYo9Q08Jk0VOW37jEFF7MRl9dBjAIy+JWzZmNCKSBVGG6yIba/l/Z0NjLfPSnBa3xYTm1UyxUAxQ8QnI097Zg==", "dev": true, "dependencies": { "graphql-language-service": "^5.2.0" diff --git a/package.json b/package.json index 3d580dce..75660de9 100644 --- a/package.json +++ b/package.json @@ -102,7 +102,7 @@ "next-sitemap": "4.2.3", "prettier": "3.2.5", "storybook": "8.0.2", - "ts-graphql-plugin": "3.0.2", + "ts-graphql-plugin": "3.1.2", "ts-jest": "29.1.2", "tsconfig-paths-webpack-plugin": "4.1.0", "typescript": "5.4.2"