Skip to content

Commit 57f9974

Browse files
committed
Version 22.8.0
1 parent 4e41ed1 commit 57f9974

File tree

2 files changed

+87
-4
lines changed

2 files changed

+87
-4
lines changed

CHANGELOG.md

Lines changed: 86 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
2022-08-23 v22.8.0
2+
==================
3+
4+
Nimbus `v22.8.0` is a `medium` urgency release, featuring full support for the upcoming mainnet merge! All users should upgrade at their earliest convenient, but no later than 5th of September.
5+
6+
> Since the network will go through the Bellatrix hard-fork on Sept 6, 2022, 11:34:47am UTC, failure to upgrade in time will result in inactivity penalties.
7+
8+
Please note that once the network reaches the terminal total difficulty (currently estimated to happen between 13th and 15th of September), it will no longer be possible to operate a beacon node without pairing it with a single non-shared merge-ready execution client. Nimbus is fully compatible will all execution clients and the required configuration steps for all of them are the same. Please refer to our merge guide for more details:
9+
10+
https://nimbus.guide/merge.html
11+
12+
To raise awareness of the required configuration changes, once the Bellatrix fork is activated on 6th of September, Nimbus will refuse to start unless a properly configured and authenticated Engine API end-point is provided through the command-line options `--web3-url` and `--jwt-secret`. If you need more time to complete the transition, you can temporarily run the beacon node with the command-line option `--require-engine-api-in-bellatrix=no`, but please note that such a setup will stop working once the network TTD is reached!
13+
14+
We would like to say a huge THANK YOU to all of our users who provided immensely valuable feedback in the many months of hard work leading to the merge and to all the fellow research and implementation teams who made this historic release possible!
15+
16+
Onwards and happy merging!
17+
18+
### Breaking changes
19+
20+
* Nimbus will refuse to start unless connected to a properly configured execution client in Bellatrix-enabled networks:
21+
https://github.com/status-im/nimbus-eth2/pull/4006
22+
23+
* The custom error code returned by Nimbus when a validator doppelganger is detected has been changed from 1031 to 129 to improve compatibility with `systemd`:
24+
https://github.com/status-im/nimbus-eth2/pull/3977
25+
26+
### Improvements
27+
28+
* Support for external block builders (a.k.a. MEV):
29+
https://github.com/status-im/nimbus-eth2/pull/3883
30+
31+
* Beta release for the Nimbus stand-alone light client, which can be used to drive any execution client without requiring a full-blown beacon node:
32+
https://nimbus.guide/light-client-data.html
33+
34+
* The first spec-compliant implementation of the LibP2P protocols for serving light client data:
35+
https://nimbus.guide/light-client-data.html
36+
37+
* Keystore locking prevents accidentally loading the same validator keys in multiple instances of the Nimbus beacon node and the Nimbus validator client, thus eliminating a potential slashing risk:
38+
https://github.com/status-im/nimbus-eth2/pull/3907
39+
40+
* Debian and RPM packages for the Nimbus beacon node and the Nimbus validator client are now available as part of the release. In the near future, Status will also provide a package repository, offering a more convenient installation:
41+
https://github.com/status-im/nimbus-eth2/pull/3974
42+
https://github.com/status-im/infra-nimbus/issues/79
43+
44+
* Improved performance on networks with heavy forking activity through a reduction of the required state replays:
45+
https://github.com/status-im/nimbus-eth2/pull/3990
46+
47+
* The Nimbus validator client now supports validator activity metrics such as `beacon_attestations_sent`, `beacon_aggregates_sent`, `beacon_attestation_sent_delay`, `beacon_blocks_sent`, `beacon_blocks_sent_delay`, `beacon_sync_committee_messages_sent`, `beacon_sync_committee_message_sent_delay`, `beacon_sync_committee_contributions_sent`:
48+
https://github.com/status-im/nimbus-eth2/pull/3915
49+
50+
* The sync status displayed in the Nimbus status bar and certain log messages now describes the state of the client more accurately (optimistically synced vs fully synced):
51+
https://github.com/status-im/nimbus-eth2/pull/3987
52+
53+
### Fixes
54+
55+
* Spec violation in the expected payload of the `/eth/v1/validator/prepare_beacon_proposer` Beacon API end-point:
56+
https://github.com/status-im/nimbus-eth2/pull/3938
57+
58+
* Invalid empty execution payloads being produced when the execution client is not responding:
59+
https://github.com/status-im/nimbus-eth2/pull/3991
60+
61+
* Potentially incorrect Eth1 block votes, disagreeing with the forming majority:
62+
https://github.com/status-im/nimbus-eth2/pull/3944
63+
64+
* More resilient deposit synchronization when Nimbus is paired with a highly loaded execution client:
65+
https://github.com/status-im/nimbus-eth2/pull/3943
66+
https://github.com/status-im/nimbus-eth2/pull/3957
67+
68+
* A potential delay in detecting the terminal total difficulty block:
69+
https://github.com/status-im/nimbus-eth2/pull/3956
70+
71+
* Missing Gossip filtering rule for sync committee contributions resulting in unnecessary traffic:
72+
https://github.com/status-im/nimbus-eth2/pull/3941
73+
74+
* Compatibility issue preventing trusted node sync from Lodestar nodes:
75+
https://github.com/status-im/nimbus-eth2/pull/3934
76+
77+
* A potential crash while processing rare gossip messages such as slashings and exits:
78+
https://github.com/status-im/nimbus-eth2/issues/3965
79+
80+
* Inappropriate attestations sent by the validator client when the connected beacon node is only optimistically synced:
81+
https://github.com/status-im/nimbus-eth2/pull/3968
82+
83+
184
2022-07-26 v22.7.0
285
==================
386

@@ -366,18 +449,18 @@ Of particular note: the [Keymanager API](https://nimbus.guide/keymanager-api.htm
366449

367450
* Faster beacon node startup-times:
368451
https://github.com/status-im/nimbus-eth2/pull/3320
369-
452+
370453
* The REST API is now compatible with CORS-enabled clients (e.g. browsers):
371454
https://github.com/status-im/nimbus-eth2/pull/3378
372-
455+
373456
* Use the `--rest-allow-origin` and/or `--keymanager-allow-origin` parameters to specify the allowed origin.
374457

375458
* A new `--rest-url` parameter for the `deposits exit` command: https://github.com/status-im/nimbus-eth2/pull/3344, https://github.com/status-im/nimbus-eth2/pull/3318
376459

377460
* You can now issue exits uing any beacon node which provides the [official REST API](https://nimbus.guide/rest-api.html). The Nimbus-specific [JSON-RPC API](https://nimbus.guide/api.html) will be deprecated in our next release, with a view to completely phasing it out over the next few months.
378461

379462
* The REST API will now returns JSON data by default which simplifies testing the API with `curl`.
380-
463+
381464
* The notable exception here is when the client requests SSZ data by supplying an `Accept: application/octet-stream` header.
382465

383466
* Fairer request capping strategy for block sync requests and reduced CPU usage when serving them:

beacon_chain/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ when not defined(nimscript):
1717

1818
const
1919
versionMajor* = 22
20-
versionMinor* = 7
20+
versionMinor* = 8
2121
versionBuild* = 0
2222

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

0 commit comments

Comments
 (0)