Skip to content

Commit ba7c0bc

Browse files
committed
Version 23.1.0
1 parent d40da67 commit ba7c0bc

File tree

2 files changed

+65
-10
lines changed

2 files changed

+65
-10
lines changed

CHANGELOG.md

Lines changed: 63 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
2023-01-18 v23.1.0
2+
==================
3+
4+
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.
5+
6+
### Improvements
7+
8+
* After a trusted node sync, Nimbus requires less time to complete the block
9+
backfilling process by downloading the minimum number of historical blocks
10+
mandated by the spec:
11+
12+
https://github.com/status-im/nimbus-eth2/pull/4421
13+
14+
* Nimbus is able to sync in optimistic mode with the network even when not
15+
paired with an execution layer client. Please note that this mode is not
16+
suitable for validating:
17+
18+
https://github.com/status-im/nimbus-eth2/pull/4458
19+
20+
* A new `--history=<archive|prune>` configuration parameter controls the
21+
retention of old historic blocks in the database of the client. Enabling
22+
pruning on an existing installation will introduce a significant delay
23+
on the first run, while history pruning is taking place, so we recommend
24+
starting with a fresh database by executing a trusted node sync:
25+
26+
https://nimbus.guide/history.html
27+
https://github.com/status-im/nimbus-eth2/pull/4445
28+
29+
* The validator monitor is now considered out of BETA and enabled by default.
30+
To keep the number of created metrics to a reasonable level on installations
31+
with large number of validators, the default implies the previous behavior
32+
of the `validator-monitor-totals` flag:
33+
34+
https://github.com/status-im/nimbus-eth2/pull/4468
35+
36+
* Full support for the latest Capella/Shanghai devnets:
37+
38+
https://notes.ethereum.org/@bbusa/Zhejiang#Nimbus
39+
40+
### Fixes
41+
42+
* Out of date metadata for the Gnosis network bootstrap nodes:
43+
44+
https://github.com/status-im/nimbus-eth2/pull/4460
45+
46+
* Potential hanging of the client caused by inappropriate activation
47+
of the TTD block detection on beacon nodes created after the merge:
48+
49+
https://github.com/status-im/nimbus-eth2/pull/4486
50+
51+
* Inappropriate case-sensitivity in the `--log-level` parameter, accidentally introduced in the 22.12.0 release.
52+
53+
https://github.com/status-im/nimbus-eth2/pull/4523
54+
55+
156
2022-12-21 v22.12.0
257
===================
358

@@ -10,13 +65,13 @@ Nimbus `v22.12.0` is a `medium-urgency` release which improves the doppelganger
1065
non-finalization:
1166

1267
https://github.com/status-im/nimbus-eth2/pull/4435
13-
68+
1469
* Support for obtaining a deposit snapshot during trusted node sync from
1570
servers supporting the standardized `/eth/v1/beacon/deposit_snapshot`
1671
REST endpoint:
1772

1873
https://github.com/status-im/nimbus-eth2/pull/4303
19-
74+
2075
* Official docker images for the Nimbus validator client are now available:
2176

2277
https://hub.docker.com/r/statusim/nimbus-validator-client
@@ -34,25 +89,25 @@ Nimbus `v22.12.0` is a `medium-urgency` release which improves the doppelganger
3489

3590
* The validator client will now use with the standard exit code `129` in
3691
case of detected doppelganger on the network:
37-
92+
3893
https://github.com/status-im/nimbus-eth2/pull/4398
39-
94+
4095
### Fixes
4196

4297
* A potential false-positive in the doppelganger detection logic:
43-
98+
4499
https://github.com/status-im/nimbus-eth2/pull/4398
45-
100+
46101
* A potential hang in trusted node sync:
47102

48103
https://github.com/status-im/nimbus-eth2/pull/4303
49-
104+
50105
### Breaking changes:
51106

52107
* The built-in support for the Ropsten testnet has been removed:
53108

54109
https://github.com/status-im/nimbus-eth2/pull/4280
55-
110+
56111
You can still connect to the Ropsten network by specifying its
57112
metadata directory on the command line through the `--network`
58113
parameter.

beacon_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ when not defined(nimscript):
1919
let copyrights* = "Copyright (c) 2019-" & $(now().utc.year) & " Status Research & Development GmbH"
2020

2121
const
22-
versionMajor* = 22
23-
versionMinor* = 12
22+
versionMajor* = 23
23+
versionMinor* = 1
2424
versionBuild* = 0
2525

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

0 commit comments

Comments
 (0)