@graphprotocol/graph-cli 0.41.0-alpha-20230221141021-3181116 → 0.41.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.
package/CHANGELOG.md CHANGED
@@ -1,9 +1,22 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.41.0-alpha-20230221141021-3181116
3
+ ## 0.41.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1077](https://github.com/graphprotocol/graph-tooling/pull/1077)
8
+ [`7efc38b`](https://github.com/graphprotocol/graph-tooling/commit/7efc38ba68dad1e7b09934f9b6b4e5566c298bc1)
9
+ Thanks [@enisdenjo](https://github.com/enisdenjo)! - Ask for product if missing when using deploy
10
+ command
11
+
12
+ ## 0.41.0
4
13
 
5
14
  ### Minor Changes
6
15
 
16
+ - [#1076](https://github.com/graphprotocol/graph-tooling/pull/1076)
17
+ [`c18a663`](https://github.com/graphprotocol/graph-tooling/commit/c18a66349e18c21636d83a19388df1580848aa64)
18
+ Thanks [@saihaj](https://github.com/saihaj)! - add `base-testnet` to studio
19
+
7
20
  - [#1055](https://github.com/graphprotocol/graph-tooling/pull/1055)
8
21
  [`044cd92`](https://github.com/graphprotocol/graph-tooling/commit/044cd92d0ceb9628c7f7fbe3627a09b867710247)
9
22
  Thanks [@enisdenjo](https://github.com/enisdenjo)! - Migrate to Oclif
@@ -17,10 +30,13 @@
17
30
  - Added dependency [`@oclif/core@2.0.7` ↗︎](https://www.npmjs.com/package/@oclif/core/v/2.0.7) (to
18
31
  `dependencies`)
19
32
 
20
- - [#1077](https://github.com/graphprotocol/graph-tooling/pull/1077)
21
- [`3181116`](https://github.com/graphprotocol/graph-tooling/commit/3181116fcf54ba07f38994e58bbd4c93aa93659e)
22
- Thanks [@enisdenjo](https://github.com/enisdenjo)! - Ask for product if missing when using deploy
23
- command
33
+ - [#1074](https://github.com/graphprotocol/graph-tooling/pull/1074)
34
+ [`e84d1e8`](https://github.com/graphprotocol/graph-tooling/commit/e84d1e873d9b2a8967c5fe2a85fce48b2caeb75f)
35
+ Thanks [@saihaj](https://github.com/saihaj)! - update GH issues link for error message
36
+
37
+ - [#1071](https://github.com/graphprotocol/graph-tooling/pull/1071)
38
+ [`17d0888`](https://github.com/graphprotocol/graph-tooling/commit/17d08884fbc30a78089403e13139622b4145e9ff)
39
+ Thanks [@saihaj](https://github.com/saihaj)! - global files are not needed when using substreams
24
40
 
25
41
  ## 0.40.0
26
42
 
@@ -18,6 +18,7 @@ exports.allowedStudioNetworks = [
18
18
  'near-testnet',
19
19
  'theta-testnet-001',
20
20
  'osmo-test-4',
21
+ 'base-testnet',
21
22
  ];
22
23
  const validateStudioNetwork = ({ studio, product, network, }) => {
23
24
  const isStudio = studio || product === 'subgraph-studio';
@@ -30,7 +30,7 @@ const createExitHandler = (inputFile) => () => {
30
30
  Suggestion: try to comment the whole file and uncomment it little by little while re-running the graph-cli until you isolate the line where the problem happens.
31
31
  Also, please contact us so we can make the CLI better by handling errors like this. You can reach out in any of these links:
32
32
  - Discord channel: https://discord.gg/eM8CA6WA9r
33
- - Github issues: https://github.com/graphprotocol/graph-cli/issues`);
33
+ - Github issues: https://github.com/graphprotocol/graph-tooling/issues/new/choose`);
34
34
  };
35
35
  const setupExitHandler = (exitHandler) => process.addListener('exit', exitHandler);
36
36
  const removeExitHandler = (exitHandler) => process.removeListener('exit', exitHandler);
@@ -48,34 +48,31 @@ class Compiler {
48
48
  this.sourceDir = path_1.default.dirname(options.subgraphManifest);
49
49
  this.blockIpfsMethods = options.blockIpfsMethods;
50
50
  this.libsDirs = [];
51
- if (options.protocol.name !== 'substreams') {
52
- for (let dir = path_1.default.resolve(this.sourceDir);
53
- // Terminate after the root dir or when we have found node_modules
54
- dir !== undefined;
55
- // Continue with the parent directory, terminate after the root dir
56
- dir = path_1.default.dirname(dir) === dir ? undefined : path_1.default.dirname(dir)) {
57
- if (fs_extra_1.default.existsSync(path_1.default.join(dir, 'node_modules'))) {
58
- this.libsDirs.push(path_1.default.join(dir, 'node_modules'));
59
- }
60
- }
61
- if (this.libsDirs.length === 0) {
62
- throw Error(`could not locate \`node_modules\` in parent directories of subgraph manifest`);
63
- }
64
- const globalsFile = path_1.default.join('@graphprotocol', 'graph-ts', 'global', 'global.ts');
65
- const globalsLib = this.libsDirs.find(item => {
66
- return fs_extra_1.default.existsSync(path_1.default.join(item, globalsFile));
67
- });
68
- if (!globalsLib) {
69
- throw Error('Could not locate `@graphprotocol/graph-ts` package in parent directories of subgraph manifest.');
51
+ this.protocol = this.options.protocol;
52
+ this.ABI = this.protocol.getABI();
53
+ if (options.protocol.name === 'substreams') {
54
+ return;
55
+ }
56
+ for (let dir = path_1.default.resolve(this.sourceDir);
57
+ // Terminate after the root dir or when we have found node_modules
58
+ dir !== undefined;
59
+ // Continue with the parent directory, terminate after the root dir
60
+ dir = path_1.default.dirname(dir) === dir ? undefined : path_1.default.dirname(dir)) {
61
+ if (fs_extra_1.default.existsSync(path_1.default.join(dir, 'node_modules'))) {
62
+ this.libsDirs.push(path_1.default.join(dir, 'node_modules'));
70
63
  }
71
- this.globalsFile = path_1.default.join(globalsLib, globalsFile);
72
64
  }
73
- // @ts-expect-error assigned or not, we dont care
74
- if (!this.globalsFile) {
75
- throw new Error('Globals file is missing.');
65
+ if (this.libsDirs.length === 0) {
66
+ throw Error(`could not locate \`node_modules\` in parent directories of subgraph manifest`);
76
67
  }
77
- this.protocol = this.options.protocol;
78
- this.ABI = this.protocol.getABI();
68
+ const globalsFile = path_1.default.join('@graphprotocol', 'graph-ts', 'global', 'global.ts');
69
+ const globalsLib = this.libsDirs.find(item => {
70
+ return fs_extra_1.default.existsSync(path_1.default.join(item, globalsFile));
71
+ });
72
+ if (!globalsLib) {
73
+ throw Error('Could not locate `@graphprotocol/graph-ts` package in parent directories of subgraph manifest.');
74
+ }
75
+ this.globalsFile = path_1.default.join(globalsLib, globalsFile);
79
76
  process.on('uncaughtException', e => {
80
77
  toolbox.print.error(`UNCAUGHT EXCEPTION: ${e}`);
81
78
  });
@@ -233,6 +230,9 @@ class Compiler {
233
230
  // Create output directory
234
231
  fs_extra_1.default.mkdirsSync(path_1.default.dirname(outFile));
235
232
  const libs = this.libsDirs.join(',');
233
+ if (!this.globalsFile) {
234
+ throw Error('Could not locate `@graphprotocol/graph-ts` package in parent directories of subgraph manifest.');
235
+ }
236
236
  const global = path_1.default.relative(baseDir, this.globalsFile);
237
237
  asc.compile({
238
238
  inputFile,
@@ -271,6 +271,9 @@ class Compiler {
271
271
  // Create output directory
272
272
  fs_extra_1.default.mkdirsSync(path_1.default.dirname(outFile));
273
273
  const libs = this.libsDirs.join(',');
274
+ if (!this.globalsFile) {
275
+ throw Error('Could not locate `@graphprotocol/graph-ts` package in parent directories of subgraph manifest.');
276
+ }
274
277
  const global = path_1.default.relative(baseDir, this.globalsFile);
275
278
  asc.compile({
276
279
  inputFile,
@@ -118,6 +118,7 @@ class Protocol {
118
118
  'optimism-kovan',
119
119
  'aurora',
120
120
  'aurora-testnet',
121
+ 'base-testnet',
121
122
  ],
122
123
  near: ['near-mainnet', 'near-testnet'],
123
124
  cosmos: [
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.41.0-alpha-20230221141021-3181116",
2
+ "version": "0.41.1",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
@@ -569,6 +569,7 @@
569
569
  "optimism-kovan",
570
570
  "aurora",
571
571
  "aurora-testnet",
572
+ "base-testnet",
572
573
  "near-mainnet",
573
574
  "near-testnet",
574
575
  "cosmoshub-4",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.41.0-alpha-20230221141021-3181116",
3
+ "version": "0.41.1",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {