Merge remote-tracking branch 'origin/stable' into unstable
This commit is contained in:
commit
00f276eacf
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,3 +1,27 @@
|
|||
2024-10-29 v24.10.0
|
||||
===================
|
||||
|
||||
Nimbus `v24.10.0` is a `low-urgency` release with performance improvements and stability fixes. It is `high-urgency` in specific cases where the beacon REST API might be externally exposed, which is not the default configuration.
|
||||
|
||||
### Improvements
|
||||
|
||||
* Improve performance for syncing with a timing-out or nonresponsive execution client:
|
||||
https://github.com/status-im/nimbus-eth2/pull/6665
|
||||
|
||||
* Increase execution payload block hash verification performance for optimistic sync by 100x:
|
||||
https://github.com/status-im/nimbus-eth2/pull/6610
|
||||
|
||||
* Increase validator client scalability with number of validators:
|
||||
https://github.com/status-im/nimbus-eth2/pull/6609
|
||||
|
||||
### Fixes
|
||||
|
||||
* Fix crash on overlong JSON array reading:
|
||||
https://github.com/status-im/nimbus-eth2/pull/6674
|
||||
|
||||
* Fix infinite loop in validator client when all validators lack indices:
|
||||
https://github.com/status-im/nimbus-eth2/pull/6615
|
||||
|
||||
2024-09-30 v24.9.0
|
||||
==================
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ const
|
|||
"Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH"
|
||||
|
||||
versionMajor* = 24
|
||||
versionMinor* = 9
|
||||
versionMinor* = 10
|
||||
versionBuild* = 0
|
||||
|
||||
versionBlob* = "stateofus" # Single word - ends up in the default graffiti
|
||||
|
|
Loading…
Reference in New Issue