Skip to content

Commit d38918b

Browse files
committed
Release 0.23
1 parent b4755bf commit d38918b

File tree

20 files changed

+57
-40
lines changed

20 files changed

+57
-40
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NEWS.md

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,32 @@
11
# NEWS
22

3-
## next - unreleased
3+
## 0.23.0
4+
5+
The Graph Node internals are being heavily refactored to prepare it for the multichain future.
6+
In the meantime, here are the changes for this release:
47

58
- The `GRAPH_ETH_CALL_BY_NUMBER` environment variable has been removed. Graph Node requires an
6-
Ethereum client that support EIP-1898, which all major clients support.
9+
Ethereum client that supports EIP-1898, which all major clients support.
710
- Added support for IPFS versions larger than 0.4.
8-
- Added Ethereum ABI encoding and decoding functionality #2348.
11+
- Added Ethereum ABI encoding and decoding functionality [#2348](https://github.com/graphprotocol/graph-node/pull/2348).
12+
- Experimental support for configuration files, see the documentation [here](https://github.com/graphprotocol/graph-node/blob/master/docs/config.md).
13+
- Better PoI performance [#2329](https://github.com/graphprotocol/graph-node/pull/2329).
14+
- Improve grafting performance and robustness by copying in batches [#2293](https://github.com/graphprotocol/graph-node/pull/2293).
15+
16+
### Graphman
17+
Graphman is a CLI tool to manage your subgraphs. It is now included in the Docker container
18+
[#2289](https://github.com/graphprotocol/graph-node/pull/2289). And new commands have been added:
19+
- `graphman copy` can copy subgraphs across DB shards [#2313](https://github.com/graphprotocol/graph-node/pull/2313).
20+
- `graphman rewind` to rewind a deployment to a given block [#2373](https://github.com/graphprotocol/graph-node/pull/2373).
21+
- `graphman query` to log info about a GraphQL query [#2206](https://github.com/graphprotocol/graph-node/pull/2206).
22+
- `graphman create` to create a subgraph name [#2419](https://github.com/graphprotocol/graph-node/pull/2419).
23+
24+
### Metrics
925
- The `deployment_blocks_behind` metric has been removed, and a
1026
`deployment_head` metric has been added. To see how far a deployment is
1127
behind, use the difference between `ethereum_chain_head_number` and
12-
`deployment_head`
28+
`deployment_head`.
29+
- The `trigger_type` label was removed from the metric `deployment_trigger_processing_duration`.
1330

1431
## 0.22.0
1532

chain/arweave/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-chain-arweave"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

chain/ethereum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-chain-ethereum"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-core"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

graphql/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-graphql"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

mock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-mock"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[dependencies]

node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-node"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55
default-run = "graph-node"
66

runtime/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graph-runtime-derive"
3-
version = "0.22.0"
3+
version = "0.23.0"
44
edition = "2018"
55

66
[lib]

0 commit comments

Comments
 (0)