Releases: cosmos/iavl
Releases · cosmos/iavl
IAVL v0.17.2
v0.17.2 brings a new iterator pattern improving which is much faster.
- #440 Introduce Cosmos SDK iterator type directly into IAVL. Improves the iterator performance by 40%.
See CHANGELOG.md from more details.
IAVL v0.17.1
- Fix race Condition for Cosmos SDK
- Tendermint update.
See CHANGELOG.md from more details.
IAVL v0.17.0
Improvements
- Various performance improvements. Credits: Orijtech.
- Updating dependencies
CLI Breaking Changes
- #396 Add "prefix" arg to
iaviewer
to easily browse the module content.
Context. In Cosmos SDK, different modules use different IAVL trees and are stored in the same leveldb (application.db). Different db prefixes are used to distinguish different modules, such as "s/k: gov/", "s/k:staking/", "s/k:evm/".
v0.16.0
Breaking Changes
- #355
Get
iniavlServer
no longer returns an error if the requested key does not exist.GetResponse
now contains aNotFound
boolean to indicate that a key does not exist, and the returned index will be that of the next occupied key.
Improvements
- #355 Add support for
GetByIndex
toiavlServer
and RPC interface.