Skip to content

Latest commit

 

History

History
49 lines (38 loc) · 2.61 KB

File metadata and controls

49 lines (38 loc) · 2.61 KB

Changelog

v0.1.1 - 2024-04-22

Improvements

  • (deps) #19810 Upgrade SDK version due to prometheus breaking change.
  • (deps) #19810 Bump cosmossdk.io/store to v1.1.0.

v0.1.0 - 2023-11-07

Features

  • (x/evidence) 14724 The x/evidence module is extracted to have a separate go.mod file which allows it be a standalone module.
  • (keeper) #15420 Move BeginBlocker to the keeper folder & make HandleEquivocation private

API Breaking Changes

  • #16008 NewKeeper now takes in a KVStoreService instead of KVStoreKey, most functions use context.Context instead of sdk.Context and IterateEvidence callback function now returns an error to stop interation (errors.ErrStopIterating).
  • (keeper) #15825 Evidence constructor now requires an address.Codec (import "cosmossdk.io/core/address")
  • #16336 Use collections for state management:
    • Removed: keeper SetEvidence, GetEvidence, IterateEvidences, GetAllEvidences, MustMarshalEvidence, MustUnmarshalEvidence, MarshalEvidence, UnmarshalEvidence

Client Breaking Changes

  • #16625 The simd q evidence evidence command supports only querying an evidence by hash. For querying all evidences, use simd q evidence list instead.