From 88747063e74b6a032dcb073143d664e58dd74e49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Mar 2023 09:27:11 -0800 Subject: [PATCH] Version Packages (#2393) Co-authored-by: github-actions[bot] --- .changeset/big-guests-melt.md | 6 --- .changeset/eighty-knives-beg.md | 6 --- .changeset/flat-books-sin.md | 5 -- .changeset/fluffy-toes-deliver.md | 8 --- .changeset/red-poems-yell.md | 6 --- .changeset/rich-owls-talk.md | 6 --- .changeset/selfish-files-raise.md | 6 --- .changeset/shy-melons-joke.md | 6 --- .changeset/spotty-hornets-provide.md | 6 --- composition-js/CHANGELOG.md | 10 ++++ composition-js/package.json | 6 +-- .../CHANGELOG.md | 2 + .../package.json | 2 +- gateway-js/CHANGELOG.md | 27 ++++++++++ gateway-js/package.json | 8 +-- internals-js/CHANGELOG.md | 2 + internals-js/package.json | 2 +- package-lock.json | 50 +++++++++---------- query-graphs-js/CHANGELOG.md | 9 ++++ query-graphs-js/package.json | 4 +- query-planner-js/CHANGELOG.md | 7 +++ query-planner-js/package.json | 6 +-- subgraph-js/CHANGELOG.md | 9 ++++ subgraph-js/package.json | 4 +- 24 files changed, 107 insertions(+), 96 deletions(-) delete mode 100644 .changeset/big-guests-melt.md delete mode 100644 .changeset/eighty-knives-beg.md delete mode 100644 .changeset/flat-books-sin.md delete mode 100644 .changeset/fluffy-toes-deliver.md delete mode 100644 .changeset/red-poems-yell.md delete mode 100644 .changeset/rich-owls-talk.md delete mode 100644 .changeset/selfish-files-raise.md delete mode 100644 .changeset/shy-melons-joke.md delete mode 100644 .changeset/spotty-hornets-provide.md diff --git a/.changeset/big-guests-melt.md b/.changeset/big-guests-melt.md deleted file mode 100644 index ba79a81ba..000000000 --- a/.changeset/big-guests-melt.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Update @apollo/utils.logger typings dependency - \ No newline at end of file diff --git a/.changeset/eighty-knives-beg.md b/.changeset/eighty-knives-beg.md deleted file mode 100644 index 26ae5004c..000000000 --- a/.changeset/eighty-knives-beg.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/composition": patch ---- - -Stop generating misleading "hint" regarding value type fields for interface types that are entity interfaces (they have a `@key` defined). - \ No newline at end of file diff --git a/.changeset/flat-books-sin.md b/.changeset/flat-books-sin.md deleted file mode 100644 index ba860d968..000000000 --- a/.changeset/flat-books-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Exposes, for each subgraph request, the path in the overall gateway operation at which that subgraph request gets inserted. This path is now available as the pathInIncomingRequest field in the arguments of RemoteGraphQLDataSource.willSendRequest and RemoteGraphQLDataSource.didReceiveResponse. \ No newline at end of file diff --git a/.changeset/fluffy-toes-deliver.md b/.changeset/fluffy-toes-deliver.md deleted file mode 100644 index 0b878d766..000000000 --- a/.changeset/fluffy-toes-deliver.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Previously the `queryPlanStoreKey` was a hash of the query concatenated with an unhashed `operationName` if it was present. This resulted in variable length cache keys that could become unnecessarily long, occupying additional space in the query plan cache. - -This change incorporates the `operationName` _into_ the hash itself (if `operationName` is present). - \ No newline at end of file diff --git a/.changeset/red-poems-yell.md b/.changeset/red-poems-yell.md deleted file mode 100644 index cde367992..000000000 --- a/.changeset/red-poems-yell.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Update @apollo/utils.createhash package, which drops support for node 12 - \ No newline at end of file diff --git a/.changeset/rich-owls-talk.md b/.changeset/rich-owls-talk.md deleted file mode 100644 index 00398c8aa..000000000 --- a/.changeset/rich-owls-talk.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Update @apollo/utils.isnodelike package, which dropped support for node 12 - \ No newline at end of file diff --git a/.changeset/selfish-files-raise.md b/.changeset/selfish-files-raise.md deleted file mode 100644 index 9d6eba4c9..000000000 --- a/.changeset/selfish-files-raise.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/query-graphs": patch ---- - -Update ts-graphviz dependency - \ No newline at end of file diff --git a/.changeset/shy-melons-joke.md b/.changeset/shy-melons-joke.md deleted file mode 100644 index ab5de357d..000000000 --- a/.changeset/shy-melons-joke.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/gateway": patch ---- - -Update @apollo/utils.fetcher package, which drops support for node 12 - \ No newline at end of file diff --git a/.changeset/spotty-hornets-provide.md b/.changeset/spotty-hornets-provide.md deleted file mode 100644 index 01ec481be..000000000 --- a/.changeset/spotty-hornets-provide.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@apollo/subgraph": patch ---- - -Correctly attach provided subscription resolvers to the schema object - \ No newline at end of file diff --git a/composition-js/CHANGELOG.md b/composition-js/CHANGELOG.md index 2aedfaca9..fb8f446fe 100644 --- a/composition-js/CHANGELOG.md +++ b/composition-js/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG for `@apollo/composition` +## 2.3.3 +### Patch Changes + + +- Stop generating misleading "hint" regarding value type fields for interface types that are entity interfaces (they have a `@key` defined). ([#2412](https://github.com/apollographql/federation/pull/2412)) + +- Updated dependencies [[`de89e504`](https://github.com/apollographql/federation/commit/de89e5044d1a2500505a9269bcec7709aa1dcdf4)]: + - @apollo/query-graphs@2.3.3 + - @apollo/federation-internals@2.3.3 + ## 2.3.2 ### Patch Changes diff --git a/composition-js/package.json b/composition-js/package.json index 9db1b1a9f..ec3829571 100644 --- a/composition-js/package.json +++ b/composition-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/composition", - "version": "2.3.2", + "version": "2.3.3", "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.3.2", - "@apollo/query-graphs": "2.3.2" + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3" }, "peerDependencies": { "graphql": "^16.5.0" diff --git a/federation-integration-testsuite-js/CHANGELOG.md b/federation-integration-testsuite-js/CHANGELOG.md index aa2f8bc53..423b52b64 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.3.3 + ## 2.3.2 ## 2.3.1 diff --git a/federation-integration-testsuite-js/package.json b/federation-integration-testsuite-js/package.json index d2e454be2..97455a6d6 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.3.2", + "version": "2.3.3", "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 2c988aecf..4c4632c21 100644 --- a/gateway-js/CHANGELOG.md +++ b/gateway-js/CHANGELOG.md @@ -1,5 +1,32 @@ # CHANGELOG for `@apollo/gateway` +## 2.3.3 +### Patch Changes + + +- Update @apollo/utils.logger typings dependency ([#2269](https://github.com/apollographql/federation/pull/2269)) + + +- Exposes, for each subgraph request, the path in the overall gateway operation at which that subgraph request gets inserted. This path is now available as the pathInIncomingRequest field in the arguments of RemoteGraphQLDataSource.willSendRequest and RemoteGraphQLDataSource.didReceiveResponse. ([#2384](https://github.com/apollographql/federation/pull/2384)) + + +- Previously the `queryPlanStoreKey` was a hash of the query concatenated with an unhashed `operationName` if it was present. This resulted in variable length cache keys that could become unnecessarily long, occupying additional space in the query plan cache. ([#2310](https://github.com/apollographql/federation/pull/2310)) + + This change incorporates the `operationName` _into_ the hash itself (if `operationName` is present). + +- Update @apollo/utils.createhash package, which drops support for node 12 ([#2266](https://github.com/apollographql/federation/pull/2266)) + + +- Update @apollo/utils.isnodelike package, which dropped support for node 12 ([#2268](https://github.com/apollographql/federation/pull/2268)) + + +- Update @apollo/utils.fetcher package, which drops support for node 12 ([#2267](https://github.com/apollographql/federation/pull/2267)) + +- Updated dependencies [[`71a07f30`](https://github.com/apollographql/federation/commit/71a07f3006e6152bb47e258546c2af717ceb687e)]: + - @apollo/composition@2.3.3 + - @apollo/query-planner@2.3.3 + - @apollo/federation-internals@2.3.3 + ## 2.3.2 ### Patch Changes diff --git a/gateway-js/package.json b/gateway-js/package.json index 0edc739f7..a6a35657c 100644 --- a/gateway-js/package.json +++ b/gateway-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/gateway", - "version": "2.3.2", + "version": "2.3.3", "description": "Apollo Gateway", "author": "Apollo ", "main": "dist/index.js", @@ -25,9 +25,9 @@ "access": "public" }, "dependencies": { - "@apollo/composition": "2.3.2", - "@apollo/federation-internals": "2.3.2", - "@apollo/query-planner": "2.3.2", + "@apollo/composition": "2.3.3", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-planner": "2.3.3", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^2.0.0", diff --git a/internals-js/CHANGELOG.md b/internals-js/CHANGELOG.md index 18278bc8a..48f8c8f88 100644 --- a/internals-js/CHANGELOG.md +++ b/internals-js/CHANGELOG.md @@ -1,5 +1,7 @@ # CHANGELOG for `@apollo/federation-internals` +## 2.3.3 + ## 2.3.2 ## 2.3.1 diff --git a/internals-js/package.json b/internals-js/package.json index 16fc253ee..8f7108fb9 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/federation-internals", - "version": "2.3.2", + "version": "2.3.3", "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 2feb3816e..6a1877cc9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -68,11 +68,11 @@ }, "composition-js": { "name": "@apollo/composition", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.2", - "@apollo/query-graphs": "2.3.2" + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3" }, "engines": { "node": ">=14.15.0" @@ -83,7 +83,7 @@ }, "federation-integration-testsuite-js": { "name": "apollo-federation-integration-testsuite", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "graphql-tag": "^2.12.6", @@ -92,12 +92,12 @@ }, "gateway-js": { "name": "@apollo/gateway", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/composition": "2.3.2", - "@apollo/federation-internals": "2.3.2", - "@apollo/query-planner": "2.3.2", + "@apollo/composition": "2.3.3", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-planner": "2.3.3", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^2.0.0", @@ -286,7 +286,7 @@ }, "internals-js": { "name": "@apollo/federation-internals", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { "chalk": "^4.1.0", @@ -16865,10 +16865,10 @@ }, "query-graphs-js": { "name": "@apollo/query-graphs", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.2", + "@apollo/federation-internals": "2.3.3", "deep-equal": "^2.0.5", "ts-graphviz": "^1.5.4", "uuid": "^9.0.0" @@ -16889,11 +16889,11 @@ }, "query-planner-js": { "name": "@apollo/query-planner", - "version": "2.3.2", + "version": "2.3.3", "license": "SEE LICENSE IN ./LICENSE", "dependencies": { - "@apollo/federation-internals": "2.3.2", - "@apollo/query-graphs": "2.3.2", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" @@ -16907,11 +16907,11 @@ }, "subgraph-js": { "name": "@apollo/subgraph", - "version": "2.3.2", + "version": "2.3.3", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.3.2" + "@apollo/federation-internals": "2.3.3" }, "engines": { "node": ">=14.15.0" @@ -16961,8 +16961,8 @@ "@apollo/composition": { "version": "file:composition-js", "requires": { - "@apollo/federation-internals": "2.3.2", - "@apollo/query-graphs": "2.3.2" + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3" } }, "@apollo/federation-internals": { @@ -16975,9 +16975,9 @@ "@apollo/gateway": { "version": "file:gateway-js", "requires": { - "@apollo/composition": "2.3.2", - "@apollo/federation-internals": "2.3.2", - "@apollo/query-planner": "2.3.2", + "@apollo/composition": "2.3.3", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-planner": "2.3.3", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.0.0", "@apollo/utils.createhash": "^2.0.0", @@ -17137,7 +17137,7 @@ "@apollo/query-graphs": { "version": "file:query-graphs-js", "requires": { - "@apollo/federation-internals": "2.3.2", + "@apollo/federation-internals": "2.3.3", "deep-equal": "^2.0.5", "ts-graphviz": "^1.5.4", "uuid": "^9.0.0" @@ -17151,8 +17151,8 @@ "@apollo/query-planner": { "version": "file:query-planner-js", "requires": { - "@apollo/federation-internals": "2.3.2", - "@apollo/query-graphs": "2.3.2", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" @@ -17194,7 +17194,7 @@ "version": "file:subgraph-js", "requires": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.3.2" + "@apollo/federation-internals": "2.3.3" } }, "@apollo/usage-reporting-protobuf": { diff --git a/query-graphs-js/CHANGELOG.md b/query-graphs-js/CHANGELOG.md index 641dbf62a..4e345847a 100644 --- a/query-graphs-js/CHANGELOG.md +++ b/query-graphs-js/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG for `@apollo/query-graphs` +## 2.3.3 +### Patch Changes + + +- Update ts-graphviz dependency ([#2395](https://github.com/apollographql/federation/pull/2395)) + +- Updated dependencies []: + - @apollo/federation-internals@2.3.3 + ## 2.3.2 ### Patch Changes diff --git a/query-graphs-js/package.json b/query-graphs-js/package.json index 5b125b64e..b38ce4488 100644 --- a/query-graphs-js/package.json +++ b/query-graphs-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-graphs", - "version": "2.3.2", + "version": "2.3.3", "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.3.2", + "@apollo/federation-internals": "2.3.3", "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 26a0e1c33..c41ea3bbd 100644 --- a/query-planner-js/CHANGELOG.md +++ b/query-planner-js/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG for `@apollo/query-planner` +## 2.3.3 +### Patch Changes + +- Updated dependencies [[`de89e504`](https://github.com/apollographql/federation/commit/de89e5044d1a2500505a9269bcec7709aa1dcdf4)]: + - @apollo/query-graphs@2.3.3 + - @apollo/federation-internals@2.3.3 + ## 2.3.2 ### Patch Changes diff --git a/query-planner-js/package.json b/query-planner-js/package.json index 341c9aa44..c6c439092 100644 --- a/query-planner-js/package.json +++ b/query-planner-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-planner", - "version": "2.3.2", + "version": "2.3.3", "description": "Apollo Query Planner", "author": "Apollo ", "main": "dist/index.js", @@ -25,8 +25,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.3.2", - "@apollo/query-graphs": "2.3.2", + "@apollo/federation-internals": "2.3.3", + "@apollo/query-graphs": "2.3.3", "chalk": "^4.1.0", "deep-equal": "^2.0.5", "pretty-format": "^29.0.0" diff --git a/subgraph-js/CHANGELOG.md b/subgraph-js/CHANGELOG.md index 06791c971..9bd2bc1ae 100644 --- a/subgraph-js/CHANGELOG.md +++ b/subgraph-js/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG for `@apollo/subgraph` +## 2.3.3 +### Patch Changes + + +- Correctly attach provided subscription resolvers to the schema object ([#2388](https://github.com/apollographql/federation/pull/2388)) + +- Updated dependencies []: + - @apollo/federation-internals@2.3.3 + ## 2.3.2 ### Patch Changes diff --git a/subgraph-js/package.json b/subgraph-js/package.json index 3c917113b..ebcdfa537 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/subgraph", - "version": "2.3.2", + "version": "2.3.3", "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.3.2" + "@apollo/federation-internals": "2.3.3" }, "peerDependencies": { "graphql": "^16.5.0"