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 #5970

Merged
merged 1 commit into from
Mar 11, 2024
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
5 changes: 0 additions & 5 deletions .changeset/spotty-ways-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twelve-buckets-bow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-ducks-smash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-rats-decide.md

This file was deleted.

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

## 0.0.117

### Patch Changes

- Updated dependencies [[`d4395dd`](https://github.com/ardatan/graphql-tools/commit/d4395dd7d21db3becdf51cc0508e35d246dcbe1e)]:
- @graphql-tools/federation@1.1.19

## 0.0.116

### Patch Changes
Expand Down
4 changes: 2 additions & 2 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.116",
"version": "0.0.117",
"private": true,
"scripts": {
"loadtest:federation": "k6 -e ENDPOINT=federation run k6.js",
Expand All @@ -11,7 +11,7 @@
"dependencies": {
"@apollo/gateway": "2.7.1",
"@apollo/subgraph": "2.7.1",
"@graphql-tools/federation": "1.1.18",
"@graphql-tools/federation": "1.1.19",
"@graphql-tools/stitch": "9.0.5",
"cross-env": "7.0.3",
"express": "4.18.3",
Expand Down
9 changes: 9 additions & 0 deletions packages/executor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-tools/executor

## 1.2.2

### Patch Changes

- [#5965](https://github.com/ardatan/graphql-tools/pull/5965) [`3e10da6`](https://github.com/ardatan/graphql-tools/commit/3e10da6b2bf97bdf40317a6d88a0cc6412fd0974) Thanks [@n1ru4l](https://github.com/n1ru4l)! - revert subscription event source error handling to graphql-js behaviour

- Updated dependencies [[`baf3c28`](https://github.com/ardatan/graphql-tools/commit/baf3c28f43dcfafffd15386daeb153bc2895c1b3)]:
- @graphql-tools/utils@10.1.1

## 1.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/executor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/executor",
"version": "1.2.1",
"version": "1.2.2",
"type": "module",
"repository": {
"type": "git",
Expand Down Expand Up @@ -55,7 +55,7 @@
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"@graphql-tools/utils": "^10.0.13",
"@graphql-tools/utils": "^10.1.1",
"@graphql-typed-document-node/core": "3.2.0",
"@repeaterjs/repeater": "^3.0.4",
"tslib": "^2.4.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @graphql-tools/federation

## 1.1.19

### Patch Changes

- [#5956](https://github.com/ardatan/graphql-tools/pull/5956) [`d4395dd`](https://github.com/ardatan/graphql-tools/commit/d4395dd7d21db3becdf51cc0508e35d246dcbe1e) Thanks [@ardatan](https://github.com/ardatan)! - Handle orphan types

- Updated dependencies [[`8199416`](https://github.com/ardatan/graphql-tools/commit/81994160488aad1114b0d130083bcf694fe13aba), [`baf3c28`](https://github.com/ardatan/graphql-tools/commit/baf3c28f43dcfafffd15386daeb153bc2895c1b3)]:
- @graphql-tools/wrap@10.0.3
- @graphql-tools/utils@10.1.1

## 1.1.18

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/federation",
"version": "1.1.18",
"version": "1.1.19",
"type": "module",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
Expand Down Expand Up @@ -55,8 +55,8 @@
"@graphql-tools/merge": "^9.0.3",
"@graphql-tools/schema": "^10.0.3",
"@graphql-tools/stitch": "^9.0.5",
"@graphql-tools/utils": "^10.0.13",
"@graphql-tools/wrap": "^10.0.2",
"@graphql-tools/utils": "^10.1.1",
"@graphql-tools/wrap": "^10.0.3",
"tslib": "^2.4.0",
"value-or-promise": "^1.0.12"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @graphql-tools/utils

## 10.1.1

### Patch Changes

- [#5931](https://github.com/ardatan/graphql-tools/pull/5931) [`baf3c28`](https://github.com/ardatan/graphql-tools/commit/baf3c28f43dcfafffd15386daeb153bc2895c1b3) Thanks [@henryqdineen](https://github.com/henryqdineen)! - fix filterSchema argument filter for schema with non-default root types

## 10.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/utils",
"version": "10.1.0",
"version": "10.1.1",
"type": "module",
"description": "Common package containing utils and types for GraphQL tools",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/wrap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-tools/wrap

## 10.0.3

### Patch Changes

- [#5963](https://github.com/ardatan/graphql-tools/pull/5963) [`8199416`](https://github.com/ardatan/graphql-tools/commit/81994160488aad1114b0d130083bcf694fe13aba) Thanks [@EmrysMyrddin](https://github.com/EmrysMyrddin)! - Fix missing `__typename` field when it is already present but aliased.

- Updated dependencies [[`baf3c28`](https://github.com/ardatan/graphql-tools/commit/baf3c28f43dcfafffd15386daeb153bc2895c1b3)]:
- @graphql-tools/utils@10.1.1

## 10.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/wrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/wrap",
"version": "10.0.2",
"version": "10.0.3",
"type": "module",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
Expand Down Expand Up @@ -52,7 +52,7 @@
"dependencies": {
"@graphql-tools/delegate": "^10.0.4",
"@graphql-tools/schema": "^10.0.3",
"@graphql-tools/utils": "^10.0.13",
"@graphql-tools/utils": "^10.1.1",
"tslib": "^2.4.0",
"value-or-promise": "^1.0.12"
},
Expand Down
Loading