Skip to content

Releases: graphprotocol/graph-tooling

v0.23.0

26 Oct 05:34
Compare
Choose a tag to compare

Includes alpha support for NEAR: #760

For now we only have the commands: codegen, build and deploy.

Soon we'll have init as well.

v0.23.0-alpha.0

22 Oct 20:19
Compare
Choose a tag to compare
v0.23.0-alpha.0 Pre-release
Pre-release
  • NEAR base support for: codegen, build and deploy

v0.22.4

19 Oct 12:02
Compare
Choose a tag to compare
  • Improve Apple M1 Mac matchstick download conditions (graph test): #764
  • Fix UNCAUGHT EXCEPTION bug on validation for studio: #761

v0.22.3

11 Oct 16:07
Compare
Choose a tag to compare

Fix invalid casting in codegen: #756

v0.22.2

30 Sep 15:20
Compare
Choose a tag to compare

Add Rinkeby to the list of networks allowed for the Subgraph Studio (alongside Ethereum mainnet).

v0.22.1

24 Sep 13:10
Compare
Choose a tag to compare

Bump of graph-ts (v0.22.1 as well) to fix upcasting runtime error that happened on toTupleArray method.

v0.22.0

16 Sep 23:29
Compare
Choose a tag to compare

Update to AssemblyScript version 0.19.10.

This version breaks compatibility with subgraphs that use older versions of graph-cli, graph-ts and by consequence AssemblyScript.

To upgrade your subgraph follow this guide.

Main changes:

  • Added set calls to all non-nullable fields of an Entity class (generated from codegen) to their default values in construction, so that if developers try to access them before setting, they already have a zero/empty value to work with.
  • New assertions on operator overloading: graphprotocol/graph-ts#204
  • Added matchstick testing framework #731
  • Non Ethereum mainnet subgraphs can not be deployed to the Studio anymore

v0.22.0-alpha.3

09 Sep 12:49
Compare
Choose a tag to compare
v0.22.0-alpha.3 Pre-release
Pre-release

v0.22.0-alpha.2

25 Aug 20:52
Compare
Choose a tag to compare
v0.22.0-alpha.2 Pre-release
Pre-release
  • Bumps graph-ts to the same version (v0.22.0-alpha.2), which contains some new helper methods for generating zero/empty values.
  • Sets all non-nullable fields of an Entity class (generated from codegen) to their default values in construction, so that if developers try to access them before setting, they already have a zero/empty value to work with.

v0.22.0-alpha.1

13 Aug 18:29
Compare
Choose a tag to compare
v0.22.0-alpha.1 Pre-release
Pre-release

Bumps graph-ts to the same version (v0.22.0-alpha.1), which contains a simple change, that is basically a removal of some use of the! operator in ethereum class properties in favor of having constructors in them.

This has been done to remove runtime checks introduced by the ! operator, which are unnecessary.