Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/stable' into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec committed Nov 30, 2024
2 parents f7e2507 + d2d02bd commit 18f492d
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
2024-11-29 v24.11.0
===================

Nimbus `v24.11.0` is a `low-urgency` release with performance and compatibility improvements.

### Improvements

* Update Holesky bootnodes:
https://github.com/status-im/nimbus-eth2/pull/6703

* Improve forward syncing performance:
https://github.com/status-im/nimbus-eth2/pull/6682

* Experimental light client-based sync method, for testing only:
https://github.com/status-im/nimbus-eth2/pull/6515

### Fixes

* Avoid validator client network configuration mismatch errors pertaining to unscheduled forks:
https://github.com/status-im/nimbus-eth2/pull/6698

2024-10-29 v24.10.0
===================

Expand Down
2 changes: 1 addition & 1 deletion beacon_chain/version.nim
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const
"Copyright (c) 2019-" & compileYear & " Status Research & Development GmbH"

versionMajor* = 24
versionMinor* = 10
versionMinor* = 11
versionBuild* = 0

versionBlob* = "stateofus" # Single word - ends up in the default graffiti
Expand Down
2 changes: 1 addition & 1 deletion docker/dist/binaries/Dockerfile.bn.arm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v7/debian:bullseye-slim
FROM --platform=linux/arm/v7 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion docker/dist/binaries/Dockerfile.bn.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/debian:bullseye-slim
FROM --platform=linux/arm64/v8 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion docker/dist/binaries/Dockerfile.vc.arm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v7/debian:bullseye-slim
FROM --platform=linux/arm/v7 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion docker/dist/binaries/Dockerfile.vc.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/debian:bullseye-slim
FROM --platform=linux/arm64/v8 debian:bookworm-slim

SHELL ["/bin/bash", "-c"]

Expand Down

0 comments on commit 18f492d

Please sign in to comment.