Skip to content

Commit 179dd27

Browse files
chore(release): update monorepo packages versions (#2545)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2492665 commit 179dd27

File tree

16 files changed

+120
-52
lines changed

16 files changed

+120
-52
lines changed

.changeset/fast-lizards-try.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

.changeset/kind-mangos-occur.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/witty-tables-travel.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

packages/batch-delegate/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
"input": "./src/index.ts"
2323
},
2424
"dependencies": {
25-
"@graphql-tools/delegate": "^7.0.9",
25+
"@graphql-tools/delegate": "^7.0.10",
2626
"dataloader": "2.0.0",
2727
"tslib": "~2.1.0"
2828
},
2929
"devDependencies": {
3030
"@graphql-tools/schema": "7.1.3",
31-
"@graphql-tools/stitch": "7.2.1",
31+
"@graphql-tools/stitch": "7.3.0",
3232
"@graphql-tools/utils": "7.2.5"
3333
},
3434
"publishConfig": {

packages/delegate/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @graphql-tools/delegate
22

3+
## 7.0.10
4+
5+
### Patch Changes
6+
7+
- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:
8+
9+
```js
10+
merge: {
11+
MyType: {
12+
fields: {
13+
myComputedField: {
14+
selectionSet: '{ weight }',
15+
computed: true,
16+
}
17+
}
18+
}
19+
}
20+
```
21+
22+
A field-level `selectionSet` specifies field dependencies while the `computed` setting structures the field in a way that assures it is always selected with this data provided. The `selectionSet` is intentionally generic to support possible future uses. This new pattern organizes all field-level configuration (including `canonical`) into a single structure.
23+
324
## 7.0.9
425

526
### Patch Changes

packages/delegate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/delegate",
3-
"version": "7.0.9",
3+
"version": "7.0.10",
44
"description": "A set of utils for faster development of GraphQL tools",
55
"repository": {
66
"type": "git",

packages/graphql-tools/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# graphql-tools
22

3+
## 7.0.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [24926654]
8+
- Updated dependencies [24926654]
9+
- Updated dependencies [24926654]
10+
- @graphql-tools/delegate@7.0.10
11+
- @graphql-tools/stitch@7.3.0
12+
- @graphql-tools/links@7.0.4
13+
- @graphql-tools/mock@8.0.0
14+
315
## 7.0.2
416

517
### Patch Changes

packages/graphql-tools/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-tools",
3-
"version": "7.0.2",
3+
"version": "7.0.3",
44
"description": "Useful tools to create and manipulate GraphQL schemas.",
55
"repository": {
66
"type": "git",
@@ -26,10 +26,10 @@
2626
"@graphql-tools/optimize": "1.0.1",
2727
"@graphql-tools/batch-delegate": "^7.0.0",
2828
"@graphql-tools/batch-execute": "^7.0.0",
29-
"@graphql-tools/delegate": "^7.0.1",
29+
"@graphql-tools/delegate": "^7.0.10",
3030
"@graphql-tools/graphql-tag-pluck": "^6.2.6",
3131
"@graphql-tools/import": "^6.2.4",
32-
"@graphql-tools/links": "^7.0.0",
32+
"@graphql-tools/links": "^7.0.4",
3333
"@graphql-tools/load": "^6.2.5",
3434
"@graphql-tools/code-file-loader": "^6.2.5",
3535
"@graphql-tools/git-loader": "^6.2.5",
@@ -40,11 +40,11 @@
4040
"@graphql-tools/url-loader": "^6.3.2",
4141
"@graphql-tools/load-files": "^6.2.4",
4242
"@graphql-tools/merge": "^6.2.5",
43-
"@graphql-tools/mock": "^7.0.0",
43+
"@graphql-tools/mock": "^8.0.0",
4444
"@graphql-tools/relay-operation-optimizer": "^6.2.5",
4545
"@graphql-tools/resolvers-composition": "^6.2.5",
4646
"@graphql-tools/schema": "^7.0.0",
47-
"@graphql-tools/stitch": "^7.0.1",
47+
"@graphql-tools/stitch": "^7.3.0",
4848
"@graphql-tools/utils": "^7.0.1",
4949
"@graphql-tools/wrap": "^7.0.0",
5050
"tslib": "~2.1.0"

packages/links/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphql-tools/links
22

3+
## 7.0.4
4+
5+
### Patch Changes
6+
7+
- 24926654: fix(links): peer dependency issue
8+
- Updated dependencies [24926654]
9+
- @graphql-tools/delegate@7.0.10
10+
311
## 7.0.3
412

513
### Patch Changes

packages/links/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/links",
3-
"version": "7.0.3",
3+
"version": "7.0.4",
44
"description": "A set of utils for faster development of GraphQL tools",
55
"repository": {
66
"type": "git",
@@ -35,7 +35,7 @@
3535
"graphql-upload": "11.0.0"
3636
},
3737
"dependencies": {
38-
"@graphql-tools/delegate": "^7.0.3",
38+
"@graphql-tools/delegate": "^7.0.10",
3939
"@graphql-tools/utils": "^7.0.2",
4040
"apollo-upload-client": "14.1.3",
4141
"cross-fetch": "3.0.6",

packages/mock/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @graphql-tools/mock
22

3+
## 8.0.0
4+
5+
### Major Changes
6+
7+
- 24926654: Reworked to add state-full behavior to the library:
8+
9+
- Breaking: mock functions does not receive resolver arguments anymore and can't return promise. Use `resolvers` option instead.
10+
- Breaking: when preserved, resolvers will not receive plain object returned by mock anymore as source but rather a `Ref` that can be used to query the store.
11+
- Deprecated: MockList is deprecated. Use plain arrays instead.
12+
13+
See [migration guide](https://www.graphql-tools.com/docs/mocking/#migration-from-v7-and-below).
14+
315
## 7.0.0
416

517
### Major Changes

packages/mock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/mock",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "A set of utils for faster development of GraphQL tools",
55
"repository": {
66
"type": "git",

packages/stitch/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @graphql-tools/stitch
22

3+
## 7.3.0
4+
5+
### Minor Changes
6+
7+
- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:
8+
9+
```js
10+
merge: {
11+
MyType: {
12+
fields: {
13+
myComputedField: {
14+
selectionSet: '{ weight }',
15+
computed: true,
16+
}
17+
}
18+
}
19+
}
20+
```
21+
22+
A field-level `selectionSet` specifies field dependencies while the `computed` setting structures the field in a way that assures it is always selected with this data provided. The `selectionSet` is intentionally generic to support possible future uses. This new pattern organizes all field-level configuration (including `canonical`) into a single structure.
23+
24+
### Patch Changes
25+
26+
- Updated dependencies [24926654]
27+
- @graphql-tools/delegate@7.0.10
28+
329
## 7.2.1
430

531
### Patch Changes

packages/stitch/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/stitch",
3-
"version": "7.2.1",
3+
"version": "7.3.0",
44
"description": "A set of utils for faster development of GraphQL tools",
55
"repository": {
66
"type": "git",
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@graphql-tools/batch-delegate": "^7.0.0",
29-
"@graphql-tools/delegate": "^7.0.9",
29+
"@graphql-tools/delegate": "^7.0.10",
3030
"@graphql-tools/merge": "^6.2.7",
3131
"@graphql-tools/schema": "^7.1.2",
3232
"@graphql-tools/utils": "^7.2.4",

packages/stitching-directives/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @graphql-tools/stitching-directives
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:
8+
9+
```js
10+
merge: {
11+
MyType: {
12+
fields: {
13+
myComputedField: {
14+
selectionSet: '{ weight }',
15+
computed: true,
16+
}
17+
}
18+
}
19+
}
20+
```
21+
22+
A field-level `selectionSet` specifies field dependencies while the `computed` setting structures the field in a way that assures it is always selected with this data provided. The `selectionSet` is intentionally generic to support possible future uses. This new pattern organizes all field-level configuration (including `canonical`) into a single structure.
23+
24+
### Patch Changes
25+
26+
- Updated dependencies [24926654]
27+
- @graphql-tools/delegate@7.0.10
28+
329
## 1.2.0
430

531
### Minor Changes

packages/stitching-directives/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-tools/stitching-directives",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "A set of utils for faster development of GraphQL tools",
55
"repository": {
66
"type": "git",
@@ -22,7 +22,7 @@
2222
"input": "./src/index.ts"
2323
},
2424
"dependencies": {
25-
"@graphql-tools/delegate": "^7.0.9",
25+
"@graphql-tools/delegate": "^7.0.10",
2626
"@graphql-tools/utils": "^7.2.4",
2727
"tslib": "~2.1.0"
2828
},

0 commit comments

Comments
 (0)