v7.1.1 - 2025-12-18
Release highlights:
- Fixed potential deadlock scenario in data column batch verification
- Improved processing and metrics for cells and proofs
We are aware of an issue where Prysm struggles to sync from an out of sync state. We will have another release before the end of the year to address this issue.
Our postmortem document from the December 4th mainnet issue has been published on our documentation site
Added
- Track the dependent root of the latest finalized checkpoint in forkchoice. [PR]
- Proposal design document to implement graffiti. Currently it is empty by default and the idea is to have it of the form GE168dPR63af. [PR]
- Add support for detecting and logging per address reachability via libp2p AutoNAT v2. [PR]
- Static analyzer that ensures each
httputil.HandleErrorcall is followed by areturnstatement. [PR] - Prometheus histogram
cells_and_proofs_from_structured_computation_millisecondsto track computation time for cells and proofs from structured blobs. [PR] - Prometheus histogram
get_blobs_v2_latency_millisecondsto track RPC latency forgetBlobsV2calls to the execution layer. [PR]
Changed
- Optimise migratetocold by not doing brute force for loop. [PR]
- e2e sync committee evaluator now skips the first slot after startup, we already skip the fork epoch for checks here, this skip only applies on startup, due to altair always from 0 and validators need to warm up. [PR]
- Run
ComputeCellsAndProofsFromFlatin parallel to improve performance when computing cells and proofs. [PR] - Run
ComputeCellsAndProofsFromStructuredin parallel to improve performance when computing cells and proofs. [PR]
Removed
- Unnecessary copy is removed from Eth1DataHasEnoughSupport. [PR]
Fixed
- Incorrect constructor return type #16084. [PR]
- Fixed possible race when validating two attestations at the same time. [PR]
- Fix missing return after version header check in SubmitAttesterSlashingsV2. [PR]
- Fix deadlock in data column gossip KZG batch verification when a caller times out preventing result delivery. [PR]
- Fixed replay state issue in rest api caused by attester and sync committee duties endpoints. [PR]
- Do not error when committee has been computed correctly but updating the cache failed. [PR]
- Prevent blocked sends to the KZG batch verifier when the caller context is already canceled, avoiding useless queueing and potential hangs. [PR]