@apollo/gateway 0.24.3 → 0.24.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,9 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
- _Nothing yet! Stay tuned!_
|
|
8
8
|
|
|
9
|
+
## v0.24.4
|
|
10
|
+
|
|
11
|
+
- deps(@apollo/query-planner-wasm`): Adjust the packaging to ensure that `dist/` packages were published by the CI publishing pipeline. [PR #557](https://github.com/apollographql/federation/pull/557)
|
|
12
|
+
|
|
9
13
|
## v0.24.3
|
|
10
14
|
|
|
11
|
-
- deps
|
|
15
|
+
- deps(`@apollo/query-planner-wasm`): Fix an error caused by a lacking relatively prefix on the items in `exports`, following up [PR #270](https://github.com/apollographql/federation/pull/270)
|
|
12
16
|
|
|
13
17
|
## v0.24.2
|
|
14
18
|
## v0.24.1
|
|
@@ -18,7 +22,7 @@
|
|
|
18
22
|
## v0.24.0
|
|
19
23
|
|
|
20
24
|
- __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)
|
|
21
|
-
- deps
|
|
25
|
+
- 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)
|
|
22
26
|
|
|
23
27
|
## v0.23.2
|
|
24
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apollo/gateway",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.4",
|
|
4
4
|
"description": "Apollo Gateway",
|
|
5
5
|
"author": "Apollo <opensource@apollographql.com>",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@apollo/federation": "^0.22.0",
|
|
29
|
-
"@apollo/query-planner": "^0.0.
|
|
29
|
+
"@apollo/query-planner": "^0.0.13",
|
|
30
30
|
"@types/node-fetch": "2.5.8",
|
|
31
31
|
"apollo-graphql": "^0.6.0",
|
|
32
32
|
"apollo-reporting-protobuf": "^0.6.0",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"graphql": "^14.5.0 || ^15.0.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "abb9b4759f0e2f6be9f5d662151b71d106109bdf"
|
|
46
46
|
}
|