From e02e75aa3387ef4c5fd4e3cd4be659e0981d3bfd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 17:38:25 +0000 Subject: [PATCH] Version Packages (preview) --- .changeset/pre.json | 6 ++-- composition-js/CHANGELOG.md | 16 +++++++++ composition-js/package.json | 6 ++-- .../CHANGELOG.md | 6 ++++ .../package.json | 2 +- gateway-js/CHANGELOG.md | 13 +++++++ gateway-js/package.json | 8 ++--- internals-js/CHANGELOG.md | 10 ++++++ internals-js/package.json | 2 +- package-lock.json | 34 +++++++++---------- query-graphs-js/CHANGELOG.md | 11 ++++++ query-graphs-js/package.json | 4 +-- query-planner-js/CHANGELOG.md | 12 +++++++ query-planner-js/package.json | 6 ++-- subgraph-js/CHANGELOG.md | 11 ++++++ subgraph-js/package.json | 4 +-- 16 files changed, 116 insertions(+), 35 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 064771669..697f02d6b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -12,7 +12,9 @@ }, "changesets": [ "afraid-queens-drive", - "five-suits-drum", - "lucky-pillows-rhyme" + "empty-shirts-behave", + "four-panthers-itch", + "lucky-pillows-rhyme", + "sixty-plums-enjoy" ] } diff --git a/composition-js/CHANGELOG.md b/composition-js/CHANGELOG.md index bfda543f4..32d8a88f4 100644 --- a/composition-js/CHANGELOG.md +++ b/composition-js/CHANGELOG.md @@ -1,5 +1,21 @@ # CHANGELOG for `@apollo/composition` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Adding new CompositionOption `maxValidationSubgraphPaths`. This value represents the maximum number of SubgraphPathInfo objects that may exist in a ValidationTraversal when checking for satisfiability. Setting this value can help composition error before running out of memory. Default is 1,000,000. ([#3275](https://github.com/apollographql/federation/pull/3275)) + +- Allow merging external types when using arrays as default arguments. ([#3096](https://github.com/apollographql/federation/pull/3096)) + +- Updated dependencies [[`468f27842608f4e390cfc88bc7e6b4b0945f95ff`](https://github.com/apollographql/federation/commit/468f27842608f4e390cfc88bc7e6b4b0945f95ff), [`b734ea04d118db09cf6077fdd968c8f04a96327a`](https://github.com/apollographql/federation/commit/b734ea04d118db09cf6077fdd968c8f04a96327a)]: + - @apollo/query-graphs@2.12.0-preview.0 + - @apollo/federation-internals@2.12.0-preview.0 + ## 2.11.0 ### Minor Changes diff --git a/composition-js/package.json b/composition-js/package.json index 1a13bca19..a557da7d6 100644 --- a/composition-js/package.json +++ b/composition-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/composition", - "version": "2.11.0", + "version": "2.12.0-preview.0", "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.11.0", - "@apollo/query-graphs": "2.11.0" + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-graphs": "2.12.0-preview.0" }, "peerDependencies": { "graphql": "^16.5.0" diff --git a/federation-integration-testsuite-js/CHANGELOG.md b/federation-integration-testsuite-js/CHANGELOG.md index 930127292..779c4259f 100644 --- a/federation-integration-testsuite-js/CHANGELOG.md +++ b/federation-integration-testsuite-js/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG for `federation-integration-testsuite-js` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + ## 2.11.0 ### Minor Changes diff --git a/federation-integration-testsuite-js/package.json b/federation-integration-testsuite-js/package.json index 283077f32..37986e17f 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.11.0", + "version": "2.12.0-preview.0", "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 96052f6f7..deb834303 100644 --- a/gateway-js/CHANGELOG.md +++ b/gateway-js/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG for `@apollo/gateway` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Updated dependencies [[`468f27842608f4e390cfc88bc7e6b4b0945f95ff`](https://github.com/apollographql/federation/commit/468f27842608f4e390cfc88bc7e6b4b0945f95ff), [`b734ea04d118db09cf6077fdd968c8f04a96327a`](https://github.com/apollographql/federation/commit/b734ea04d118db09cf6077fdd968c8f04a96327a), [`0dbc7cc72ffacf324231e9ccb2de4189f6bf3289`](https://github.com/apollographql/federation/commit/0dbc7cc72ffacf324231e9ccb2de4189f6bf3289)]: + - @apollo/query-planner@2.12.0-preview.0 + - @apollo/composition@2.12.0-preview.0 + - @apollo/federation-internals@2.12.0-preview.0 + ## 2.11.0 ### Minor Changes diff --git a/gateway-js/package.json b/gateway-js/package.json index ffad57471..946e73a5a 100644 --- a/gateway-js/package.json +++ b/gateway-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/gateway", - "version": "2.11.0", + "version": "2.12.0-preview.0", "description": "Apollo Gateway", "author": "Apollo ", "main": "dist/index.js", @@ -25,9 +25,9 @@ "access": "public" }, "dependencies": { - "@apollo/composition": "2.11.0", - "@apollo/federation-internals": "2.11.0", - "@apollo/query-planner": "2.11.0", + "@apollo/composition": "2.12.0-preview.0", + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-planner": "2.12.0-preview.0", "@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 7db1437f3..0c862de6e 100644 --- a/internals-js/CHANGELOG.md +++ b/internals-js/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG for `@apollo/federation-internals` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Adding new CompositionOption `maxValidationSubgraphPaths`. This value represents the maximum number of SubgraphPathInfo objects that may exist in a ValidationTraversal when checking for satisfiability. Setting this value can help composition error before running out of memory. Default is 1,000,000. ([#3275](https://github.com/apollographql/federation/pull/3275)) + ## 2.11.0 ### Minor Changes diff --git a/internals-js/package.json b/internals-js/package.json index e3727b582..1f9c439bf 100644 --- a/internals-js/package.json +++ b/internals-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/federation-internals", - "version": "2.11.0", + "version": "2.12.0-preview.0", "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 3e1b15430..a014cadb4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -70,11 +70,11 @@ }, "composition-js": { "name": "@apollo/composition", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { - "@apollo/federation-internals": "2.11.0", - "@apollo/query-graphs": "2.11.0" + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-graphs": "2.12.0-preview.0" }, "engines": { "node": ">=14.15.0" @@ -85,7 +85,7 @@ }, "federation-integration-testsuite-js": { "name": "apollo-federation-integration-testsuite", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { "graphql-tag": "^2.12.6", @@ -94,12 +94,12 @@ }, "gateway-js": { "name": "@apollo/gateway", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { - "@apollo/composition": "2.11.0", - "@apollo/federation-internals": "2.11.0", - "@apollo/query-planner": "2.11.0", + "@apollo/composition": "2.12.0-preview.0", + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-planner": "2.12.0-preview.0", "@apollo/server-gateway-interface": "^1.1.0", "@apollo/usage-reporting-protobuf": "^4.1.0", "@apollo/utils.createhash": "^2.0.0", @@ -125,7 +125,7 @@ }, "internals-js": { "name": "@apollo/federation-internals", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { "@types/uuid": "^9.0.0", @@ -17841,10 +17841,10 @@ }, "query-graphs-js": { "name": "@apollo/query-graphs", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { - "@apollo/federation-internals": "2.11.0", + "@apollo/federation-internals": "2.12.0-preview.0", "deep-equal": "^2.0.5", "ts-graphviz": "^1.5.4", "uuid": "^9.0.0" @@ -17858,11 +17858,11 @@ }, "query-planner-js": { "name": "@apollo/query-planner", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "Elastic-2.0", "dependencies": { - "@apollo/federation-internals": "2.11.0", - "@apollo/query-graphs": "2.11.0", + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-graphs": "2.12.0-preview.0", "@apollo/utils.keyvaluecache": "^2.1.0", "chalk": "^4.1.0", "deep-equal": "^2.0.5", @@ -17891,11 +17891,11 @@ }, "subgraph-js": { "name": "@apollo/subgraph", - "version": "2.11.0", + "version": "2.12.0-preview.0", "license": "MIT", "dependencies": { "@apollo/cache-control-types": "^1.0.2", - "@apollo/federation-internals": "2.11.0" + "@apollo/federation-internals": "2.12.0-preview.0" }, "engines": { "node": ">=14.15.0" @@ -17905,4 +17905,4 @@ } } } -} \ No newline at end of file +} diff --git a/query-graphs-js/CHANGELOG.md b/query-graphs-js/CHANGELOG.md index d8b340edc..6363f5921 100644 --- a/query-graphs-js/CHANGELOG.md +++ b/query-graphs-js/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG for `@apollo/query-graphs` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Updated dependencies [[`468f27842608f4e390cfc88bc7e6b4b0945f95ff`](https://github.com/apollographql/federation/commit/468f27842608f4e390cfc88bc7e6b4b0945f95ff), [`b734ea04d118db09cf6077fdd968c8f04a96327a`](https://github.com/apollographql/federation/commit/b734ea04d118db09cf6077fdd968c8f04a96327a)]: + - @apollo/federation-internals@2.12.0-preview.0 + ## 2.11.0 ### Minor Changes diff --git a/query-graphs-js/package.json b/query-graphs-js/package.json index 03c3b1a7c..10f6b2ccc 100644 --- a/query-graphs-js/package.json +++ b/query-graphs-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-graphs", - "version": "2.11.0", + "version": "2.12.0-preview.0", "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.11.0", + "@apollo/federation-internals": "2.12.0-preview.0", "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 c6306fdea..10488e385 100644 --- a/query-planner-js/CHANGELOG.md +++ b/query-planner-js/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG for `@apollo/query-planner` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Updated dependencies [[`468f27842608f4e390cfc88bc7e6b4b0945f95ff`](https://github.com/apollographql/federation/commit/468f27842608f4e390cfc88bc7e6b4b0945f95ff), [`b734ea04d118db09cf6077fdd968c8f04a96327a`](https://github.com/apollographql/federation/commit/b734ea04d118db09cf6077fdd968c8f04a96327a)]: + - @apollo/query-graphs@2.12.0-preview.0 + - @apollo/federation-internals@2.12.0-preview.0 + ## 2.11.0 ### Minor Changes diff --git a/query-planner-js/package.json b/query-planner-js/package.json index 81f8bc7e9..f651cd957 100644 --- a/query-planner-js/package.json +++ b/query-planner-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/query-planner", - "version": "2.11.0", + "version": "2.12.0-preview.0", "description": "Apollo Query Planner", "author": "Apollo ", "main": "dist/index.js", @@ -25,8 +25,8 @@ "access": "public" }, "dependencies": { - "@apollo/federation-internals": "2.11.0", - "@apollo/query-graphs": "2.11.0", + "@apollo/federation-internals": "2.12.0-preview.0", + "@apollo/query-graphs": "2.12.0-preview.0", "@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 011c75121..c39d81c05 100644 --- a/subgraph-js/CHANGELOG.md +++ b/subgraph-js/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG for `@apollo/subgraph` +## 2.12.0-preview.0 + +### Minor Changes + +- Federation 2.12 and Connect 0.3 ([#3276](https://github.com/apollographql/federation/pull/3276)) + +### Patch Changes + +- Updated dependencies [[`468f27842608f4e390cfc88bc7e6b4b0945f95ff`](https://github.com/apollographql/federation/commit/468f27842608f4e390cfc88bc7e6b4b0945f95ff), [`b734ea04d118db09cf6077fdd968c8f04a96327a`](https://github.com/apollographql/federation/commit/b734ea04d118db09cf6077fdd968c8f04a96327a)]: + - @apollo/federation-internals@2.12.0-preview.0 + ## 2.11.0 ### Minor Changes diff --git a/subgraph-js/package.json b/subgraph-js/package.json index b848660e0..eef0529f4 100644 --- a/subgraph-js/package.json +++ b/subgraph-js/package.json @@ -1,6 +1,6 @@ { "name": "@apollo/subgraph", - "version": "2.11.0", + "version": "2.12.0-preview.0", "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.11.0" + "@apollo/federation-internals": "2.12.0-preview.0" }, "peerDependencies": { "graphql": "^16.5.0"