From 4d9b8e77ab4be321d50a83504d3c50b4ba3e31a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Pace?= Date: Sat, 20 Nov 2021 11:45:31 -0300 Subject: [PATCH 1/2] deps: Bump graph-ts to 0.24.0 --- examples/basic-event-handlers/package.json | 2 +- examples/basic-event-handlers/yarn.lock | 8 ++++---- examples/example-subgraph/package.json | 2 +- examples/example-subgraph/yarn.lock | 8 ++++---- src/scaffold.js | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/basic-event-handlers/package.json b/examples/basic-event-handlers/package.json index 8f11d2e41..c908ca5ad 100644 --- a/examples/basic-event-handlers/package.json +++ b/examples/basic-event-handlers/package.json @@ -9,7 +9,7 @@ "deploy-test": "../../bin/graph deploy test/basic-event-handlers --version-label v0.0.1 --ipfs http://localhost:15001 --node http://127.0.0.1:18020" }, "devDependencies": { - "@graphprotocol/graph-ts": "0.24.0-alpha.0", + "@graphprotocol/graph-ts": "0.24.0", "apollo-fetch": "^0.7.0" }, "dependencies": { diff --git a/examples/basic-event-handlers/yarn.lock b/examples/basic-event-handlers/yarn.lock index e8fdeb97a..aedaeb350 100644 --- a/examples/basic-event-handlers/yarn.lock +++ b/examples/basic-event-handlers/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@graphprotocol/graph-ts@0.24.0-alpha.0": - version "0.24.0-alpha.0" - resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0-alpha.0.tgz#8fe2b09a123adc5a65c82b823a1cb2d99f3cce2b" - integrity sha512-PLhTMlFMoLZpTqJlKH5f+5VRN3yWmXfssVwWk7uauVeY8IuAWjWB3RNubS574q9uf0QjPKOacekXY5EKRWOzEA== +"@graphprotocol/graph-ts@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0.tgz#ccfa14edf015f3fc6d37b7d2a95e71ec6acc0005" + integrity sha512-XciVlalOXzS2Iv8WeAwO0jwWzPBlzEWLtwNT5FdII962TAzbgZ6fx1nNGjGZLwwq38/aUX154+tdvEmL57gZqQ== dependencies: assemblyscript "0.19.10" diff --git a/examples/example-subgraph/package.json b/examples/example-subgraph/package.json index ef78a9d95..f44d6732c 100644 --- a/examples/example-subgraph/package.json +++ b/examples/example-subgraph/package.json @@ -7,7 +7,7 @@ "build-wast": "../../bin/graph build -t wast subgraph.yaml" }, "devDependencies": { - "@graphprotocol/graph-ts": "0.24.0-alpha.0" + "@graphprotocol/graph-ts": "0.24.0" }, "resolutions": { "assemblyscript": "0.19.10" diff --git a/examples/example-subgraph/yarn.lock b/examples/example-subgraph/yarn.lock index 97375cc64..28fb06303 100644 --- a/examples/example-subgraph/yarn.lock +++ b/examples/example-subgraph/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@graphprotocol/graph-ts@0.24.0-alpha.0": - version "0.24.0-alpha.0" - resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0-alpha.0.tgz#8fe2b09a123adc5a65c82b823a1cb2d99f3cce2b" - integrity sha512-PLhTMlFMoLZpTqJlKH5f+5VRN3yWmXfssVwWk7uauVeY8IuAWjWB3RNubS574q9uf0QjPKOacekXY5EKRWOzEA== +"@graphprotocol/graph-ts@0.24.0": + version "0.24.0" + resolved "https://registry.yarnpkg.com/@graphprotocol/graph-ts/-/graph-ts-0.24.0.tgz#ccfa14edf015f3fc6d37b7d2a95e71ec6acc0005" + integrity sha512-XciVlalOXzS2Iv8WeAwO0jwWzPBlzEWLtwNT5FdII962TAzbgZ6fx1nNGjGZLwwq38/aUX154+tdvEmL57gZqQ== dependencies: assemblyscript "0.19.10" diff --git a/src/scaffold.js b/src/scaffold.js index 3b8adf7e6..84cf0b437 100644 --- a/src/scaffold.js +++ b/src/scaffold.js @@ -49,7 +49,7 @@ const generatePackageJson = ({ subgraphName, node }) => }, dependencies: { '@graphprotocol/graph-cli': graphCliVersion, - '@graphprotocol/graph-ts': `0.24.0-alpha.0`, + '@graphprotocol/graph-ts': `0.24.0`, }, }), { parser: 'json' }, From 3b058db693b955cdef198233c7ec43f820063977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Pace?= Date: Sat, 20 Nov 2021 11:45:39 -0300 Subject: [PATCH 2/2] 0.24.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 29f29974c..65793d198 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/graph-cli", - "version": "0.24.0-alpha.0", + "version": "0.24.0", "description": "CLI for building for and deploying to The Graph", "dependencies": { "assemblyscript": "0.19.10",