Skip to content

Commit 1f24b38

Browse files
tilacogevaporei
andauthored
Release 0.25.0
* all: Update Cargo.toml & Cargo.lock * news: Release 0.25.0 Co-authored-by: Otávio Pace <[email protected]>
1 parent a2dafe3 commit 1f24b38

File tree

20 files changed

+73
-38
lines changed

20 files changed

+73
-38
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: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# NEWS
22

3-
## Next
3+
## 0.25.0
4+
5+
### Api Version 0.0.6
6+
This release ships support for API version 0.0.6 in mappings:
7+
- Added `nonce` field for `Transaction` objects.
8+
- Added `baseFeePerGas` field for `Block` objects ([EIP-1559](https://eips.ethereum.org/EIPS/eip-1559)).
9+
10+
#### Block Cache Invalidation and Reset
11+
12+
All cached block data must be refetched to account for the new `Block` and `Trasaction`
13+
struct versions, so this release includes a `graph-node` startup check that will:
14+
1. Truncate all block cache tables.
15+
2. Bump the `db_version` value from `2` to `3`.
16+
17+
_(Table truncation is a fast operation and no downtime will occur because of that.)_
18+
419

520
### Ethereum
621

@@ -12,6 +27,26 @@
1227
- The `GRAPH_ETH_CALL_GAS` environment is removed to prevent misuse, its value
1328
is now hardcoded to 50 million.
1429

30+
### Multiblockchain
31+
- Initial support for NEAR subgraphs.
32+
- Added `FirehoseBlockStream` implementation of `BlockStream` (#2716)
33+
34+
### Misc
35+
- Rust docker image is now based on Debian Buster.
36+
- Optimizations to the PostgreSQL notification queue.
37+
- Improve PostgreSQL robustness in multi-sharded setups. (#2815)
38+
- Added 'networks' to the 'subgraphFeatures' endpoint. (#2826)
39+
- Check and limit the size of GraphQL query results. (#2845)
40+
- Allow `_in` and `_not_in` GraphQL filters. (#2841)
41+
- Add PoI for failed subgraphs. (#2748)
42+
- Make `graphman rewind` safer to use. (#2879)
43+
- Add `subgraphErrors` for all GraphQL schemas. (#2894)
44+
- Add `Graph-Attestable` response header. (#2946)
45+
- Add support for minimum block constraint in GraphQL queries (`number_gte`) (#2868).
46+
- Handle revert cases from Hardhat and Ganache (#2984)
47+
- Fix bug on experimental prefetching optimization feature (#2899)
48+
49+
1550
## 0.24.2
1651

1752
This release only adds a fix for an issue where certain GraphQL queries
@@ -95,7 +130,7 @@ Subraphs with any Spec Version can be queried that way.
95130

96131
### Api Version 0.0.5
97132

98-
This release ships support for API version 0.0.5 in mappings. It contains a fix for call handlers
133+
This release ships support for API version 0.0.5 in mappings. hIt contains a fix for call handlers
99134
and the long awaited AssemblyScript version upgrade!
100135

101136
- AssemblyScript upgrade: The mapping runtime is updated to support up-to-date versions of the

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.24.2"
3+
version = "0.25.0"
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.24.1"
3+
version = "0.25.0"
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.24.2"
3+
version = "0.25.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.24.2"
3+
version = "0.25.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.24.2"
3+
version = "0.25.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.24.2"
3+
version = "0.25.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.24.2"
3+
version = "0.25.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.24.2"
3+
version = "0.25.0"
44
edition = "2018"
55

66
[lib]

0 commit comments

Comments
 (0)