Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Federated Schemas From Existing Schema #4310

Closed
wants to merge 13 commits into from
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -6,7 +6,7 @@ The version headers in this history reflect the versions of Apollo Server itself

> The changes noted within this `vNEXT` section have not been released yet. New PRs and commits which introduce changes should include an entry in this `vNEXT` section as part of their development. When a release is being prepared, a new header will be (manually) created below and the the appropriate changes within that release will be moved into the new section.

- _Nothing yet!_
- `@apollo/federation`: Support for creating federated schemas from existing schemas [#3013](https://github.com/apollographql/apollo-server/pull/3013)

### v2.8.1

Expand Down Expand Up @@ -57,7 +57,7 @@ The version headers in this history reflect the versions of Apollo Server itself
}
```
- `apollo-engine-reporting`: **Behavior change**: By default, send no GraphQL request headers and values to Apollo's servers instead of sending all. Adding the new EngineReportingOption `sendHeaders` to send some or all header values. This replaces the `privateHeaders` option, which is now deprecated. [PR #2931](https://github.com/apollographql/apollo-server/pull/2931)

To maintain the previous behavior of transmitting **all** GraphQL request headers and values, configure `engine`.`sendHeaders` as following:
```js
engine: {
Expand Down
2 changes: 2 additions & 0 deletions packages/apollo-federation/CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

### vNEXT

* Support for creating federated schemas from existing schemas [#3013](https://github.com/apollographql/apollo-server/pull/3013)

# v0.6.8

* Support __typenames if defined by an incoming operation [#2922](https://github.com/apollographql/apollo-server/pull/2922)
Expand Down