From d895088a4fd5e52917ccd62e868ecf7c659cd236 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Wed, 26 Jun 2024 15:22:42 +0200 Subject: [PATCH 1/3] bump nim-ssz-serialization --- vendor/nim-ssz-serialization | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/nim-ssz-serialization b/vendor/nim-ssz-serialization index 9f6fc631e..b6b16f4a7 160000 --- a/vendor/nim-ssz-serialization +++ b/vendor/nim-ssz-serialization @@ -1 +1 @@ -Subproject commit 9f6fc631e24bb49e6afa2bdd708e6efc840d240c +Subproject commit b6b16f4a7b7e83ad18b4d27fe0b5cc7b323ad37e From 0a4d3ac9c3aab071965b4ff62b45181d46aac78d Mon Sep 17 00:00:00 2001 From: tersec Date: Mon, 29 Jul 2024 00:45:51 +0000 Subject: [PATCH 2/3] version v24.7.0 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ beacon_chain/version.nim | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9664ff4c..8f19be546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +2024-07-29 v24.7.0 +================== + +Nimbus `v24.7.0` is a `low-urgency` release with beacon API improvements and fixes. + +### Improvements + +* Add support for publishBlindedBlockV2 beacon API endpoint: + https://github.com/status-im/nimbus-eth2/pull/6413 + +* Improve block proposal rewards in the absence of pre-aggregated sync contributions: + https://github.com/status-im/nimbus-eth2/pull/6384 + +### Fixes + +* Fix SSZ decoding for beacon API publishBlock and publishBlockV2 endpoints + https://github.com/status-im/nimbus-eth2/pull/6408 + +* Fix `statuses` parameter handling in postStateValidators beacon API endpoint: + https://github.com/status-im/nimbus-eth2/pull/6391 + +* Restore functioning Sepolia bootnodes, as previous bootnodes had gradually vanished: + https://github.com/status-im/nimbus-eth2/pull/6421 + +* Fix IP addresses returned by getNetworkIdentity beacon API endpoint: + https://github.com/status-im/nimbus-eth2/pull/6422 + +* Ensure Keymanager API fee recipient changes propagate to builder API relays: + https://github.com/status-im/nimbus-eth2/pull/6412 + 2024-06-24 v24.6.0 ================== diff --git a/beacon_chain/version.nim b/beacon_chain/version.nim index 99d2a5c47..51c33eded 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* = 6 + versionMinor* = 7 versionBuild* = 0 versionBlob* = "stateofus" # Single word - ends up in the default graffiti From 99f657e548162767e354b3be00c336116d69a97b Mon Sep 17 00:00:00 2001 From: tersec Date: Mon, 29 Jul 2024 02:17:37 +0000 Subject: [PATCH 3/3] add missing colon at end of changelog line --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f19be546..f99bc24d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ Nimbus `v24.7.0` is a `low-urgency` release with beacon API improvements and fix ### Fixes -* Fix SSZ decoding for beacon API publishBlock and publishBlockV2 endpoints +* Fix SSZ decoding for beacon API publishBlock and publishBlockV2 endpoints: https://github.com/status-im/nimbus-eth2/pull/6408 * Fix `statuses` parameter handling in postStateValidators beacon API endpoint: