Skip to content

Commit 0c98eac

Browse files
release: on branch main (#3039)
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 main, this PR will be updated. # Releases ## @apollo/[email protected] ### Patch Changes - Fix performance regression in needsJoinField() for large graphs ([#3038](#3038)) - Updated dependencies \[]: - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[[`61f2b6b12ee83e7ecb6509f7131f9412a37e194b`](61f2b6b)]: - @apollo/[email protected] - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[]: - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[]: - @apollo/[email protected] - @apollo/[email protected] ## @apollo/[email protected] ### Patch Changes - Updated dependencies \[]: - @apollo/[email protected] ## @apollo/[email protected] ## [email protected] Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 61f2b6b commit 0c98eac

File tree

16 files changed

+77
-37
lines changed

16 files changed

+77
-37
lines changed

.changeset/six-pets-give.md

-5
This file was deleted.

composition-js/CHANGELOG.md

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

3+
## 2.8.1
4+
5+
### Patch Changes
6+
7+
- Fix performance regression in needsJoinField() for large graphs ([#3038](https://github.com/apollographql/federation/pull/3038))
8+
9+
- Updated dependencies []:
10+
- @apollo/federation-internals@2.8.1
11+
- @apollo/query-graphs@2.8.1
12+
313
## 2.8.0
414

515
### Minor 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.0",
3+
"version": "2.8.1",
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.0",
31-
"@apollo/query-graphs": "2.8.0"
30+
"@apollo/federation-internals": "2.8.1",
31+
"@apollo/query-graphs": "2.8.1"
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.1
4+
35
## 2.8.0
46

57
### Patch Changes

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.0",
4+
"version": "2.8.1",
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.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`61f2b6b12ee83e7ecb6509f7131f9412a37e194b`](https://github.com/apollographql/federation/commit/61f2b6b12ee83e7ecb6509f7131f9412a37e194b)]:
8+
- @apollo/composition@2.8.1
9+
- @apollo/federation-internals@2.8.1
10+
- @apollo/query-planner@2.8.1
11+
312
## 2.8.0
413

514
### Minor 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.0",
3+
"version": "2.8.1",
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.0",
29-
"@apollo/federation-internals": "2.8.0",
30-
"@apollo/query-planner": "2.8.0",
28+
"@apollo/composition": "2.8.1",
29+
"@apollo/federation-internals": "2.8.1",
30+
"@apollo/query-planner": "2.8.1",
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

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

3+
## 2.8.1
4+
35
## 2.8.0
46

57
### Minor 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.0",
3+
"version": "2.8.1",
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

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

3+
## 2.8.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @apollo/federation-internals@2.8.1
9+
310
## 2.8.0
411

512
### Minor 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.0",
3+
"version": "2.8.1",
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.0",
26+
"@apollo/federation-internals": "2.8.1",
2727
"deep-equal": "^2.0.5",
2828
"ts-graphviz": "^1.5.4",
2929
"uuid": "^9.0.0"

query-planner-js/CHANGELOG.md

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

3+
## 2.8.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @apollo/federation-internals@2.8.1
9+
- @apollo/query-graphs@2.8.1
10+
311
## 2.8.0
412

513
### Minor 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.0",
3+
"version": "2.8.1",
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.0",
29-
"@apollo/query-graphs": "2.8.0",
28+
"@apollo/federation-internals": "2.8.1",
29+
"@apollo/query-graphs": "2.8.1",
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.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @apollo/federation-internals@2.8.1
9+
310
## 2.8.0
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.0",
3+
"version": "2.8.1",
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.0"
28+
"@apollo/federation-internals": "2.8.1"
2929
},
3030
"peerDependencies": {
3131
"graphql": "^16.5.0"

0 commit comments

Comments
 (0)