@apollo/gateway 2.0.2 → 2.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo/gateway",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Apollo Gateway",
5
5
  "author": "Apollo <packages@apollographql.com>",
6
6
  "main": "dist/index.js",
@@ -25,10 +25,10 @@
25
25
  "access": "public"
26
26
  },
27
27
  "dependencies": {
28
- "@apollo/composition": "^2.0.2",
28
+ "@apollo/composition": "^2.0.3",
29
29
  "@apollo/core-schema": "~0.3.0",
30
- "@apollo/federation-internals": "^2.0.2",
31
- "@apollo/query-planner": "^2.0.2",
30
+ "@apollo/federation-internals": "^2.0.3",
31
+ "@apollo/query-planner": "^2.0.3",
32
32
  "@apollo/utils.createhash": "^1.0.0",
33
33
  "@apollo/utils.fetcher": "^1.0.0",
34
34
  "@apollo/utils.isnodelike": "^1.0.0",
@@ -49,5 +49,5 @@
49
49
  "peerDependencies": {
50
50
  "graphql": "^16.0.0"
51
51
  },
52
- "gitHead": "02bd93d0ed4f75f9cd59b84ddcb66a30babb1553"
52
+ "gitHead": "cda3ff6399a820367eb43c2e9a81c77763a57bdd"
53
53
  }
@@ -10,7 +10,7 @@ export type Scalars = {
10
10
  Boolean: boolean;
11
11
  Int: number;
12
12
  Float: number;
13
- /** ISO 8601, extended format with nanoseconds, Zulu (or '[+-]seconds' for times relative to now) */
13
+ /** ISO 8601, extended format with nanoseconds, Zulu (or "[+-]seconds" as a string or number relative to now) */
14
14
  Timestamp: any;
15
15
  };
16
16
 
@@ -2993,5 +2993,4 @@ describe('executeQueryPlan', () => {
2993
2993
  `);
2994
2994
  });
2995
2995
  });
2996
-
2997
2996
  });
@@ -147,7 +147,7 @@ describe('lifecycle hooks', () => {
147
147
  // the supergraph (even just formatting differences), this ID will change
148
148
  // and this test will have to updated.
149
149
  expect(secondCall[0]!.compositionId).toEqual(
150
- '730a2fe4036db8e2c847096ba2a62f78ff8f3c08c9ee092a5b1b37e1aa00ef5a',
150
+ '68b144680261e3b57be90f127f35c88d0ce6cb7aaadf04d0a5d60fedcc2500b3',
151
151
  );
152
152
  // second call should have previous info in the second arg
153
153
  expect(secondCall[1]!.compositionId).toEqual(expectedFirstId);