Releases: cosmos/iavl
Releases · cosmos/iavl
v0.19.4
Main changes
- #599 Populate ImmutableTree creation in copy function with missing field
- #589 Wrap
tree.addUnsavedRemoval()
with missingif !tree.skipFastStorageUpgrade
statement
Full Changelog: v0.19.3...v0.19.4
v0.19.3
Main changes
ProofInner.Hash()
prevents both right and left from both being set. Only one is allowed to be set.
Note: It is recommended to not use the native proof structure of IAVL in its current form. Please refer to ics23 for IAVL proofs
Full Changelog: v0.19.2...v0.19.3
v0.19.2
Main changes
- #547 Implement
skipFastStorageUpgrade
in order to skip fast storage upgrade and usage. - #531 Upgrade to fast storage in batches.
Full Changelog: v0.19.1...v0.19.2
v0.19.1
v0.19.0
v0.17.3
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.