Skip to content

Commit

Permalink
Release 0.25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evaporei committed Feb 8, 2022
1 parent 7bf26cd commit e10f65b
Show file tree
Hide file tree
Showing 20 changed files with 45 additions and 36 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# NEWS

## 0.25.1

This release only adds two fixes:

- 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.
- 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.

We strongly recommend updating to this version as quickly as possible.

## 0.25.0

### Api Version 0.0.6
Expand Down
2 changes: 1 addition & 1 deletion chain/ethereum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-chain-ethereum"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion chain/near/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-chain-near"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-core"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion graphql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-graphql"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-mock"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-node"
version = "0.25.0"
version = "0.25.1"
edition = "2018"
default-run = "graph-node"

Expand Down
2 changes: 1 addition & 1 deletion runtime/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-runtime-derive"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion runtime/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-runtime-test"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion runtime/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-runtime-wasm"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion server/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-server-http"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion server/index-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-server-index-node"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion server/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-server-json-rpc"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion server/metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-server-metrics"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion server/websocket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-server-websocket"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion store/postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-store-postgres"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion store/test-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-store"
version = "0.25.0"
version = "0.25.1"
authors = ["Leonardo Yvens <[email protected]>"]
edition = "2018"
description = "Provides static store instance for tests."
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graph-tests"
version = "0.25.0"
version = "0.25.1"
edition = "2018"

[dev-dependencies]
Expand Down

0 comments on commit e10f65b

Please sign in to comment.