Skip to content

Commit e10f65b

Browse files
committed
Release 0.25.1
1 parent 7bf26cd commit e10f65b

File tree

20 files changed

+45
-36
lines changed

20 files changed

+45
-36
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# NEWS
22

3+
## 0.25.1
4+
5+
This release only adds two fixes:
6+
7+
- The first is to address an issue with decoding the input of some calls [#3194](https://github.com/graphprotocol/graph-node/issues/3194) where subgraphs that would try to index contracts related to those would fail. Now they can advance normally.
8+
- The second one is to fix a non-determinism issue with the retry mechanism for errors. Whenever a non-deterministic error happened, we would keep retrying to process the block, however we should've clear the `EntityCache` on each run so that the error entity changes don't get transacted/saved in the database in the next run. This could make the POI generation non-deterministic for subgraphs that failed and retried for non-deterministic reasons, adding a new entry to the database for the POI.
9+
10+
We strongly recommend updating to this version as quickly as possible.
11+
312
## 0.25.0
413

514
### Api Version 0.0.6

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.25.0"
3+
version = "0.25.1"
44
edition = "2018"
55

66
[dependencies]

chain/near/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-near"
3-
version = "0.25.0"
3+
version = "0.25.1"
44
edition = "2018"
55

66
[build-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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
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.25.0"
3+
version = "0.25.1"
44
edition = "2018"
55

66
[lib]

0 commit comments

Comments
 (0)