graphql 15.7.0 → 15.7.1

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.
@@ -76,7 +76,7 @@ export class GraphQLError extends Error {
76
76
  /**
77
77
  * The original error thrown from a field resolver during execution.
78
78
  */
79
- readonly originalError: Error | undefined;
79
+ readonly originalError: Error | undefined | null;
80
80
 
81
81
  /**
82
82
  * Extension fields to add to the formatted error.
@@ -57,7 +57,7 @@ export class GraphQLError extends Error {
57
57
  /**
58
58
  * The original error thrown from a field resolver during execution.
59
59
  */
60
- +originalError: Error | void;
60
+ +originalError: Error | void | null;
61
61
 
62
62
  /**
63
63
  * Extension fields to add to the formatted error.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphql",
3
- "version": "15.7.0",
3
+ "version": "15.7.1",
4
4
  "description": "A Query Language and Runtime which can target any service.",
5
5
  "license": "MIT",
6
6
  "main": "index",
package/version.js CHANGED
@@ -13,7 +13,7 @@ exports.versionInfo = exports.version = void 0;
13
13
  /**
14
14
  * A string containing the version of the GraphQL.js library
15
15
  */
16
- var version = '15.7.0';
16
+ var version = '15.7.1';
17
17
  /**
18
18
  * An object containing the components of the GraphQL.js version string
19
19
  */
@@ -22,7 +22,7 @@ exports.version = version;
22
22
  var versionInfo = Object.freeze({
23
23
  major: 15,
24
24
  minor: 7,
25
- patch: 0,
25
+ patch: 1,
26
26
  preReleaseTag: null
27
27
  });
28
28
  exports.versionInfo = versionInfo;
package/version.js.flow CHANGED
@@ -7,7 +7,7 @@
7
7
  /**
8
8
  * A string containing the version of the GraphQL.js library
9
9
  */
10
- export const version = '15.7.0';
10
+ export const version = '15.7.1';
11
11
 
12
12
  /**
13
13
  * An object containing the components of the GraphQL.js version string
@@ -15,6 +15,6 @@ export const version = '15.7.0';
15
15
  export const versionInfo = Object.freeze({
16
16
  major: 15,
17
17
  minor: 7,
18
- patch: 0,
18
+ patch: 1,
19
19
  preReleaseTag: null,
20
20
  });
package/version.mjs CHANGED
@@ -6,7 +6,7 @@
6
6
  /**
7
7
  * A string containing the version of the GraphQL.js library
8
8
  */
9
- export var version = '15.7.0';
9
+ export var version = '15.7.1';
10
10
  /**
11
11
  * An object containing the components of the GraphQL.js version string
12
12
  */
@@ -14,6 +14,6 @@ export var version = '15.7.0';
14
14
  export var versionInfo = Object.freeze({
15
15
  major: 15,
16
16
  minor: 7,
17
- patch: 0,
17
+ patch: 1,
18
18
  preReleaseTag: null
19
19
  });