diff --git a/.changeset/moody-trees-give.md b/.changeset/moody-trees-give.md deleted file mode 100644 index c402ed4528..0000000000 --- a/.changeset/moody-trees-give.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'graphql-executor': patch ---- - -Fix ExecutorSchema isNonNullType method - -Client documents may wrap input types with non-nullable wrapper types not present in the schema. The ExecutorSchema should recognize these non-nullable types as such. diff --git a/CHANGELOG.md b/CHANGELOG.md index 49321a3bf8..2cc2274dab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # graphql-executor +## 0.0.14 + +### Patch Changes + +- 01118639: Fix ExecutorSchema isNonNullType method + + Client documents may wrap input types with non-nullable wrapper types not present in the schema. The ExecutorSchema should recognize these non-nullable types as such. + ## 0.0.13 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 75baca291b..aa9c49512f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql-executor", - "version": "0.0.13", + "version": "0.0.14", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql-executor", - "version": "0.0.13", + "version": "0.0.14", "license": "MIT", "devDependencies": { "@babel/core": "7.16.5", diff --git a/package.json b/package.json index 48d54610d9..9715df31b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql-executor", - "version": "0.0.13", + "version": "0.0.14", "description": "A customizable GraphQL Spec compliant Executor class.", "license": "MIT", "main": "index",