From 875c3c6367503ff97e481111a66c5448a01a97d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Mar 2022 23:52:28 +0200 Subject: [PATCH] Version Packages (#171) Co-authored-by: github-actions[bot] --- .changeset/thirty-lizards-unite.md | 7 ------- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 .changeset/thirty-lizards-unite.md diff --git a/.changeset/thirty-lizards-unite.md b/.changeset/thirty-lizards-unite.md deleted file mode 100644 index 6565157654..0000000000 --- a/.changeset/thirty-lizards-unite.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'graphql-executor': patch ---- - -introspection should track the ExecutorSchema rather than the GraphQLSchema - -...in case of any discrepancy. When an explicit ExecutorSchema is passed, the GraphQLSchema should essentially be ignored, required in essence only to satisfy TS typings. If an explicit ExecutorSchema is not passed, it is generated from the GraphQLSchema, and so there would be no discrepancy. diff --git a/CHANGELOG.md b/CHANGELOG.md index a0b715bea8..61ec924834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # graphql-executor +## 0.0.22 + +### Patch Changes + +- 00f54c0d: introspection should track the ExecutorSchema rather than the GraphQLSchema + + ...in case of any discrepancy. When an explicit ExecutorSchema is passed, the GraphQLSchema should essentially be ignored, required in essence only to satisfy TS typings. If an explicit ExecutorSchema is not passed, it is generated from the GraphQLSchema, and so there would be no discrepancy. + ## 0.0.21 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index d3c8352306..059ddd218d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql-executor", - "version": "0.0.21", + "version": "0.0.22", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql-executor", - "version": "0.0.21", + "version": "0.0.22", "license": "MIT", "devDependencies": { "@babel/core": "7.16.5", diff --git a/package.json b/package.json index 7b9e0a6f79..9f653daa4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql-executor", - "version": "0.0.21", + "version": "0.0.22", "description": "A customizable GraphQL Spec compliant Executor class.", "license": "MIT", "main": "index",