Skip to content

Commit

Permalink
Update graphql-tools v8
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Jul 28, 2021
1 parent c8f9a42 commit 4f2928f
Show file tree
Hide file tree
Showing 30 changed files with 302 additions and 265 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-16-node-modules-
${{ runner.os }}-16-yarn-
- name: Install Dependencies using Yarn
run: yarn install --ignore-engines && git checkout yarn.lock
- name: Release Canary
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-node-modules-
${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-yarn-
- name: Install Dependencies using Yarn
run: yarn install && git checkout yarn.lock && yarn patch-package
- name: Create Release Pull Request or Publish to npm
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-node-modules-
${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-yarn-
- name: Install Dependencies using Yarn
run: yarn install && git checkout yarn.lock
- name: Lint
Expand All @@ -49,10 +49,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-node-modules-
${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-yarn-
- name: Install Dependencies using Yarn
run: yarn install && git checkout yarn.lock
- name: Build
Expand Down Expand Up @@ -104,10 +104,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-${{matrix.node_version}}-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-${{matrix.node_version}}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{matrix.node_version}}-node-modules-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-${{matrix.node_version}}-node-modules-
${{ runner.os }}-${{matrix.node_version}}-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-${{matrix.node_version}}-yarn-
- name: Install Dependencies using Yarn
run: yarn install && git checkout yarn.lock
- name: Cache Jest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-16-node-modules-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-node-modules-
${{ runner.os }}-16-yarn-${{ hashFiles('yarn.lock') }}
${{ runner.os }}-16-yarn-
- name: Align TypeScript version with typedoc
run: node scripts/install-typedocs-typescript-version.js
- name: Install Dependencies using Yarn
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@babel/preset-env": "7.14.8",
"@babel/preset-typescript": "7.14.5",
"@changesets/cli": "2.16.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0",
"@types/jest": "26.0.24",
"@types/node": "14.17.6",
"@typescript-eslint/eslint-plugin": "4.28.4",
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
"@graphql-mesh/runtime": "0.17.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-mesh/store": "0.0.0",
"@graphql-tools/code-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/load": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/graphql-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/code-file-loader": "7.0.0",
"@graphql-tools/utils": "8.0.0",
"@graphql-tools/load": "7.0.0",
"@graphql-tools/graphql-file-loader": "7.0.0",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
Expand Down
10 changes: 5 additions & 5 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
"@graphql-mesh/utils": "0.12.0",
"ajv": "8.6.2",
"cosmiconfig": "7.0.0",
"@graphql-tools/merge": "6.2.15-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/load": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/code-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/graphql-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/merge": "6.2.15",
"@graphql-tools/utils": "8.0.0",
"@graphql-tools/load": "7.0.0",
"@graphql-tools/code-file-loader": "7.0.0",
"@graphql-tools/graphql-file-loader": "7.0.0",
"graphql-subscriptions": "1.2.1",
"param-case": "3.0.4"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/handlers/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-tools/url-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/url-loader": "7.0.1",
"@graphql-tools/wrap": "8.0.1",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.1",
"@graphql-mesh/store": "0.0.0"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/handlers/json-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-mesh/store": "0.0.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"graphql-compose": "9.0.2",
"@graphql-tools/utils": "8.0.0",
"graphql-compose": "9.0.1",
"graphql-scalars": "1.10.0",
"pascal-case": "3.1.2",
"to-json-schema": "0.2.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/mergers/bare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"fetchache": "0.1.1",
"@graphql-tools/merge": "6.2.15-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/merge": "6.2.15",
"@graphql-tools/wrap": "8.0.1",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
8 changes: 4 additions & 4 deletions packages/mergers/federation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
},
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@apollo/gateway": "0.34.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.1",
"@apollo/gateway": "0.33.0",
"@graphql-tools/schema": "8.0.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0",
"@graphql-mesh/store": "0.0.0"
},
"publishConfig": {
Expand Down
10 changes: 5 additions & 5 deletions packages/mergers/stitching/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
},
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-tools/stitch": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/stitch": "8.0.1",
"@graphql-tools/wrap": "8.0.1",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/stitching-directives": "2.0.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/stitching-directives": "2.0.1",
"@graphql-tools/schema": "8.0.0",
"@graphql-mesh/store": "0.0.0"
},
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"start": "cross-env NODE_ENV=development webpack serve"
},
"dependencies": {
"@graphql-tools/url-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/url-loader": "7.0.1",
"@graphql-tools/wrap": "8.0.1",
"copy-to-clipboard": "3.3.1",
"graphiql": "1.4.2",
"graphiql-explorer": "0.6.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
"@n1ru4l/in-memory-live-query-store": "0.6.5",
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/batch-delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/resolvers-composition": "6.3.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/batch-delegate": "8.0.1",
"@graphql-tools/resolvers-composition": "6.3.0",
"@graphql-tools/schema": "8.0.0",
"@graphql-tools/wrap": "8.0.1",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
8 changes: 4 additions & 4 deletions packages/transforms/cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"date-fns": "2.23.0",
"@graphql-tools/resolvers-composition": "6.3.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"date-fns": "2.22.1",
"@graphql-tools/resolvers-composition": "6.3.0",
"@graphql-tools/schema": "8.0.0",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/encapsulate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/wrap": "8.0.0",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
8 changes: 4 additions & 4 deletions packages/transforms/extend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/load": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/code-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/graphql-file-loader": "7.0.0-alpha-e6320b00.0",
"@graphql-tools/merge": "6.2.15-alpha-e6320b00.0"
"@graphql-tools/load": "7.0.0",
"@graphql-tools/code-file-loader": "7.0.0",
"@graphql-tools/graphql-file-loader": "7.0.0",
"@graphql-tools/merge": "6.2.15"
},
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/federation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
"@graphql-mesh/utils": "0.12.0",
"graphql-transform-federation": "2.2.0",
"lodash": "4.17.21",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/stitching-directives": "2.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/utils": "8.0.0",
"@graphql-tools/stitching-directives": "2.0.1",
"@graphql-tools/delegate": "8.0.1"
},
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/filter-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"micromatch": "4.0.4",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/wrap": "8.0.0",
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
4 changes: 2 additions & 2 deletions packages/transforms/mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/mock": "8.1.4-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0",
"@graphql-tools/mock": "8.1.4",
"faker": "5.5.3",
"graphql-scalars": "1.10.0"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/naming-convention/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.1",
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/utils": "8.0.0",
"change-case": "4.1.2",
"upper-case": "2.0.2",
"lower-case": "2.0.2"
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/prefix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/wrap": "8.0.1",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/rename/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/wrap": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/wrap": "8.0.1",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
4 changes: 2 additions & 2 deletions packages/transforms/resolvers-composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/resolvers-composition": "6.3.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/resolvers-composition": "6.3.0",
"@graphql-tools/schema": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
6 changes: 3 additions & 3 deletions packages/transforms/snapshot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-mesh/utils": "0.12.0",
"@graphql-tools/resolvers-composition": "6.3.0-alpha-e6320b00.0",
"@graphql-tools/schema": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0"
"@graphql-tools/resolvers-composition": "6.3.0",
"@graphql-tools/schema": "8.0.0",
"@graphql-tools/utils": "8.0.0"
},
"publishConfig": {
"access": "public",
Expand Down
4 changes: 2 additions & 2 deletions packages/transforms/type-merging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
},
"dependencies": {
"@graphql-mesh/types": "0.42.0",
"@graphql-tools/stitching-directives": "2.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/stitching-directives": "2.0.1",
"@graphql-tools/delegate": "8.0.1",
"@graphql-mesh/utils": "0.12.0",
"lodash": "4.17.21"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
},
"dependencies": {
"fetchache": "0.1.1",
"@graphql-tools/delegate": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/utils": "8.0.0-alpha-e6320b00.0",
"@graphql-tools/delegate": "8.0.1",
"@graphql-tools/utils": "8.0.0",
"@graphql-typed-document-node/core": "3.1.0"
},
"publishConfig": {
Expand Down
Loading

0 comments on commit 4f2928f

Please sign in to comment.