Skip to content

Commit

Permalink
Update CHANGELOG.md prior to publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
abernix committed Mar 10, 2021
1 parent 20181dd commit 784d5a9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions federation-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

> 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 appropriate changes within that release will be moved into the new section.
- _Nothing yet! Stay tuned!_

## v0.22.0

- No changes to the package itself, though there are some small changes to the way this package is compiled and the tests within this package due to the changes in [PR #453](https://github.com/apollographql/federation/pull/453)

## v0.21.2

- Fix an erroneous `break` to `continue`, follow-up fix for #478 [PR #481](https://github.com/apollographql/federation/pull/481)
Expand Down
6 changes: 5 additions & 1 deletion gateway-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

> 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 appropriate changes within that release will be moved into the new section.
- __BREAKING__: Make all `protected` gateway fields and methods `private` (except `loadServiceDefinitions`). If you currently depend on the ability to override any of these currently `protected` members of `ApolloGateway` please let us know. For additional context on why `loadServiceDefinitions` remains `protected` (for now) please read the associated PR description and linked issue. [PR #539](https://github.com/apollographql/federation/pull/539)
- _Nothing yet! Stay tuned!_

## v0.24.0

- __BREAKING__: Make all `protected` gateway fields and methods `private` (except `loadServiceDefinitions`). If you currently depend on the ability to override any of these currently `protected` members of `ApolloGateway` _please let us know by opening or commenting on an existing an issue on this repository_. For additional context on why `loadServiceDefinitions` remains `protected` (for now) please read the associated PR description and linked issue. [PR #539](https://github.com/apollographql/federation/pull/539)
- deps: `@apollo/query-planner-wasm`: This dependency has been bumped to a version that emits an ECMAScript module (ESM) in addition to the current CommonJS (CJS) bundle. This may help facilitate interoperability with bundlers thwarted by the presence of the WASM module (`.wasm`) within in this dependency since its inception and included in `@apollo/gateway` since [`v0.20.1`](#v0201). [PR #270](https://github.com/apollographql/federation/pull/270) [Issue #255](https://github.com/apollographql/federation/issues/255)

## v0.23.2
Expand Down
4 changes: 4 additions & 0 deletions query-planner-wasm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@

> 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 appropriate changes within that release will be moved into the new section.
- _Nothing yet! Stay tuned!_

## v0.2.0

- To facilitate interoperability with bundlers (e.g., Webpack) attempting to bundle this package which includes a WASM module, we will also now generate a ECMAScript Module (ESM) entry-point for this package _in addition to the existing CommonJS (CJS) bundle. This new ESM entry-point is conveyed via the [`exports` object within the `package.json`](https://nodejs.org/api/packages.html#packages_exports) of the published package. It's worth noting that package has always had a WebAssembly (WASM; `.wasm`) module inside of it which was produced with [`wasm-pack`](https://github.com/rustwasm/wasm-pack) but, prior to this change, we'd been specifying the [`--target nodejs`](https://rustwasm.github.io/wasm-pack/book/commands/build.html#target) flag to `wasm-pack build`. [PR #270](https://github.com/apollographql/federation/pull/270) [Issue #255](https://github.com/apollographql/federation/issues/255)

0 comments on commit 784d5a9

Please sign in to comment.