This page tracks releases and changes for v0.39.3. For the full release history, see the CHANGELOG on GitHub.
DEPENDENCIES
[build]Bumpgithub.com/Masterminds/semver/v3from3.4.0to3.5.0(#5823)
BUG FIXES
[mempool]App mempool waits before broadcasting. (#5800)[blocksync]Prevent maxPeerHeight poisoning (#5803)[p2p]Add lp2p reactor panic recovery (#5816)[light]Stop witness comparison after divergence checks (#5820)[abci]fix(abci): prevent panic on unlock in socket server panic recovery (#5593)
IMPROVEMENTS
[abci,mempool]Add Krakatoa app-mempool flow, including ABCI app-connection methods and app mempool/reactor wiring. (f4a9ba936, #5791)[e2e]Introduce app-mempool e2e network fixtures for simple, perturbed, and libp2p scenarios. (f4a9ba936)[execution,state]Add height validation in state execution and consensus paths (#5804)[consensus]perf(consensus): skip fsync for unsigned internal messages (block parts) (#5695)
BUG FIXES
[evidence]Add validation for Light Client Attack evidence ByzantineValidators (#5638)[types]Fix buffer offset bug inProposerPriorityHashthat caused hash collisions when validator priorities differed (#5613)[p2p]fix(privval): Ephemeral Port Exhaustion (#5433)[blocksync]fix(blocksync):ExtendedCommitverification via next blocksLastCommit(#5629)- [p2p] fix(lp2p): enforce stream max size (#5647)
[metrics]fix(metrics)!: peer_send_queue_size (#5648)[statesync]fix adaptive_sync and streamline stateSync logic (#5663)[blocksync]Modify blocksync to use full commit verification instead of light (#5663)[adaptivesync]Simplify loop, reuse blockExec.ValidateBlock (#5717)
IMPROVEMENTS
[consensus]perf(consensus): skip fsync for unsigned internal messages (block parts) (#5695)[ci]: add lp2p testnet (#5643)[mempool]feat!(p2p): introduce follower-mode. Improve lib-p2p integraap access[types]Add validation forAuthorityParams.Authorityfield in consensus params, enforcing a maximum length of 256 characters (#5511)[mempool]perf(mempool/cache): Optimize LRUTxCache.Remove to reduce lock contention and map access (#5244)[e2e]add support for testing different keytypes, including BLS (#3513)[crypto]Reduce BLS signature size to 48 bytes by increasing pubkey size to 192 bytes (#3624)[p2p]feat(lp2p): make reactor queue configurable (#5662)[cli]print lib-p2p peer id (#5667)[p2p]Add warning when go-libp2p transport is enabled, conveying that the setting should only be activated if it can be enabled simultaneously for all validators and peer IDs have been predetermined and exchanged (#5692)[p2p]feat(p2p): add adaptive sync for comet-p2p (#5705)[blocksync]fix redo event loss, stale event cancellation, and optimize retry timer (#5592)
FEATURES
[p2p]feat(lp2p): implemented resource limiter (#5671)[p2p]feat(consensus): add adaptive sync blocksync-to-consensus ingestion (#5633)[p2p]feat(lp2p): implement Peer info methods (NodeInfo,RemoteIP,RemoteAddr,IsOutbound) for/net_infoRPC compatibility with libp2p transport (#5619)[p2p]feat(lp2p): stop/reconnect peers that failed (#5618)[p2p]Add experimental support for lib-p2p networking (#5463)[crypto]Add support for BLS12-381 keys. Since the implementation needscgoand brings in new dependencies, we use thebls12381build flag to enable it (#2765)[mempool]Add a metric (a counter) to measure whether a tx was received more than once. (#634)[p2p]RenameIPeerSet#ListtoCopy, addRandom,ForEachmethods. RenamePeerSet#ListtoCopy, addRandom,ForEachmethods. (#2246)[mempool]When the node is performing block sync or state sync, the mempool reactor now discards incoming transactions from peers, and does not propagate transactions to peers. (#785)- Optimized the PSQL indexer (#2142) thanks to external contributor @k0marov !
[p2p]makePeerSet.Removemore efficient (Author: @odeke-em) (#2246)[light]Remove duplicated signature checks inlight.VerifyNonAdjacent(#2365)[state/indexer]Lower the heap allocation of transaction searches (#2839)[libs/json]Lower the memory overhead of JSON encoding by using JSON encoders internally (#2846).[log]allow strip out all debug-level code from the binary at compile time using build flags (#2847)[types]Small reduction in memory allocation via swapping Key with Equals in VoteSet (#1112)[event-bus]Remove the debug logs in PublishEventTx, which were noticed production slowdowns. (#2911)[state/execution]Cache the block hash computation inside of the Block Type, so we only compute it once. (#2924)[consensus/state]Remove a redundantVerifyBlockcall inFinalizeCommit(#2928)[p2p/channel]SpeedupProtoIOwriter creation time, and thereby speedup channel writing by 5%. (#2949)[p2p/conn]Minor speedup (3%) to connection.WritePacketMsgTo, by removing MinInt calls. (#2952)[blockstore]Remove a redundantHeader.ValidateBasiccall inLoadBlockMeta, 75% reducing this time. (#2964)[p2p]Lowerflush_throttle_timeoutto 10ms (#2988)[types]Significantly speedup types.MakePartSet and types.AddPart, which are used in creating a block proposal (#3117)[types] Make a new methodGetByAddressMutforValSet`, which does not copy the returned validator. (#3119)[consensus]Make Vote messages only take one peerstate mutex (#3156)[consensus]Make the consensus reactor no longer have packets on receive take the consensus lock. Consensus will now update the reactor’s view after every relevant change through the existing synchronous event bus subscription. (#3211)[p2p/conn]Speedup secret connection large writes, by buffering the write to the underlying connection. (#3346)[consensus]Make broadcastingHasVoteandHasProposalBlockPartcontrol messages useTrySendinstead ofSend. This saves notable amounts of performance, while at the same time those messages are for preventing redundancy, not critical, and may be dropped without risks for the protocol. (#3151)[p2p/conn]Removes several heap allocations per packet send, stemming from how we double-wrap packets prior to proto marshalling them in the connection layer. This change reduces the memory overhead and speeds up the code. (#3423)[p2p/conn]Speedup secret connection large packet reads, by buffering the read to the underlying connection. (#3419)[mempool]In the broadcast routine, get the pointer to the peer’s state once, before starting to iterate through the list of transactions. (#3430)[consensus]Make mempool updates asynchronous from consensus Commit’s, reducing latency for reaching consensus timeouts. (#3008)- [consensus] Add peer height metric publication to the consensus reactor’s peer state. (#5517)
BUG-FIXES
[evidence]Use structured logging for consensus buffer flush error (#5465)[mempool]Fix mutex inCListMempool.Flushmethod, by changing it from read-lock to write-lock (#2443).[crypto/bls12381]Fix JSON marshal of private key (#4772)[crypto/bls12381]ModifySign,Verifyto usedstMinPk(#4783)[cli]Prevent inadvertent rollover of IPs incometbft testnetconfig generator (#5541)[abci]fix(abci): prevent panic on unlock in socket server panic recovery (#5593)