Skip to content

Commit 60f0a2f

Browse files
committed
Version 23.7.0
1 parent 722b7f6 commit 60f0a2f

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

CHANGELOG.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,47 @@
1+
2023-07-19 v23.7.0
2+
3+
Nimbus `v23.7.0` is a `low-priority` upgrade, bringing advanced profit optimisation capabilities to the Nimbus validator client and adressing risk factors that can contribute to poorer validator performance.
4+
5+
### Improvements
6+
7+
* The Nimbus validator client now uses a scoring algorithm capable of selecting the most optimal attestation data when working with multiple beacon nodes:
8+
https://github.com/status-im/nimbus-eth2/pull/5101
9+
10+
* The Nimbus validator client now synchronizes its clock with the Nimbus beacon node in order to eliminate any risks for poor validator performance stemming from de-synchronized clocks:
11+
https://github.com/status-im/nimbus-eth2/pull/4846
12+
13+
* The `/eth/v1/beacon/states/{state_id}/*` family of REST end-points now support queries by state root as long as the state is within the most recent 8192 slots (approximately 27 hours):
14+
https://github.com/status-im/nimbus-eth2/pull/5155
15+
16+
* Improved validation of blocks during syncing allows Nimbus to optimize the initial syncing target of the execution layer node:
17+
https://github.com/status-im/nimbus-eth2/pull/5169
18+
19+
* The Nimbus light client is now available a C library for easy reuse and embedding in other software (alpha release):
20+
https://github.com/status-im/nimbus-eth2/pull/5122
21+
22+
### Fixes
23+
24+
* Due to multiple reports of slow start-up times on certain hardware configurations, caused by the one-time initial pruning performed by Nimbus v23.6.0 and v23.6.1, this functionality has been temporarily disabled:
25+
https://github.com/status-im/nimbus-eth2/pull/5191
26+
27+
* The block monitoring performed by the Nimbus validator client was permanently interrupted in certain situations after a timed out request to the beacon node:
28+
https://github.com/status-im/nimbus-eth2/pull/5109
29+
30+
* Nimbus now uses the most up-to-date bootstrap nodes for the Gnosis chain:
31+
https://github.com/status-im/nimbus-eth2/pull/5175
32+
33+
* Nimbus has addressed a minor risk for missed block proposals at epoch boundaries due to multiple compounding risk factors:
34+
https://github.com/status-im/nimbus-eth2/pull/5195
35+
https://github.com/status-im/nimbus-eth2/pull/5196
36+
https://github.com/status-im/nimbus-eth2/pull/5194
37+
38+
139
2023-06-26 v23.6.1
240
==================
341

442
Nimbus `v23.6.1` is a `low-urgency` point release significantly improving the performance of database pruning on Nimbus instances that have accumulated history prior to April 2021 (Nimbus 1.1.0). Affected users are advised to upgrade as soon as possible in order to reduce the risk of missed attestations and blocks.
543

6-
Fixes:
44+
### Fixes
745

846
* The legacy Nimbus database is not subjected to pruning due to the high I/O cost of the operations:
947
https://github.com/status-im/nimbus-eth2/pull/5116

beacon_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const
1717
"Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH"
1818

1919
versionMajor* = 23
20-
versionMinor* = 6
21-
versionBuild* = 1
20+
versionMinor* = 7
21+
versionBuild* = 0
2222

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

0 commit comments

Comments
 (0)