@graphprotocol/graph-cli 0.50.1-alpha-20230524163327-2d5cbf7 → 0.50.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,11 +1,15 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.50.1-alpha-20230524163327-2d5cbf7
3
+ ## 0.50.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - [#1356](https://github.com/graphprotocol/graph-tooling/pull/1356)
8
+ [`b7f8fba`](https://github.com/graphprotocol/graph-tooling/commit/b7f8fbabbfa36cf2eb817574fa143a58a1e2be33)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - use bytes array instead of from array
10
+
7
11
  - [#1357](https://github.com/graphprotocol/graph-tooling/pull/1357)
8
- [`2d5cbf7`](https://github.com/graphprotocol/graph-tooling/commit/2d5cbf75f8a0a5035f0ad861ed2558b1408b9bbf)
12
+ [`394d48b`](https://github.com/graphprotocol/graph-tooling/commit/394d48bc67b3f25ae45490d4d26d0a51c2ab08fe)
9
13
  Thanks [@saihaj](https://github.com/saihaj)! - upgrade to latest graph-ts version
10
14
 
11
15
  ## 0.50.0
@@ -295,7 +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
+ ['Array<ethereum.Tuple>', '[Bytes]', (code) => `Value.fromBytesArray(${code})`],
299
299
  // Arrays
300
300
  ['Array<Address>', '[Bytes]', (code) => `Value.fromBytesArray(${code})`],
301
301
  ['Array<Bytes>', '[Bytes]', (code) => `Value.fromBytesArray(${code})`],
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.50.1-alpha-20230524163327-2d5cbf7",
2
+ "version": "0.50.1",
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.1-alpha-20230524163327-2d5cbf7",
3
+ "version": "0.50.1",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {