Skip to content

Commit f560372

Browse files
release: on branch version-2.8.3-beta (beta) (#3065)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to version-2.8.3-beta, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `version-2.8.3-beta` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `version-2.8.3-beta`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @apollo/[email protected] ### Patch Changes - Error messages are now lazily evaluated for satisfiability validations. ([#3068](#3068)) - Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](#3066)) - Add a fast path to skip override validation for fields without any subgraph `@override`s. ([#3070](#3070)) - Type merging now uses maps instead of sparsely-populated arrays for per-subgraph data. ([#3069](#3069)) - Stop duplicating hints for inconsistent value type fields per subgraph. ([#3071](#3071)) - Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](#3067)) - Updated dependencies \[[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](38debcf), [`860aace9904e787f9bf05aad94be5b5920f10543`](860aace), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](f753d55), [`3af790517d662f3bec9064c0bf243014c579e9cd`](3af7905)]: - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](38debcf), [`860aace9904e787f9bf05aad94be5b5920f10543`](860aace), [`67b70c6e68b1cdbf8f03dacafd636e27ed9b7814`](67b70c6), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](f753d55), [`f5f6a799d6b3675eecb0eaec7a816d746cd136b2`](f5f6a79), [`42bd27af6a23bcfdd36951dbfa3fb9f7ba833f3a`](42bd27a), [`3af790517d662f3bec9064c0bf243014c579e9cd`](3af7905)]: - @apollo/[email protected] - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - For very large graphs cloning types with lots of join directives can be expensive. Since these directives will not be used in the Schema that is cloned for toAPISchema(), add the ability to optionally omit them ([#3053](#3053)) - Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](#3067)) ## @apollo/[email protected] ### Patch Changes - Error messages are now lazily evaluated for satisfiability validations. ([#3068](#3068)) - Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](#3066)) - Updated dependencies \[[`f753d55e9a49d11389ee4f8d7976533447e95ede`](f753d55), [`3af790517d662f3bec9064c0bf243014c579e9cd`](3af7905)]: - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](#3066)) - Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](#3067)) - Updated dependencies \[[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](38debcf), [`860aace9904e787f9bf05aad94be5b5920f10543`](860aace), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](f753d55), [`3af790517d662f3bec9064c0bf243014c579e9cd`](3af7905)]: - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[[`f753d55e9a49d11389ee4f8d7976533447e95ede`](f753d55), [`3af790517d662f3bec9064c0bf243014c579e9cd`](3af7905)]: - @apollo/[email protected] ## [email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2f436ba commit f560372

File tree

16 files changed

+110
-33
lines changed

16 files changed

+110
-33
lines changed

.changeset/pre.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,13 @@
1010
"@apollo/query-planner": "2.8.2",
1111
"@apollo/subgraph": "2.8.2"
1212
},
13-
"changesets": []
13+
"changesets": [
14+
"afraid-phones-reflect",
15+
"friendly-tables-mix",
16+
"good-shoes-chew",
17+
"many-cats-prove",
18+
"smooth-melons-study",
19+
"violet-wasps-cry",
20+
"wise-donkeys-deliver"
21+
]
1422
}

composition-js/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# CHANGELOG for `@apollo/composition`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- Error messages are now lazily evaluated for satisfiability validations. ([#3068](https://github.com/apollographql/federation/pull/3068))
8+
9+
- Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](https://github.com/apollographql/federation/pull/3066))
10+
11+
- Add a fast path to skip override validation for fields without any subgraph `@override`s. ([#3070](https://github.com/apollographql/federation/pull/3070))
12+
13+
- Type merging now uses maps instead of sparsely-populated arrays for per-subgraph data. ([#3069](https://github.com/apollographql/federation/pull/3069))
14+
15+
- Stop duplicating hints for inconsistent value type fields per subgraph. ([#3071](https://github.com/apollographql/federation/pull/3071))
16+
17+
- Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](https://github.com/apollographql/federation/pull/3067))
18+
19+
- Updated dependencies [[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](https://github.com/apollographql/federation/commit/38debcf2f9af1a719bd1c8acbd9335efa8427ddb), [`860aace9904e787f9bf05aad94be5b5920f10543`](https://github.com/apollographql/federation/commit/860aace9904e787f9bf05aad94be5b5920f10543), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](https://github.com/apollographql/federation/commit/f753d55e9a49d11389ee4f8d7976533447e95ede), [`3af790517d662f3bec9064c0bf243014c579e9cd`](https://github.com/apollographql/federation/commit/3af790517d662f3bec9064c0bf243014c579e9cd)]:
20+
- @apollo/query-graphs@2.8.3-beta.0
21+
- @apollo/federation-internals@2.8.3-beta.0
22+
323
## 2.8.2
424

525
### Patch Changes

composition-js/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/composition",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Federation composition utilities",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -27,8 +27,8 @@
2727
"access": "public"
2828
},
2929
"dependencies": {
30-
"@apollo/federation-internals": "2.8.2",
31-
"@apollo/query-graphs": "2.8.2"
30+
"@apollo/federation-internals": "2.8.3-beta.0",
31+
"@apollo/query-graphs": "2.8.3-beta.0"
3232
},
3333
"peerDependencies": {
3434
"graphql": "^16.5.0"

federation-integration-testsuite-js/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CHANGELOG for `federation-integration-testsuite-js`
22

3+
## 2.8.3-beta.0
4+
35
## 2.8.2
46

57
## 2.8.1

federation-integration-testsuite-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-federation-integration-testsuite",
33
"private": true,
4-
"version": "2.8.2",
4+
"version": "2.8.3-beta.0",
55
"description": "Apollo Federation Integrations / Test Fixtures",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",

gateway-js/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG for `@apollo/gateway`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](https://github.com/apollographql/federation/commit/38debcf2f9af1a719bd1c8acbd9335efa8427ddb), [`860aace9904e787f9bf05aad94be5b5920f10543`](https://github.com/apollographql/federation/commit/860aace9904e787f9bf05aad94be5b5920f10543), [`67b70c6e68b1cdbf8f03dacafd636e27ed9b7814`](https://github.com/apollographql/federation/commit/67b70c6e68b1cdbf8f03dacafd636e27ed9b7814), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](https://github.com/apollographql/federation/commit/f753d55e9a49d11389ee4f8d7976533447e95ede), [`f5f6a799d6b3675eecb0eaec7a816d746cd136b2`](https://github.com/apollographql/federation/commit/f5f6a799d6b3675eecb0eaec7a816d746cd136b2), [`42bd27af6a23bcfdd36951dbfa3fb9f7ba833f3a`](https://github.com/apollographql/federation/commit/42bd27af6a23bcfdd36951dbfa3fb9f7ba833f3a), [`3af790517d662f3bec9064c0bf243014c579e9cd`](https://github.com/apollographql/federation/commit/3af790517d662f3bec9064c0bf243014c579e9cd)]:
8+
- @apollo/composition@2.8.3-beta.0
9+
- @apollo/query-planner@2.8.3-beta.0
10+
- @apollo/federation-internals@2.8.3-beta.0
11+
312
## 2.8.2
413

514
### Patch Changes

gateway-js/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/gateway",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Gateway",
55
"author": "Apollo <[email protected]>",
66
"main": "dist/index.js",
@@ -25,9 +25,9 @@
2525
"access": "public"
2626
},
2727
"dependencies": {
28-
"@apollo/composition": "2.8.2",
29-
"@apollo/federation-internals": "2.8.2",
30-
"@apollo/query-planner": "2.8.2",
28+
"@apollo/composition": "2.8.3-beta.0",
29+
"@apollo/federation-internals": "2.8.3-beta.0",
30+
"@apollo/query-planner": "2.8.3-beta.0",
3131
"@apollo/server-gateway-interface": "^1.1.0",
3232
"@apollo/usage-reporting-protobuf": "^4.1.0",
3333
"@apollo/utils.createhash": "^2.0.0",

internals-js/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG for `@apollo/federation-internals`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- For very large graphs cloning types with lots of join directives can be expensive. Since these directives will not be used in the Schema that is cloned for toAPISchema(), add the ability to optionally omit them ([#3053](https://github.com/apollographql/federation/pull/3053))
8+
9+
- Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](https://github.com/apollographql/federation/pull/3067))
10+
311
## 2.8.2
412

513
### Patch Changes

internals-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/federation-internals",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Federation internal utilities",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

package-lock.json

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

query-graphs-js/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# CHANGELOG for `@apollo/query-graphs`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- Error messages are now lazily evaluated for satisfiability validations. ([#3068](https://github.com/apollographql/federation/pull/3068))
8+
9+
- Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](https://github.com/apollographql/federation/pull/3066))
10+
11+
- Updated dependencies [[`f753d55e9a49d11389ee4f8d7976533447e95ede`](https://github.com/apollographql/federation/commit/f753d55e9a49d11389ee4f8d7976533447e95ede), [`3af790517d662f3bec9064c0bf243014c579e9cd`](https://github.com/apollographql/federation/commit/3af790517d662f3bec9064c0bf243014c579e9cd)]:
12+
- @apollo/federation-internals@2.8.3-beta.0
13+
314
## 2.8.2
415

516
### Patch Changes

query-graphs-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/query-graphs",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Federation library to work with 'query graphs'",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -23,7 +23,7 @@
2323
"node": ">=14.15.0"
2424
},
2525
"dependencies": {
26-
"@apollo/federation-internals": "2.8.2",
26+
"@apollo/federation-internals": "2.8.3-beta.0",
2727
"deep-equal": "^2.0.5",
2828
"ts-graphviz": "^1.5.4",
2929
"uuid": "^9.0.0"

query-planner-js/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG for `@apollo/query-planner`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- Query graph caches now use maps instead of sparsely-populated arrays for per-subgraph data. ([#3066](https://github.com/apollographql/federation/pull/3066))
8+
9+
- Use sets instead of arrays for tracking schema type/directive referencers. ([#3067](https://github.com/apollographql/federation/pull/3067))
10+
11+
- Updated dependencies [[`38debcf2f9af1a719bd1c8acbd9335efa8427ddb`](https://github.com/apollographql/federation/commit/38debcf2f9af1a719bd1c8acbd9335efa8427ddb), [`860aace9904e787f9bf05aad94be5b5920f10543`](https://github.com/apollographql/federation/commit/860aace9904e787f9bf05aad94be5b5920f10543), [`f753d55e9a49d11389ee4f8d7976533447e95ede`](https://github.com/apollographql/federation/commit/f753d55e9a49d11389ee4f8d7976533447e95ede), [`3af790517d662f3bec9064c0bf243014c579e9cd`](https://github.com/apollographql/federation/commit/3af790517d662f3bec9064c0bf243014c579e9cd)]:
12+
- @apollo/query-graphs@2.8.3-beta.0
13+
- @apollo/federation-internals@2.8.3-beta.0
14+
315
## 2.8.2
416

517
### Patch Changes

query-planner-js/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/query-planner",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Query Planner",
55
"author": "Apollo <[email protected]>",
66
"main": "dist/index.js",
@@ -25,8 +25,8 @@
2525
"access": "public"
2626
},
2727
"dependencies": {
28-
"@apollo/federation-internals": "2.8.2",
29-
"@apollo/query-graphs": "2.8.2",
28+
"@apollo/federation-internals": "2.8.3-beta.0",
29+
"@apollo/query-graphs": "2.8.3-beta.0",
3030
"@apollo/utils.keyvaluecache": "^2.1.0",
3131
"chalk": "^4.1.0",
3232
"deep-equal": "^2.0.5",

subgraph-js/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG for `@apollo/subgraph`
22

3+
## 2.8.3-beta.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f753d55e9a49d11389ee4f8d7976533447e95ede`](https://github.com/apollographql/federation/commit/f753d55e9a49d11389ee4f8d7976533447e95ede), [`3af790517d662f3bec9064c0bf243014c579e9cd`](https://github.com/apollographql/federation/commit/3af790517d662f3bec9064c0bf243014c579e9cd)]:
8+
- @apollo/federation-internals@2.8.3-beta.0
9+
310
## 2.8.2
411

512
### Patch Changes

subgraph-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollo/subgraph",
3-
"version": "2.8.2",
3+
"version": "2.8.3-beta.0",
44
"description": "Apollo Subgraph Utilities",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -25,7 +25,7 @@
2525
},
2626
"dependencies": {
2727
"@apollo/cache-control-types": "^1.0.2",
28-
"@apollo/federation-internals": "2.8.2"
28+
"@apollo/federation-internals": "2.8.3-beta.0"
2929
},
3030
"peerDependencies": {
3131
"graphql": "^16.5.0"

0 commit comments

Comments
 (0)