Skip to content

Commit 2d6911d

Browse files
committed
Version 22.10.0
1 parent 66579ea commit 2d6911d

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
2022-10-03 v22.10.0
2+
===================
3+
4+
Nimbus `v22.10.0` is a `medium-urgency` release, continuing our accelerated release schedule and bringing further stability and performance improvements after the merge.
5+
6+
### Improvements
7+
8+
* Faster block production, bringing practical benefits on low-powered devices such as the Raspberry Pi:
9+
https://github.com/status-im/nimbus-eth2/pull/4184
10+
https://github.com/status-im/nimbus-eth2/pull/4196
11+
12+
* The Nimbus validator client can now work with multiple beacon nodes with configurable responsibilities:
13+
https://github.com/status-im/nimbus-eth2/pull/4113
14+
https://github.com/status-im/nimbus-eth2/issues/4140
15+
16+
* The `/eth/v2/validator/blocks/{slot}` API now features an optional `randao_reveal` parameter in accordance to the latest Beacon API spec:
17+
https://github.com/ethereum/beacon-APIs/pull/222
18+
https://github.com/status-im/nimbus-eth2/pull/3837
19+
20+
* The `/eth/v1/beacon/blocks` API now supports SSZ-encoded payloads:
21+
https://github.com/status-im/nimbus-eth2/pull/4154
22+
23+
* The new metrics `beacon_block_builder_proposed`, `beacon_block_builder_missed_with_fallback` and `beacon_block_builder_missed_without_fallback` can help you the successful and failed attempts to use the configured external block builder:
24+
https://github.com/status-im/nimbus-eth2/pull/4158
25+
26+
### Fixes
27+
28+
* Rare, but critical conditions manifesting primarily in the Goerli network were leading to unrecoverable database corruption:
29+
https://github.com/status-im/nimbus-eth2/pull/4174
30+
https://github.com/status-im/nimbus-eth2/pull/4192
31+
32+
* If the chain was re-orged while Nimbus is shut down, this created a low risk that the client may become stuck on a non-canonical block:
33+
https://github.com/status-im/nimbus-eth2/pull/4161
34+
35+
* Nimbus was not serving the best possible light client updates when back-filling after a trusted node sync:
36+
https://github.com/status-im/nimbus-eth2/pull/4195
37+
38+
### Upcoming breaking changes
39+
40+
* The pre-altair REST API paths `/eth2/beacon_chain/req/beacon_blocks_by_{range,root}/1/` are now deprecated and will be removed in the next Nimbus version. Since these APIs support only phase0 responses, it is unlikely that there are any remaining clients using them.
41+
42+
143
2022-09-20 v22.9.1
244
==================
345

beacon_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ when not defined(nimscript):
1717

1818
const
1919
versionMajor* = 22
20-
versionMinor* = 9
21-
versionBuild* = 1
20+
versionMinor* = 10
21+
versionBuild* = 0
2222

2323
versionBlob* = "stateofus" # Single word - ends up in the default graffiti
2424

0 commit comments

Comments
 (0)