Version 23.1.0
This commit is contained in:
parent
d40da67eef
commit
ba7c0bc091
55
CHANGELOG.md
55
CHANGELOG.md
|
@ -1,3 +1,58 @@
|
|||
2023-01-18 v23.1.0
|
||||
==================
|
||||
|
||||
Nimbus `v23.1.0` is a `low-urgency` upgrade, introducing support for on-the-fly database pruning making the storage requirements of Nimbus much more predictable on long-term time scales. When pruning is enabled, a typical beacon node expected to consume around 60 to 70 GB of storage. To take advantage of the new functionality without facing any downtime, users are advised to sync a fresh node through trusted node sync which now features a quicker history backfilling implementation.
|
||||
|
||||
### Improvements
|
||||
|
||||
* After a trusted node sync, Nimbus requires less time to complete the block
|
||||
backfilling process by downloading the minimum number of historical blocks
|
||||
mandated by the spec:
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4421
|
||||
|
||||
* Nimbus is able to sync in optimistic mode with the network even when not
|
||||
paired with an execution layer client. Please note that this mode is not
|
||||
suitable for validating:
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4458
|
||||
|
||||
* A new `--history=<archive|prune>` configuration parameter controls the
|
||||
retention of old historic blocks in the database of the client. Enabling
|
||||
pruning on an existing installation will introduce a significant delay
|
||||
on the first run, while history pruning is taking place, so we recommend
|
||||
starting with a fresh database by executing a trusted node sync:
|
||||
|
||||
https://nimbus.guide/history.html
|
||||
https://github.com/status-im/nimbus-eth2/pull/4445
|
||||
|
||||
* The validator monitor is now considered out of BETA and enabled by default.
|
||||
To keep the number of created metrics to a reasonable level on installations
|
||||
with large number of validators, the default implies the previous behavior
|
||||
of the `validator-monitor-totals` flag:
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4468
|
||||
|
||||
* Full support for the latest Capella/Shanghai devnets:
|
||||
|
||||
https://notes.ethereum.org/@bbusa/Zhejiang#Nimbus
|
||||
|
||||
### Fixes
|
||||
|
||||
* Out of date metadata for the Gnosis network bootstrap nodes:
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4460
|
||||
|
||||
* Potential hanging of the client caused by inappropriate activation
|
||||
of the TTD block detection on beacon nodes created after the merge:
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4486
|
||||
|
||||
* Inappropriate case-sensitivity in the `--log-level` parameter, accidentally introduced in the 22.12.0 release.
|
||||
|
||||
https://github.com/status-im/nimbus-eth2/pull/4523
|
||||
|
||||
|
||||
2022-12-21 v22.12.0
|
||||
===================
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ when not defined(nimscript):
|
|||
let copyrights* = "Copyright (c) 2019-" & $(now().utc.year) & " Status Research & Development GmbH"
|
||||
|
||||
const
|
||||
versionMajor* = 22
|
||||
versionMinor* = 12
|
||||
versionMajor* = 23
|
||||
versionMinor* = 1
|
||||
versionBuild* = 0
|
||||
|
||||
versionBlob* = "stateofus" # Single word - ends up in the default graffiti
|
||||
|
|
Loading…
Reference in New Issue