Skip to content

Commit 6d7e92a

Browse files
committed
Release 0.22
1 parent 5ded3d1 commit 6d7e92a

File tree

19 files changed

+57
-34
lines changed

19 files changed

+57
-34
lines changed

Cargo.lock

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

NEWS.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## next - unreleased
44

5+
## 0.22.0
6+
7+
### Feature: Block store sharding
8+
This release makes it possible to [shard the block and call cache](./docs/sharding.md) for chain
9+
data across multiple independent Postgres databases. **This feature is considered experimental. We
10+
encourage users to try this out in a test environment, but do not recommend it yet for production
11+
use.** In particular, the details of how sharding is configured may change in backwards-incompatible
12+
ways in the future.
13+
14+
### Feature: Non-fatal errors update
15+
Non-fatal errors (see release 0.20 for details) is documented and can now be enabled on graph-cli.
16+
Various related bug fixes have been made #2121 #2136 #2149 #2160.
17+
18+
### Improvements
19+
- Add bitwise operations and string constructor to BigInt #2151.
20+
- docker: Allow custom ethereum poll interval #2139.
21+
- Deterministic error work in preparation for gas #2112
22+
23+
### Bug fixes
24+
- Fix not contains filter #2146.
25+
- Resolve __typename in _meta field #2118
26+
- Add CORS for all HTTP responses #2196
27+
528
## 0.21.1
629

730
- Fix subgraphs failing with a `fatalError` when deployed while already running

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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.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.21.1"
3+
version = "0.22.0"
44
edition = "2018"
55

66
[lib]

0 commit comments

Comments
 (0)