Skip to content

Commit 828fbf9

Browse files
renovate[bot]github-actions[bot]ardatan
authored
chore(deps): update all non-major dependencies (#5112)
* chore(deps): update all non-major dependencies * chore(dependencies): updated changesets for modified dependencies * Go * Trim string --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <[email protected]>
1 parent aa21847 commit 828fbf9

File tree

20 files changed

+730
-683
lines changed

20 files changed

+730
-683
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphql-tools/executor': patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`@graphql-typed-document-node/[email protected]` ↗︎](https://www.npmjs.com/package/@graphql-typed-document-node/core/v/3.2.0) (from `3.1.2`, in `dependencies`)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@graphql-tools/executor-graphql-ws': patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/ws/v/8.13.0) (from `8.12.1`, in `dependencies`)
6+
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/graphql-ws/v/5.12.1) (from `5.12.0`, in `dependencies`)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphql-tools/executor-legacy-ws': patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/ws/v/8.13.0) (from `8.12.1`, in `dependencies`)

benchmark/federation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"loadtest:monolith": "k6 -e ENDPOINT=monolith run k6.js"
1010
},
1111
"dependencies": {
12-
"@apollo/gateway": "2.3.3",
12+
"@apollo/gateway": "2.4.1",
1313
"@apollo/federation": "0.38.1",
1414
"@graphql-tools/stitch": "8.7.46",
1515
"@graphql-tools/stitching-directives": "2.3.32",

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,37 +35,37 @@
3535
},
3636
"homepage": "https://github.com/ardatan/graphql-tools#readme",
3737
"devDependencies": {
38-
"@babel/core": "7.21.0",
38+
"@babel/core": "7.21.4",
3939
"@babel/plugin-proposal-class-properties": "7.18.6",
40-
"@babel/preset-env": "7.20.2",
40+
"@babel/preset-env": "7.21.4",
4141
"@babel/preset-typescript": "7.21.4",
4242
"@changesets/cli": "2.26.1",
4343
"@changesets/changelog-github": "0.4.8",
4444
"@types/debug": "4.1.7",
45-
"@types/jest": "29.4.0",
46-
"@types/node": "18.14.6",
45+
"@types/jest": "29.5.0",
46+
"@types/node": "18.15.11",
4747
"@typescript-eslint/eslint-plugin": "5.57.1",
4848
"@typescript-eslint/parser": "5.57.1",
4949
"babel-jest": "29.5.0",
5050
"bob-the-bundler": "5.0.1",
5151
"chalk": "4.1.2",
5252
"concurrently": "8.0.1",
53-
"eslint": "8.35.0",
54-
"eslint-config-prettier": "8.7.0",
53+
"eslint": "8.37.0",
54+
"eslint-config-prettier": "8.8.0",
5555
"eslint-config-standard": "17.0.0",
5656
"eslint-plugin-import": "2.27.5",
57-
"eslint-plugin-n": "15.6.1",
57+
"eslint-plugin-n": "15.7.0",
5858
"eslint-plugin-promise": "6.1.1",
5959
"eslint-plugin-standard": "5.0.0",
6060
"globby": "11.1.0",
6161
"graphql": "16.6.0",
6262
"graphql-subscriptions": "2.0.0",
6363
"husky": "8.0.3",
6464
"jest": "29.5.0",
65-
"lint-staged": "13.1.2",
65+
"lint-staged": "13.2.0",
6666
"patch-package": "6.5.1",
67-
"prettier": "2.8.4",
68-
"ts-jest": "29.0.5",
67+
"prettier": "2.8.7",
68+
"ts-jest": "29.1.0",
6969
"ts-node": "10.9.1",
7070
"typedoc": "0.23.28",
7171
"typedoc-plugin-markdown": "3.14.0",

packages/documents/src/sort-executable-nodes.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,20 @@ export function sortExecutableNodes(nodes: readonly ASTNode[] | undefined): read
3838
}
3939

4040
if (isOfKindList<DirectiveNode>(nodes, Kind.DIRECTIVE)) {
41-
return cacheResult(sortBy(nodes, 'name.value'));
41+
return cacheResult(sortBy(nodes as any, 'name.value'));
4242
}
4343

4444
if (isOfKindList<VariableDefinitionNode>(nodes, Kind.VARIABLE_DEFINITION)) {
45-
return cacheResult(sortBy(nodes, 'variable.name.value'));
45+
return cacheResult(sortBy(nodes as any, 'variable.name.value'));
4646
}
4747

4848
if (isOfKindList<ArgumentNode>(nodes, Kind.ARGUMENT)) {
49-
return cacheResult(sortBy(nodes, 'name.value'));
49+
return cacheResult(sortBy(nodes as any, 'name.value'));
5050
}
5151

5252
if (isOfKindList<SelectionNode>(nodes, [Kind.FIELD, Kind.FRAGMENT_SPREAD, Kind.INLINE_FRAGMENT])) {
5353
return cacheResult(
54-
sortBy(nodes, node => {
54+
sortBy(nodes as any, node => {
5555
if (node.kind === Kind.FIELD) {
5656
return sortPrefixField + node.name.value;
5757
} else if (node.kind === Kind.FRAGMENT_SPREAD) {
@@ -68,7 +68,7 @@ export function sortExecutableNodes(nodes: readonly ASTNode[] | undefined): read
6868
);
6969
}
7070

71-
return cacheResult(sortBy(nodes, 'kind', 'name.value'));
71+
return cacheResult(sortBy(nodes as any, 'kind', 'name.value'));
7272
}
7373
}
7474

packages/executor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"dependencies": {
5555
"@repeaterjs/repeater": "3.0.4",
5656
"@graphql-tools/utils": "9.2.1",
57-
"@graphql-typed-document-node/core": "3.1.2",
57+
"@graphql-typed-document-node/core": "3.2.0",
5858
"tslib": "^2.4.0",
5959
"value-or-promise": "1.0.12"
6060
},

packages/executors/apollo-link/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"tslib": "^2.3.1"
5757
},
5858
"devDependencies": {
59-
"@apollo/client": "3.7.10"
59+
"@apollo/client": "3.7.11"
6060
},
6161
"peerDependencies": {
6262
"graphql": "^15.2.0 || ^16.0.0",

packages/executors/graphql-ws/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
},
5353
"dependencies": {
5454
"@types/ws": "^8.0.0",
55-
"ws": "8.12.1",
55+
"ws": "8.13.0",
5656
"isomorphic-ws": "5.0.0",
5757
"@graphql-tools/utils": "9.2.1",
5858
"@repeaterjs/repeater": "3.0.4",
59-
"graphql-ws": "5.12.0",
59+
"graphql-ws": "5.12.1",
6060
"tslib": "^2.4.0"
6161
},
6262
"publishConfig": {

packages/executors/legacy-ws/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@types/ws": "^8.0.0",
5555
"@graphql-tools/utils": "9.2.1",
5656
"isomorphic-ws": "5.0.0",
57-
"ws": "8.12.1",
57+
"ws": "8.13.0",
5858
"tslib": "^2.4.0"
5959
},
6060
"publishConfig": {

0 commit comments

Comments
 (0)