@graphprotocol/graph-cli 0.66.0-alpha-20240116165017-e428fe8 → 0.66.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.66.0
|
|
3
|
+
## 0.66.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- [#1561](https://github.com/graphprotocol/graph-tooling/pull/1561)
|
|
8
|
-
[`
|
|
8
|
+
[`39d5dbf`](https://github.com/graphprotocol/graph-tooling/commit/39d5dbf091222921044f1044b7a94935fda46236)
|
|
9
9
|
Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for indexerHints in manifest
|
|
10
10
|
|
|
11
11
|
## 0.65.0
|
|
@@ -16,7 +16,9 @@ const scaffold = new index_1.default(scaffoldOptions);
|
|
|
16
16
|
vitest_1.describe.concurrent('Cosmos subgraph scaffolding', () => {
|
|
17
17
|
(0, vitest_1.test)('Manifest', async () => {
|
|
18
18
|
(0, vitest_1.expect)(await scaffold.generateManifest()).toEqual(`\
|
|
19
|
-
specVersion: 0.0
|
|
19
|
+
specVersion: 1.0.0
|
|
20
|
+
indexerHints:
|
|
21
|
+
prune: auto
|
|
20
22
|
schema:
|
|
21
23
|
file: ./schema.graphql
|
|
22
24
|
dataSources:
|
|
@@ -17,7 +17,9 @@ const scaffold = new index_1.default(scaffoldOptions);
|
|
|
17
17
|
vitest_1.describe.concurrent('NEAR subgraph scaffolding', () => {
|
|
18
18
|
(0, vitest_1.test)('Manifest', async () => {
|
|
19
19
|
(0, vitest_1.expect)(await scaffold.generateManifest()).toEqual(`\
|
|
20
|
-
specVersion: 0.0
|
|
20
|
+
specVersion: 1.0.0
|
|
21
|
+
indexerHints:
|
|
22
|
+
prune: auto
|
|
21
23
|
schema:
|
|
22
24
|
file: ./schema.graphql
|
|
23
25
|
dataSources:
|
package/oclif.manifest.json
CHANGED