@graphprotocol/graph-cli 0.68.2 → 0.68.3-alpha-20240223034102-0d95a38

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.68.3-alpha-20240223034102-0d95a38
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1593](https://github.com/graphprotocol/graph-tooling/pull/1593)
8
+ [`0d95a38`](https://github.com/graphprotocol/graph-tooling/commit/0d95a3817e235e072731a3bf39c5ba2c70d5e093)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - increase jayson client timeout
10
+
3
11
  ## 0.68.2
4
12
 
5
13
  ### Patch Changes
@@ -13,6 +13,7 @@ function createJsonRpcClient(url) {
13
13
  path: url.pathname,
14
14
  // username may be empty
15
15
  auth: url.password ? `${url.username}:${url.password}` : undefined,
16
+ timeout: 30000, // 30 seconds
16
17
  };
17
18
  if (url.protocol === 'https:') {
18
19
  return jayson_1.default.Client.https(params);
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.68.2",
2
+ "version": "0.68.3-alpha-20240223034102-0d95a38",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.68.2",
3
+ "version": "0.68.3-alpha-20240223034102-0d95a38",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {