v6.1.3 - 2025-10-21
This release has several important beacon API and p2p fixes.
Added
- Add Grandine to P2P known agents. (Useful for metrics). [PR]
- Delegate sszInfo HashTreeRoot to FastSSZ-generated implementations via SSZObject, enabling roots calculation for generated types while avoiding duplicate logic. [PR]
- SSZ-QL: Use
fastssz
'sSizeSSZ
method for calculating the size ofContainer
type. [PR] - SSZ-QL: Access n-th element in
List
/Vector
. [PR]
Changed
- Do not verify block data when calculating rewards. [PR]
- Process pending attestations after pending blocks are cleared. [PR]
- updated web3signer to 25.9.1. [PR]
- Gracefully handle submit blind block returning 502 errors. [PR]
- Improve returning individual message errors from Beacon API. [PR]
- SSZ-QL: Clarify
Size
method with more sophisticatedSSZType
s. [PR]
Fixed
- Use service context and continue on slasher attestation errors (#15803). [PR]
- block event probably shouldn't be sent on certain block processing failures, now sends only on successing processing Block is NON-CANONICAL, Block IS CANONICAL but getFCUArgs FAILS, and Full success. [PR]
- Fixed web3signer e2e, issues caused due to a regression on old fork support. [PR]
- Do not mark blocks as invalid from ErrNotDescendantOfFinalized. [PR]
- Fixed #15812: Gossip attestation validation incorrectly rejecting attestations that arrive before their referenced blocks. Previously, attestations were saved to the pending queue but immediately rejected by forkchoice validation, causing "not descendant of finalized checkpoint" errors. Now attestations for missing blocks return
ValidationIgnore
without error, allowing them to be properly processed when their blocks arrive. This eliminates false positive rejections and prevents potential incorrect peer downscoring during network congestion. [PR] - Mark the block as invalid if it has an invalid signature. [PR]
- Display error messages from the server verbatim when they are not encoded as
application/json
. [PR] HasAtLeastOneIndex
: Check the index is not too high. [PR]- Fix
/eth/v1/beacon/blob_sidecars/
beacon API is the fulu fork epoch is set to the far future epoch. [PR] dataColumnSidecarsByRangeRPCHandler
: Gracefully close the stream if no data to return. [PR]VerifyDataColumnSidecar
: Check if there is no too many commitments. [PR]WithDataColumnRetentionEpochs
: UsedataColumnRetentionEpoch
instead ofblobColumnRetentionEpoch
. [PR]- Mark epoch transition correctly on new head events. [PR]
- reject committee index >= committees_per_slot in unaggregated attestation validation. [PR]
- Decreased attestation gossip validation batch deadline to 5ms. [PR]