Merge remote-tracking branch 'origin/stable' into unstable
This commit is contained in:
commit
18f492d929
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -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
|
||||
===================
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM arm32v7/debian:bullseye-slim
|
||||
FROM --platform=linux/arm/v7 debian:bookworm-slim
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM arm64v8/debian:bullseye-slim
|
||||
FROM --platform=linux/arm64/v8 debian:bookworm-slim
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM arm32v7/debian:bullseye-slim
|
||||
FROM --platform=linux/arm/v7 debian:bookworm-slim
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM arm64v8/debian:bullseye-slim
|
||||
FROM --platform=linux/arm64/v8 debian:bookworm-slim
|
||||
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue