Skip to content

Commit

Permalink
chore(release): update monorepo packages versions (#2545)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 10, 2021
1 parent 2492665 commit 179dd27
Show file tree
Hide file tree
Showing 16 changed files with 120 additions and 52 deletions.
22 changes: 0 additions & 22 deletions .changeset/fast-lizards-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/kind-mangos-occur.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/witty-tables-travel.md

This file was deleted.

4 changes: 2 additions & 2 deletions packages/batch-delegate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/delegate": "^7.0.9",
"@graphql-tools/delegate": "^7.0.10",
"dataloader": "2.0.0",
"tslib": "~2.1.0"
},
"devDependencies": {
"@graphql-tools/schema": "7.1.3",
"@graphql-tools/stitch": "7.2.1",
"@graphql-tools/stitch": "7.3.0",
"@graphql-tools/utils": "7.2.5"
},
"publishConfig": {
Expand Down
21 changes: 21 additions & 0 deletions packages/delegate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @graphql-tools/delegate

## 7.0.10

### Patch Changes

- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:

```js
merge: {
MyType: {
fields: {
myComputedField: {
selectionSet: '{ weight }',
computed: true,
}
}
}
}
```

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.

## 7.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/delegate",
"version": "7.0.9",
"version": "7.0.10",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/graphql-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# graphql-tools

## 7.0.3

### Patch Changes

- Updated dependencies [24926654]
- Updated dependencies [24926654]
- Updated dependencies [24926654]
- @graphql-tools/delegate@7.0.10
- @graphql-tools/stitch@7.3.0
- @graphql-tools/links@7.0.4
- @graphql-tools/mock@8.0.0

## 7.0.2

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/graphql-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-tools",
"version": "7.0.2",
"version": "7.0.3",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
"type": "git",
Expand All @@ -26,10 +26,10 @@
"@graphql-tools/optimize": "1.0.1",
"@graphql-tools/batch-delegate": "^7.0.0",
"@graphql-tools/batch-execute": "^7.0.0",
"@graphql-tools/delegate": "^7.0.1",
"@graphql-tools/delegate": "^7.0.10",
"@graphql-tools/graphql-tag-pluck": "^6.2.6",
"@graphql-tools/import": "^6.2.4",
"@graphql-tools/links": "^7.0.0",
"@graphql-tools/links": "^7.0.4",
"@graphql-tools/load": "^6.2.5",
"@graphql-tools/code-file-loader": "^6.2.5",
"@graphql-tools/git-loader": "^6.2.5",
Expand All @@ -40,11 +40,11 @@
"@graphql-tools/url-loader": "^6.3.2",
"@graphql-tools/load-files": "^6.2.4",
"@graphql-tools/merge": "^6.2.5",
"@graphql-tools/mock": "^7.0.0",
"@graphql-tools/mock": "^8.0.0",
"@graphql-tools/relay-operation-optimizer": "^6.2.5",
"@graphql-tools/resolvers-composition": "^6.2.5",
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/stitch": "^7.0.1",
"@graphql-tools/stitch": "^7.3.0",
"@graphql-tools/utils": "^7.0.1",
"@graphql-tools/wrap": "^7.0.0",
"tslib": "~2.1.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/links/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-tools/links

## 7.0.4

### Patch Changes

- 24926654: fix(links): peer dependency issue
- Updated dependencies [24926654]
- @graphql-tools/delegate@7.0.10

## 7.0.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/links/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/links",
"version": "7.0.3",
"version": "7.0.4",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -35,7 +35,7 @@
"graphql-upload": "11.0.0"
},
"dependencies": {
"@graphql-tools/delegate": "^7.0.3",
"@graphql-tools/delegate": "^7.0.10",
"@graphql-tools/utils": "^7.0.2",
"apollo-upload-client": "14.1.3",
"cross-fetch": "3.0.6",
Expand Down
12 changes: 12 additions & 0 deletions packages/mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @graphql-tools/mock

## 8.0.0

### Major Changes

- 24926654: Reworked to add state-full behavior to the library:

- Breaking: mock functions does not receive resolver arguments anymore and can't return promise. Use `resolvers` option instead.
- 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.
- Deprecated: MockList is deprecated. Use plain arrays instead.

See [migration guide](https://www.graphql-tools.com/docs/mocking/#migration-from-v7-and-below).

## 7.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/mock",
"version": "7.0.0",
"version": "8.0.0",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down
26 changes: 26 additions & 0 deletions packages/stitch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @graphql-tools/stitch

## 7.3.0

### Minor Changes

- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:

```js
merge: {
MyType: {
fields: {
myComputedField: {
selectionSet: '{ weight }',
computed: true,
}
}
}
}
```

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.

### Patch Changes

- Updated dependencies [24926654]
- @graphql-tools/delegate@7.0.10

## 7.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/stitch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/stitch",
"version": "7.2.1",
"version": "7.3.0",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@graphql-tools/batch-delegate": "^7.0.0",
"@graphql-tools/delegate": "^7.0.9",
"@graphql-tools/delegate": "^7.0.10",
"@graphql-tools/merge": "^6.2.7",
"@graphql-tools/schema": "^7.1.2",
"@graphql-tools/utils": "^7.2.4",
Expand Down
26 changes: 26 additions & 0 deletions packages/stitching-directives/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @graphql-tools/stitching-directives

## 1.3.0

### Minor Changes

- 24926654: Deprecates the `MergeTypeConfig.computedFields` setting (with backwards-compatible warning) in favor of new computed field configuration written as:

```js
merge: {
MyType: {
fields: {
myComputedField: {
selectionSet: '{ weight }',
computed: true,
}
}
}
}
```

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.

### Patch Changes

- Updated dependencies [24926654]
- @graphql-tools/delegate@7.0.10

## 1.2.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/stitching-directives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/stitching-directives",
"version": "1.2.0",
"version": "1.3.0",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand All @@ -22,7 +22,7 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/delegate": "^7.0.9",
"@graphql-tools/delegate": "^7.0.10",
"@graphql-tools/utils": "^7.2.4",
"tslib": "~2.1.0"
},
Expand Down

0 comments on commit 179dd27

Please sign in to comment.