Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upcoming Release Changes #4392

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .changeset/slow-singers-pull.md

This file was deleted.

8 changes: 8 additions & 0 deletions benchmark/federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# federation-benchmark

## 0.0.32

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 0.0.31

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions benchmark/federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "federation-benchmark",
"version": "0.0.31",
"version": "0.0.32",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
Expand All @@ -11,8 +11,8 @@
"dependencies": {
"@apollo/gateway": "2.0.1",
"@apollo/federation": "0.36.0",
"@graphql-tools/stitch": "8.6.5",
"@graphql-tools/stitching-directives": "2.2.10",
"@graphql-tools/stitch": "8.6.6",
"@graphql-tools/stitching-directives": "2.2.11",
"express": "4.17.3",
"graphql": "16.3.0",
"graphql-executor": "0.0.23",
Expand Down
8 changes: 8 additions & 0 deletions packages/batch-delegate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-tools/batch-delegate

## 8.2.13

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 8.2.12

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/batch-delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/batch-delegate",
"version": "8.2.12",
"version": "8.2.13",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -32,14 +32,14 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/delegate": "8.7.3",
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/delegate": "8.7.4",
"@graphql-tools/utils": "8.6.7",
"dataloader": "2.1.0",
"tslib": "~2.3.0"
},
"devDependencies": {
"@graphql-tools/schema": "8.3.7",
"@graphql-tools/stitch": "8.6.5"
"@graphql-tools/schema": "8.3.8",
"@graphql-tools/stitch": "8.6.6"
},
"publishConfig": {
"access": "public",
Expand Down
7 changes: 7 additions & 0 deletions packages/batch-execute/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/batch-execute

## 8.4.4

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]

## 8.4.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/batch-execute/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/batch-execute",
"version": "8.4.3",
"version": "8.4.4",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -32,7 +32,7 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/utils": "8.6.7",
"dataloader": "2.1.0",
"tslib": "~2.3.0",
"value-or-promise": "1.0.11"
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

## 8.7.4

### Patch Changes

- 0bbb1769: Refine generic typings using `extends X` when appropriate

Typescript 4.7 has stricter requirements around generics
which is explained well in the related PR:
https://github.com/microsoft/TypeScript/pull/48366

These changes resolve the errors that these packages will
face when attempting to upgrade to TS 4.7 (still in beta
at the time of writing this). Landing these changes now
will allow other TS libraries which depend on these
packages to experiment with TS 4.7 in the meantime.

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 8.7.3

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/delegate",
"version": "8.7.3",
"version": "8.7.4",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -32,9 +32,9 @@
"input": "./src/index.ts"
},
"dependencies": {
"@graphql-tools/batch-execute": "8.4.3",
"@graphql-tools/schema": "8.3.7",
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/batch-execute": "8.4.4",
"@graphql-tools/schema": "8.3.8",
"@graphql-tools/utils": "8.6.7",
"dataloader": "2.1.0",
"graphql-executor": "0.0.23",
"tslib": "~2.3.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/graphql-tag-pluck/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/graphql-tag-pluck

## 7.2.4

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]

## 7.2.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-tag-pluck/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/graphql-tag-pluck",
"version": "7.2.3",
"version": "7.2.4",
"description": "Pluck graphql-tag template literals",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"@babel/parser": "^7.16.8",
"@babel/traverse": "^7.16.8",
"@babel/types": "^7.16.8",
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/utils": "8.6.7",
"tslib": "~2.3.0"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# graphql-tools

## 8.2.6

### Patch Changes

- @graphql-tools/[email protected]

## 8.2.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-tools",
"version": "8.2.5",
"version": "8.2.6",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,7 +36,7 @@
"directory": "dist"
},
"dependencies": {
"@graphql-tools/schema": "8.3.7",
"@graphql-tools/schema": "8.3.8",
"tslib": "~2.3.0"
}
}
7 changes: 7 additions & 0 deletions packages/import/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/import

## 6.6.11

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]

## 6.6.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/import/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/import",
"version": "6.6.10",
"version": "6.6.11",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,7 +34,7 @@
"directory": "dist"
},
"dependencies": {
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/utils": "8.6.7",
"resolve-from": "5.0.0",
"tslib": "~2.3.0"
}
Expand Down
20 changes: 20 additions & 0 deletions packages/links/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @graphql-tools/links

## 8.2.11

### Patch Changes

- 0bbb1769: Refine generic typings using `extends X` when appropriate

Typescript 4.7 has stricter requirements around generics
which is explained well in the related PR:
https://github.com/microsoft/TypeScript/pull/48366

These changes resolve the errors that these packages will
face when attempting to upgrade to TS 4.7 (still in beta
at the time of writing this). Landing these changes now
will allow other TS libraries which depend on these
packages to experiment with TS 4.7 in the meantime.

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 8.2.10

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/links/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/links",
"version": "8.2.10",
"version": "8.2.11",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -45,8 +45,8 @@
"graphql-upload": "13.0.0"
},
"dependencies": {
"@graphql-tools/delegate": "8.7.3",
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/delegate": "8.7.4",
"@graphql-tools/utils": "8.6.7",
"apollo-upload-client": "17.0.0",
"node-fetch": "^2.6.5",
"form-data": "^4.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/load/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-tools/load

## 7.5.8

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 7.5.7

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/load/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/load",
"version": "7.5.7",
"version": "7.5.8",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,8 +34,8 @@
"graphql-type-json": "0.3.2"
},
"dependencies": {
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/schema": "8.3.7",
"@graphql-tools/utils": "8.6.7",
"@graphql-tools/schema": "8.3.8",
"p-limit": "3.1.0",
"tslib": "~2.3.0"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/loaders/apollo-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/apollo-engine-loader

## 7.2.9

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]

## 7.2.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/loaders/apollo-engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/apollo-engine-loader",
"version": "7.2.8",
"version": "7.2.9",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-tools/utils": "8.6.6",
"@graphql-tools/utils": "8.6.7",
"cross-undici-fetch": "^0.2.4",
"tslib": "~2.3.0",
"sync-fetch": "0.3.1"
Expand Down
8 changes: 8 additions & 0 deletions packages/loaders/code-file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-tools/code-file-loader

## 7.2.12

### Patch Changes

- Updated dependencies [0bbb1769]
- @graphql-tools/[email protected]
- @graphql-tools/[email protected]

## 7.2.11

### Patch Changes
Expand Down
Loading