From b03e2da163323e62192db8d117aba3942c4c2d33 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 30 May 2023 20:42:21 +0000 Subject: [PATCH] Version Packages --- .changeset/brown-bats-float.md | 11 ------- composition-js/CHANGELOG.md | 12 +++++++ composition-js/package.json | 6 ++-- .../CHANGELOG.md | 2 ++ .../package.json | 2 +- gateway-js/CHANGELOG.md | 13 ++++++++ gateway-js/package.json | 8 ++--- internals-js/CHANGELOG.md | 9 ++++++ internals-js/package.json | 2 +- package-lock.json | 32 +++++++++---------- query-graphs-js/CHANGELOG.md | 6 ++++ query-graphs-js/package.json | 4 +-- query-planner-js/CHANGELOG.md | 12 +++++++ query-planner-js/package.json | 6 ++-- subgraph-js/CHANGELOG.md | 6 ++++ subgraph-js/package.json | 4 +-- 16 files changed, 92 insertions(+), 43 deletions(-) delete mode 100644 .changeset/brown-bats-float.md diff --git a/.changeset/brown-bats-float.md b/.changeset/brown-bats-float.md deleted file mode 100644 index 24afb1117..000000000 --- a/.changeset/brown-bats-float.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@apollo/query-planner": patch -"@apollo/composition": patch -"@apollo/federation-internals": patch -"@apollo/gateway": patch ---- - -Re-work the code use to try to reuse query named fragments to improve performance (thus sometimes improving query -planning performance), to fix a possibly raised assertion error (with a message of form like `Cannot add selection of -field X to selection set of parent type Y`), and to fix a rare issue where an interface or union field was not being -queried for all the types it should be. diff --git a/composition-js/CHANGELOG.md b/composition-js/CHANGELOG.md index 51bae8f9c..04e70ac96 100644 --- a/composition-js/CHANGELOG.md +++ b/composition-js/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG for `@apollo/composition` +## 2.4.7 +### Patch Changes + + +- Re-work the code use to try to reuse query named fragments to improve performance (thus sometimes improving query ([#2604](https://github.com/apollographql/federation/pull/2604)) + planning performance), to fix a possibly raised assertion error (with a message of form like `Cannot add selection of + field X to selection set of parent type Y`), and to fix a rare issue where an interface or union field was not being + queried for all the types it should be. +- Updated dependencies [[`2d44f346`](https://github.com/apollographql/federation/commit/2d44f346c553f489d83f1c672e1ad8715665cde2)]: + - @apollo/federation-internals@2.4.7 + - @apollo/query-graphs@2.4.7 + ## 2.4.6 ### Patch Changes diff --git a/composition-js/package.json b/composition-js/package.json index a7b0acd6a..70ed8f627 100644 --- a/composition-js/package.json +++ b/composition-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/composition", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Federation composition utilities", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -27,8 +27,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.4.6", - "@apollo/query-graphs": "2.4.6" + "@apollo/federation-internals": "2.4.7", + "@apollo/query-graphs": "2.4.7" }, "peerDependencies": { "graphql": "^16.5.0" diff --git a/federation-integration-testsuite-js/CHANGELOG.md b/federation-integration-testsuite-js/CHANGELOG.md index 8f49656b3..6e2a2f94c 100644 --- a/federation-integration-testsuite-js/CHANGELOG.md +++ b/federation-integration-testsuite-js/CHANGELOG.md @@ -1,5 +1,7 @@ # CHANGELOG for `federation-integration-testsuite-js` +## 2.4.7 + ## 2.4.6 ## 2.4.5 diff --git a/federation-integration-testsuite-js/package.json b/federation-integration-testsuite-js/package.json index 79ebf7a89..53ab931ba 100644 --- a/federation-integration-testsuite-js/package.json +++ b/federation-integration-testsuite-js/package.json @@ -1,7 +1,7 @@ { "name": "apollo-federation-integration-testsuite", "private": true, - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Federation Integrations / Test Fixtures", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/gateway-js/CHANGELOG.md b/gateway-js/CHANGELOG.md index 2f63e68ba..04b565bb9 100644 --- a/gateway-js/CHANGELOG.md +++ b/gateway-js/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG for `@apollo/gateway` +## 2.4.7 +### Patch Changes + + +- Re-work the code use to try to reuse query named fragments to improve performance (thus sometimes improving query ([#2604](https://github.com/apollographql/federation/pull/2604)) + planning performance), to fix a possibly raised assertion error (with a message of form like `Cannot add selection of + field X to selection set of parent type Y`), and to fix a rare issue where an interface or union field was not being + queried for all the types it should be. +- Updated dependencies [[`2d44f346`](https://github.com/apollographql/federation/commit/2d44f346c553f489d83f1c672e1ad8715665cde2)]: + - @apollo/query-planner@2.4.7 + - @apollo/composition@2.4.7 + - @apollo/federation-internals@2.4.7 + ## 2.4.6 ### Patch Changes diff --git a/gateway-js/package.json b/gateway-js/package.json index 309cc50a5..fb15e3129 100644 --- a/gateway-js/package.json +++ b/gateway-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/gateway", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Gateway", "author": "Apollo ", "main": "dist/index.js", @@ -25,9 +25,9 @@ "access": "public" }, "dependencies": { - "@apollo/composition": "2.4.6", - "@apollo/federation-internals": "2.4.6", - "@apollo/query-planner": "2.4.6", + "@apollo/composition": "2.4.7", + "@apollo/federation-internals": "2.4.7", + "@apollo/query-planner": "2.4.7", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/internals-js/CHANGELOG.md b/internals-js/CHANGELOG.md index 577adf554..94054aa6d 100644 --- a/internals-js/CHANGELOG.md +++ b/internals-js/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG for `@apollo/federation-internals` +## 2.4.7 +### Patch Changes + + +- Re-work the code use to try to reuse query named fragments to improve performance (thus sometimes improving query ([#2604](https://github.com/apollographql/federation/pull/2604)) + planning performance), to fix a possibly raised assertion error (with a message of form like `Cannot add selection of + field X to selection set of parent type Y`), and to fix a rare issue where an interface or union field was not being + queried for all the types it should be. + ## 2.4.6 ### Patch Changes diff --git a/internals-js/package.json b/internals-js/package.json index fdf32b47e..f129cd478 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/federation-internals", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Federation internal utilities", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/package-lock.json b/package-lock.json index b35af6643..682f6f0b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -69,11 +69,11 @@ }, "composition-js": { "name": "@apollo/composition", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.4.6", - "@apollo/query-graphs": "2.4.6" + "@apollo/federation-internals": "2.4.7", + "@apollo/query-graphs": "2.4.7" }, "engines": { "node": ">=14.15.0" @@ -84,7 +84,7 @@ }, "federation-integration-testsuite-js": { "name": "apollo-federation-integration-testsuite", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "graphql-tag": "^2.12.6", @@ -93,12 +93,12 @@ }, "gateway-js": { "name": "@apollo/gateway", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/composition": "2.4.6", - "@apollo/federation-internals": "2.4.6", - "@apollo/query-planner": "2.4.6", + "@apollo/composition": "2.4.7", + "@apollo/federation-internals": "2.4.7", + "@apollo/query-planner": "2.4.7", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", @@ -124,7 +124,7 @@ }, "internals-js": { "name": "@apollo/federation-internals", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "@types/uuid": "^9.0.0", @@ -17316,10 +17316,10 @@ }, "query-graphs-js": { "name": "@apollo/query-graphs", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.4.6", + "@apollo/federation-internals": "2.4.7", "deep-equal": "^2.0.5", "ts-graphviz": "^1.5.4", "uuid": "^9.0.0" @@ -17333,11 +17333,11 @@ }, "query-planner-js": { "name": "@apollo/query-planner", - "version": "2.4.6", + "version": "2.4.7", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.4.6", - "@apollo/query-graphs": "2.4.6", + "@apollo/federation-internals": "2.4.7", + "@apollo/query-graphs": "2.4.7", "@apollo/utils.keyvaluecache": "^2.1.0", "chalk": "^4.1.0", "deep-equal": "^2.0.5", @@ -17366,11 +17366,11 @@ }, "subgraph-js": { "name": "@apollo/subgraph", - "version": "2.4.6", + "version": "2.4.7", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.4.6" + "@apollo/federation-internals": "2.4.7" }, "engines": { "node": ">=14.15.0" diff --git a/query-graphs-js/CHANGELOG.md b/query-graphs-js/CHANGELOG.md index 3860438ee..f1aa04e5a 100644 --- a/query-graphs-js/CHANGELOG.md +++ b/query-graphs-js/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG for `@apollo/query-graphs` +## 2.4.7 +### Patch Changes + +- Updated dependencies [[`2d44f346`](https://github.com/apollographql/federation/commit/2d44f346c553f489d83f1c672e1ad8715665cde2)]: + - @apollo/federation-internals@2.4.7 + ## 2.4.6 ### Patch Changes diff --git a/query-graphs-js/package.json b/query-graphs-js/package.json index 5d06e10fc..e38e801e4 100644 --- a/query-graphs-js/package.json +++ b/query-graphs-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-graphs", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Federation library to work with 'query graphs'", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -23,7 +23,7 @@ "node": ">=14.15.0" }, "dependencies": { - "@apollo/federation-internals": "2.4.6", + "@apollo/federation-internals": "2.4.7", "deep-equal": "^2.0.5", "ts-graphviz": "^1.5.4", "uuid": "^9.0.0" diff --git a/query-planner-js/CHANGELOG.md b/query-planner-js/CHANGELOG.md index e39b22af5..60ca0f50b 100644 --- a/query-planner-js/CHANGELOG.md +++ b/query-planner-js/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG for `@apollo/query-planner` +## 2.4.7 +### Patch Changes + + +- Re-work the code use to try to reuse query named fragments to improve performance (thus sometimes improving query ([#2604](https://github.com/apollographql/federation/pull/2604)) + planning performance), to fix a possibly raised assertion error (with a message of form like `Cannot add selection of + field X to selection set of parent type Y`), and to fix a rare issue where an interface or union field was not being + queried for all the types it should be. +- Updated dependencies [[`2d44f346`](https://github.com/apollographql/federation/commit/2d44f346c553f489d83f1c672e1ad8715665cde2)]: + - @apollo/federation-internals@2.4.7 + - @apollo/query-graphs@2.4.7 + ## 2.4.6 ### Patch Changes diff --git a/query-planner-js/package.json b/query-planner-js/package.json index 8cd015a6e..a5f05dfe1 100644 --- a/query-planner-js/package.json +++ b/query-planner-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-planner", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Query Planner", "author": "Apollo ", "main": "dist/index.js", @@ -25,8 +25,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.4.6", - "@apollo/query-graphs": "2.4.6", + "@apollo/federation-internals": "2.4.7", + "@apollo/query-graphs": "2.4.7", "@apollo/utils.keyvaluecache": "^2.1.0", "chalk": "^4.1.0", "deep-equal": "^2.0.5", diff --git a/subgraph-js/CHANGELOG.md b/subgraph-js/CHANGELOG.md index 656b500ab..1e4991ad0 100644 --- a/subgraph-js/CHANGELOG.md +++ b/subgraph-js/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG for `@apollo/subgraph` +## 2.4.7 +### Patch Changes + +- Updated dependencies [[`2d44f346`](https://github.com/apollographql/federation/commit/2d44f346c553f489d83f1c672e1ad8715665cde2)]: + - @apollo/federation-internals@2.4.7 + ## 2.4.6 ### Patch Changes diff --git a/subgraph-js/package.json b/subgraph-js/package.json index f042e60cf..f735d999b 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/subgraph", - "version": "2.4.6", + "version": "2.4.7", "description": "Apollo Subgraph Utilities", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -25,7 +25,7 @@ }, "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.4.6" + "@apollo/federation-internals": "2.4.7" }, "peerDependencies": { "graphql": "^16.5.0"