Skip to content

Commit 13b264d

Browse files
committed
Final v22.3.0: Add examples for migrating from JSON-RCP to REST
1 parent 7b6e36b commit 13b264d

File tree

3 files changed

+313
-7
lines changed

3 files changed

+313
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2022-03-07 v22.3.1
1+
2022-03-07 v22.3.0
22
==================
33

44
Nimbus `v22.3.0` is a `low-urgency` upgrade that marks the beginning of a more predictable release cadence for Nimbus. Going forward, we'll be publishing a new release at the start of each month, following a feature freeze period with intensified testing and monitoring of the introduced code changes on our dispersed fleet of mainnet validators.
@@ -30,6 +30,12 @@ Nimbus `v22.3.0` is a `low-urgency` upgrade that marks the beginning of a more p
3030
* Extremely slow [slashing DB import](https://nimbus.guide/migration.html#step-4---import-your-slashing-protection-history) for validators: the import should be pretty fast now
3131
https://github.com/status-im/nimbus-eth2/pull/3393
3232

33+
* Validator index-out-of-bounds crash that was triggered upon certain REST requests
34+
https://github.com/status-im/nimbus-eth2/issues/3463
35+
36+
* An off-by-one logic error preventing sync committee messages to be published in the first slot of each sync committee period
37+
https://github.com/status-im/nimbus-eth2/pull/3470/commits/542e645bedec7702a973dc5cdaae87175e353009
38+
3339
### Deprecated features:
3440

3541
- The [JSON-RPC](https://nimbus.guide/api.html) service (`--rpc` flag) option is now deprecated. It's scheduled for removal in version `v22.6` (i.e June of this year). If you are currently relying on the JSON-RPC API, please consider switching to the official [REST API](https://nimbus.guide/rest-api.html).

beacon_chain/version.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ when not defined(nimscript):
1515
const
1616
versionMajor* = 22
1717
versionMinor* = 3
18-
versionBuild* = 1
18+
versionBuild* = 0
1919

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

0 commit comments

Comments
 (0)