@apollo/gateway 0.45.0-alpha.1 → 0.45.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  > 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.
6
6
 
7
+ - _Nothing to see here. Stay tuned._
8
+
9
+ ## v0.45.0
10
+
7
11
  - __NOOP__: Fix OOB testing w.r.t. nock hygiene. Pushed error reporting endpoint responsibilities up into the gateway class, but there should be no effect on the runtime at all. [PR #1309](https://github.com/apollographql/federation/pull/1309)
8
12
  - __BREAKING__: Remove legacy GCS fetcher for schema updates. If you're currently opted-in to the backwards compatibility provided by setting `schemaConfigDeliveryEndpoint: null`, you may be affected by this update. Please see the PR for additional details. [PR #1225](https://github.com/apollographql/federation/pull/1225)
9
13
  - __Multi-cloud Uplink capability__ [PR #1283](https://github.com/apollographql/federation/pull/1283): now, by default two separate Uplink services will be used for schema fetching, the system will round-robin and if one service fails, a retry will occur and the other service will be called.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/gateway",
3
- "version": "0.45.0-alpha.1",
3
+ "version": "0.45.0",
4
4
  "description": "Apollo Gateway",
5
5
  "author": "Apollo <packages@apollographql.com>",
6
6
  "main": "dist/index.js",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@apollo/core-schema": "^0.2.0",
29
29
  "@apollo/federation": "^0.33.8",
30
- "@apollo/query-planner": "^0.6.2-alpha.0",
30
+ "@apollo/query-planner": "^0.6.3",
31
31
  "@opentelemetry/api": "^1.0.1",
32
32
  "@types/node-fetch": "2.5.12",
33
33
  "apollo-graphql": "^0.9.5",
@@ -44,5 +44,5 @@
44
44
  "peerDependencies": {
45
45
  "graphql": "^15.7.2"
46
46
  },
47
- "gitHead": "e6cc90bd8a12e62a5a982178fee7622089739f45"
47
+ "gitHead": "6da531f786edaee9cde8e12064bac6934caa13bc"
48
48
  }