From 73f56b5026bb86b51364336543bbc30eb1116be6 Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 23 May 2024 03:44:54 +0000 Subject: [PATCH 1/3] version v24.5.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ beacon_chain/version.nim | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e26159532..03c454878 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +2024-05-23 v24.5.0 +================== + +Nimbus `v24.5.0` is a `low-urgency` release with stability, performance, and beacon and builder API improvements. + +### Improvements + +* Improve SHA256 protocol object hashing speed by 30%: + https://github.com/status-im/nimbus-eth2/pull/5188 + +* Enable IPv6 for Discovery v5 protocol: + https://github.com/status-im/nimbus-eth2/pull/6242 + +### Fixes + +* Fix potential crash on slow libp2p sending: + https://github.com/status-im/nimbus-eth2/pull/6280 + +* Fix `publishBlockV2` to correctly verify block signature: + https://github.com/status-im/nimbus-eth2/pull/6261 + +* Fix `submitBlindedBlock` to include `Eth-Consensus-Version` header: + https://github.com/status-im/nimbus-eth2/pull/6256 + +* Fix `getAggregatedAttestation` 404 handling in Nimbus VC: + https://github.com/status-im/nimbus-eth2/pull/6254 + 2024-04-29 v24.4.0 ================== diff --git a/beacon_chain/version.nim b/beacon_chain/version.nim index 7e1f4a14f..b846ff75b 100644 --- a/beacon_chain/version.nim +++ b/beacon_chain/version.nim @@ -18,7 +18,7 @@ const "Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH" versionMajor* = 24 - versionMinor* = 4 + versionMinor* = 5 versionBuild* = 0 versionBlob* = "stateofus" # Single word - ends up in the default graffiti From a98c119b98cc75cf4a44877708473fba8f3e0efd Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 23 May 2024 10:52:55 +0000 Subject: [PATCH 2/3] version v24.5.1 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ beacon_chain/version.nim | 2 +- vendor/nim-ssz-serialization | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03c454878..4c39baf08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +2024-05-23 v24.5.1 +================== + +Nimbus `v24.5.0` is a `low-urgency` release with stability, performance, and beacon and builder API improvements. + +### Improvements + +* Enable IPv6 for Discovery v5 protocol: + https://github.com/status-im/nimbus-eth2/pull/6242 + +### Fixes + +* Fix potential crash on slow libp2p sending: + https://github.com/status-im/nimbus-eth2/pull/6280 + +* Fix `publishBlockV2` to correctly verify block signature: + https://github.com/status-im/nimbus-eth2/pull/6261 + +* Fix `submitBlindedBlock` to include `Eth-Consensus-Version` header: + https://github.com/status-im/nimbus-eth2/pull/6256 + +* Fix `getAggregatedAttestation` 404 handling in Nimbus VC: + https://github.com/status-im/nimbus-eth2/pull/6254 + 2024-05-23 v24.5.0 ================== diff --git a/beacon_chain/version.nim b/beacon_chain/version.nim index b846ff75b..8cae95c1f 100644 --- a/beacon_chain/version.nim +++ b/beacon_chain/version.nim @@ -19,7 +19,7 @@ const versionMajor* = 24 versionMinor* = 5 - versionBuild* = 0 + versionBuild* = 1 versionBlob* = "stateofus" # Single word - ends up in the default graffiti diff --git a/vendor/nim-ssz-serialization b/vendor/nim-ssz-serialization index ea28231c2..248f2bdca 160000 --- a/vendor/nim-ssz-serialization +++ b/vendor/nim-ssz-serialization @@ -1 +1 @@ -Subproject commit ea28231c2367cf3311a1f9bbcb35059501fc13f9 +Subproject commit 248f2bdca2d65ff920920c72b764d0622d522596 From d2a07514541ffe6ee02a2ec7272ce7a315131e04 Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 23 May 2024 11:05:37 +0000 Subject: [PATCH 3/3] version v24.5.1 changelog message fix --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c39baf08..aad2db282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ 2024-05-23 v24.5.1 ================== -Nimbus `v24.5.0` is a `low-urgency` release with stability, performance, and beacon and builder API improvements. +Nimbus `v24.5.1` is a `low-urgency` release with stability, performance, and beacon and builder API improvements. ### Improvements