Skip to content

Commit 00e0a83

Browse files
Rollback asc version (#1849)
* rollback asc * add changesets * chore(dependencies): updated changesets for modified dependencies --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8f2f892 commit 00e0a83

15 files changed

+95
-48
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@graphprotocol/graph-cli": patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`[email protected]` ↗︎](https://www.npmjs.com/package/assemblyscript/v/0.19.23) (from `0.27.31`, in `dependencies`)

.changeset/green-islands-wink.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': minor
3+
---
4+
5+
Update all dependencies

.changeset/heavy-socks-cross.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': patch
3+
---
4+
5+
Fix `graph add` flag parameters parsing

.changeset/new-gorillas-scream.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@graphprotocol/graph-cli': minor
3+
---
4+
5+
- add networks registry support
6+
- improve `graph init` flow
7+
- filter through the networks as you type
8+
- more information about the networks
9+
- remove unnecessary options depending on the selection
10+
- ESC key to go back
11+
- allow specifying ipfs/url for substreams package

.changeset/short-keys-boil.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': patch
3+
---
4+
5+
fix bug with clashing \_id field name in schema

.changeset/swift-jobs-count.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': patch
3+
---
4+
5+
fix generated example entity id uniqueness

.changeset/wet-toys-fry.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': patch
3+
---
4+
5+
rollback asc version

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@oclif/plugin-warn-if-update-available": "^3.1.24",
3838
"@pinax/graph-networks-registry": "^0.6.5",
3939
"@whatwg-node/fetch": "^0.10.1",
40-
"assemblyscript": "0.27.31",
40+
"assemblyscript": "0.19.23",
4141
"binary-install": "^1.1.0",
4242
"chokidar": "4.0.1",
4343
"debug": "4.3.7",

packages/cli/src/command-helpers/compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function appendApiVersionForGraph(inputString: string) {
3333
}
3434

3535
// Helper function to construct a subgraph compiler
36-
export async function createCompiler(
36+
export function createCompiler(
3737
manifest: string,
3838
{
3939
ipfs,

packages/cli/src/commands/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default class BuildCommand extends Command {
8787
await updateSubgraphNetwork(manifest, network, networkFile, identifierName);
8888
}
8989

90-
const compiler = await createCompiler(manifest, {
90+
const compiler = createCompiler(manifest, {
9191
ipfs,
9292
outputDir,
9393
outputFormat,

0 commit comments

Comments
 (0)