@graphprotocol/graph-cli 0.50.0-alpha-20230522214543-49bd02d → 0.50.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.50.0-alpha-20230522214543-49bd02d
3
+ ## 0.50.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [#1353](https://github.com/graphprotocol/graph-tooling/pull/1353)
8
- [`2f43240`](https://github.com/graphprotocol/graph-tooling/commit/2f43240c95a7a23e3ea070272fc7afff3895907f)
8
+ [`125c687`](https://github.com/graphprotocol/graph-tooling/commit/125c6874e9d2fb67bf9f0211e9f9f306bc6fe55c)
9
9
  Thanks [@saihaj](https://github.com/saihaj)! - Add a new `--ipfs-hash` flag to `graph deploy`
10
10
  allowing to deploy a subgraph that is already compiled and uploaded to IPFS.
11
11
 
@@ -53,6 +53,10 @@
53
53
  - Updated dependency [`gluegun@5.1.2` ↗︎](https://www.npmjs.com/package/gluegun/v/5.1.2) (from
54
54
  `https://github.com/edgeandnode/gluegun#v4.3.1-pin-colors-dep`, in `dependencies`)
55
55
 
56
+ - [#1351](https://github.com/graphprotocol/graph-tooling/pull/1351)
57
+ [`c7cf89c`](https://github.com/graphprotocol/graph-tooling/commit/c7cf89c2b7b60b39bd89473d8440ece2acdcb9a3)
58
+ Thanks [@saihaj](https://github.com/saihaj)! - return tuple arrays as a Bytes array in GraphQL
59
+
56
60
  - [#1329](https://github.com/graphprotocol/graph-tooling/pull/1329)
57
61
  [`308cb8a`](https://github.com/graphprotocol/graph-tooling/commit/308cb8af3fb2cabbad08f409d77481994a95865c)
58
62
  Thanks [@saihaj](https://github.com/saihaj)! - Point to new examples repo instead of old
@@ -295,6 +295,7 @@ const ASSEMBLYSCRIPT_TO_VALUE = [
295
295
  ],
296
296
  ['Array<Array<string>>', /\[\[.*\]\]/, (code) => `Value.fromStringMatrix(${code})`],
297
297
  ['Array<Array<string | null>>', null, (code) => `Value.fromStringMatrix(${code})`],
298
+ ['Array<ethereum.Tuple>', '[Bytes]', (code) => `Value.fromArray(${code})`],
298
299
  // Arrays
299
300
  ['Array<Address>', '[Bytes]', (code) => `Value.fromBytesArray(${code})`],
300
301
  ['Array<Bytes>', '[Bytes]', (code) => `Value.fromBytesArray(${code})`],
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.50.0-alpha-20230522214543-49bd02d",
2
+ "version": "0.50.0",
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.50.0-alpha-20230522214543-49bd02d",
3
+ "version": "0.50.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {