Skip to content

Commit 4110bc7

Browse files
committed
version v26.7.0
1 parent 9e509d1 commit 4110bc7

3 files changed

Lines changed: 31 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
2026-07-13 v26.7.0
2+
==================
3+
4+
The Nimbus consensus client `v26.7.0` is a `medium-urgency` release which optimizes CPU and memory usage.
5+
6+
### Improvements
7+
8+
- Implements backfilled column reconstruction:
9+
https://github.com/status-im/nimbus-eth2/pull/8533
10+
11+
- Reply with correct error message in block req/resp for unavailable blocks:
12+
https://github.com/status-im/nimbus-eth2/pull/8719
13+
14+
- Reassemble only custodied columns from execution client mempool:
15+
https://github.com/status-im/nimbus-eth2/pull/8672
16+
17+
### Fixes
18+
19+
- Prevents libp2p pubsub peer leakage:
20+
https://github.com/status-im/nimbus-eth2/pull/8699
21+
https://github.com/status-im/nimbus-eth2/pull/8701
22+
23+
- Prune colunm quarantines:
24+
https://github.com/status-im/nimbus-eth2/pull/8691
25+
26+
- Avoid unbounded column quarantine growth when blocks don't arrive:
27+
https://github.com/status-im/nimbus-eth2/pull/8693
28+
129
2026-06-29 v26.6.2
230
==================
331

beacon_chain.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
mode = ScriptMode.Verbose
99

10-
version = "26.6.1"
10+
version = "26.7.0"
1111
author = "Status Research & Development GmbH"
1212
description = "The Nimbus beacon chain node is a highly efficient Ethereum 2.0 client"
1313
license = "MIT or Apache License 2.0"

beacon_chain/version.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import std/[os, strutils], ./buildinfo
1414

1515
const
1616
versionMajor* = 26
17-
versionMinor* = 6
18-
versionBuild* = 2
17+
versionMinor* = 7
18+
versionBuild* = 0
1919

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

0 commit comments

Comments
 (0)