From 7ef2ad7681a4f8bc4a9960988927d9ab2540d726 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:17:35 +0300 Subject: [PATCH] chore(release): update monorepo packages versions (#6106) Co-authored-by: github-actions[bot] --- .changeset/big-horses-study.md | 6 ------ .changeset/curvy-garlics-grin.md | 5 ----- .changeset/honest-beds-try.md | 5 ----- benchmark/federation/CHANGELOG.md | 7 +++++++ benchmark/federation/package.json | 4 ++-- packages/stitch/CHANGELOG.md | 11 +++++++++++ packages/stitch/package.json | 4 ++-- packages/utils/CHANGELOG.md | 10 ++++++++++ packages/utils/package.json | 2 +- 9 files changed, 33 insertions(+), 21 deletions(-) delete mode 100644 .changeset/big-horses-study.md delete mode 100644 .changeset/curvy-garlics-grin.md delete mode 100644 .changeset/honest-beds-try.md diff --git a/.changeset/big-horses-study.md b/.changeset/big-horses-study.md deleted file mode 100644 index b792f6a356f..00000000000 --- a/.changeset/big-horses-study.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@graphql-tools/stitch": patch -"@graphql-tools/utils": patch ---- - -Handle fields in unmerged types as both isolated and non-isolated fields diff --git a/.changeset/curvy-garlics-grin.md b/.changeset/curvy-garlics-grin.md deleted file mode 100644 index d2f37f71910..00000000000 --- a/.changeset/curvy-garlics-grin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphql-tools/stitch": patch ---- - -Respect `specifiedByURL` in stitched schemas diff --git a/.changeset/honest-beds-try.md b/.changeset/honest-beds-try.md deleted file mode 100644 index 040aa6600f8..00000000000 --- a/.changeset/honest-beds-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphql-tools/utils": minor ---- - -Add `enumValueFilter` and `directiveFilter` to `filterSchema` diff --git a/benchmark/federation/CHANGELOG.md b/benchmark/federation/CHANGELOG.md index 4a7cb2f294a..1a0894928a0 100644 --- a/benchmark/federation/CHANGELOG.md +++ b/benchmark/federation/CHANGELOG.md @@ -1,5 +1,12 @@ # federation-benchmark +## 0.0.130 + +### Patch Changes + +- Updated dependencies [[`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95), [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95)]: + - @graphql-tools/stitch@9.2.1 + ## 0.0.129 ### Patch Changes diff --git a/benchmark/federation/package.json b/benchmark/federation/package.json index 89e45b10e4e..9782ee7c49a 100644 --- a/benchmark/federation/package.json +++ b/benchmark/federation/package.json @@ -1,6 +1,6 @@ { "name": "federation-benchmark", - "version": "0.0.129", + "version": "0.0.130", "private": true, "scripts": { "loadtest:federation": "k6 -e ENDPOINT=federation run k6.js", @@ -12,7 +12,7 @@ "@apollo/gateway": "2.7.4", "@apollo/subgraph": "2.7.4", "@graphql-tools/federation": "1.1.28", - "@graphql-tools/stitch": "9.2.0", + "@graphql-tools/stitch": "9.2.1", "cross-env": "7.0.3", "express": "4.19.2", "graphql": "16.8.1", diff --git a/packages/stitch/CHANGELOG.md b/packages/stitch/CHANGELOG.md index d035cd5d2fd..a3dedd7f618 100644 --- a/packages/stitch/CHANGELOG.md +++ b/packages/stitch/CHANGELOG.md @@ -1,5 +1,16 @@ # @graphql-tools/stitch +## 9.2.1 + +### Patch Changes + +- [#6105](https://github.com/ardatan/graphql-tools/pull/6105) [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95) Thanks [@ardatan](https://github.com/ardatan)! - Handle fields in unmerged types as both isolated and non-isolated fields + +- [#6105](https://github.com/ardatan/graphql-tools/pull/6105) [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95) Thanks [@ardatan](https://github.com/ardatan)! - Respect `specifiedByURL` in stitched schemas + +- Updated dependencies [[`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95), [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95)]: + - @graphql-tools/utils@10.2.0 + ## 9.2.0 ### Minor Changes diff --git a/packages/stitch/package.json b/packages/stitch/package.json index 90121dcf669..5bd5ff32b2e 100644 --- a/packages/stitch/package.json +++ b/packages/stitch/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-tools/stitch", - "version": "9.2.0", + "version": "9.2.1", "type": "module", "description": "A set of utils for faster development of GraphQL tools", "repository": { @@ -55,7 +55,7 @@ "@graphql-tools/executor": "^1.2.1", "@graphql-tools/merge": "^9.0.3", "@graphql-tools/schema": "^10.0.3", - "@graphql-tools/utils": "^10.0.13", + "@graphql-tools/utils": "^10.2.0", "@graphql-tools/wrap": "^10.0.2", "tslib": "^2.4.0", "value-or-promise": "^1.0.11" diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b08e1694581..fd07e43d48f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,15 @@ # @graphql-tools/utils +## 10.2.0 + +### Minor Changes + +- [#6105](https://github.com/ardatan/graphql-tools/pull/6105) [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95) Thanks [@ardatan](https://github.com/ardatan)! - Add `enumValueFilter` and `directiveFilter` to `filterSchema` + +### Patch Changes + +- [#6105](https://github.com/ardatan/graphql-tools/pull/6105) [`5567347`](https://github.com/ardatan/graphql-tools/commit/5567347217fdfb72e3f8b389ade6d5912dfb5c95) Thanks [@ardatan](https://github.com/ardatan)! - Handle fields in unmerged types as both isolated and non-isolated fields + ## 10.1.3 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 2d096d0bf5e..ee2fcb9e9f4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-tools/utils", - "version": "10.1.3", + "version": "10.2.0", "type": "module", "description": "Common package containing utils and types for GraphQL tools", "repository": {