graphql-tools 4.0.7 → 4.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
### 4.0.8
|
|
4
|
+
|
|
5
|
+
* Update `peerDependencies` range for `graphql` to include `graphql@15.x`.
|
|
6
|
+
|
|
3
7
|
### 4.0.7
|
|
4
8
|
|
|
5
9
|
* Filter `extensions` prior to passing them to `buildASTSchema`, in an effort to provide minimum compatibilty for `graphql@14`-compatible schemas with the upcoming `graphql@15` release. This PR does not, however, bring support for newer `graphql@15` features like interfaces implementing interfaces. [#1284](https://github.com/apollographql/graphql-tools/pull/1284)
|
|
@@ -1,4 +1,2 @@
|
|
|
1
1
|
import { GraphQLObjectType, GraphQLSchema } from 'graphql';
|
|
2
|
-
export default function resolveFromParentTypename(parent: any, schema: GraphQLSchema): GraphQLObjectType<any, any
|
|
3
|
-
[key: string]: any;
|
|
4
|
-
}>;
|
|
2
|
+
export default function resolveFromParentTypename(parent: any, schema: GraphQLSchema): GraphQLObjectType<any, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphql-tools",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.8",
|
|
4
4
|
"description": "Useful tools to create and manipulate GraphQL schemas.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
},
|
|
50
50
|
"homepage": "https://github.com/apollostack/graphql-tools#readme",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"apollo-link": "^1.2.
|
|
52
|
+
"apollo-link": "^1.2.14",
|
|
53
53
|
"apollo-utilities": "^1.0.1",
|
|
54
54
|
"deprecated-decorator": "^0.1.6",
|
|
55
55
|
"iterall": "^1.1.3",
|
|
56
56
|
"uuid": "^3.1.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"graphql": "^0.13.0 || ^14.0.0"
|
|
59
|
+
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/chai": "4.0.10",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"chai": "^4.1.2",
|
|
70
70
|
"dateformat": "^3.0.3",
|
|
71
71
|
"express": "^4.16.2",
|
|
72
|
-
"graphql": "^
|
|
72
|
+
"graphql": "^15.0.0",
|
|
73
73
|
"graphql-subscriptions": "^1.0.0",
|
|
74
74
|
"graphql-type-json": "^0.1.4",
|
|
75
75
|
"istanbul": "^0.4.5",
|