-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add changelog for 1.3.0 (#974)
Co-authored-by: cool-developer <51834436+cool-develope@users.noreply.github.com>
- Loading branch information
1 parent
22928a2
commit ee551fa
Showing
1 changed file
with
2 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,171 +1,12 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
## v1.3.0, July 31, 2024 | ||
|
||
### Improvements | ||
|
||
- [#952](https://github.com/cosmos/iavl/pull/952) Add `DeleteVersionsFrom(int64)` API. | ||
- [#955](https://github.com/cosmos/iavl/pull/955) Get rid of `cosmos-db` deps completely. | ||
- [#961](https://github.com/cosmos/iavl/pull/961) Add new `GetLatestVersion` API to get the latest version. | ||
- [#955](https://github.com/cosmos/iavl/pull/955) Get rid of `cosmos-db` deps completely. | ||
- [#965](https://github.com/cosmos/iavl/pull/965) Use expected interface for expected IAVL `Logger`. | ||
- [#970](https://github.com/cosmos/iavl/pull/970) Close the pruning process when the nodeDB is closed. | ||
|
||
## v1.2.0 May 13, 2024 | ||
|
||
### Improvements | ||
|
||
- [#925](https://github.com/cosmos/iavl/pull/925) Add the `AsyncPruning` option to the `MutableTree` constructor to enable async pruning. | ||
|
||
## v1.1.4 May 8, 2024 | ||
|
||
### Bug Fixes | ||
|
||
- [#943](https://github.com/cosmos/iavl/pull/943) Fix the `WorkingHash` with the `InitialVersion` option. | ||
|
||
## v1.1.2 April 8, 2024 | ||
|
||
### Bug Fixes | ||
|
||
- [#928](https://github.com/cosmos/iavl/pull/928) Fix the reformatted root node issue. | ||
|
||
## v1.1.1 March 16, 2024 (retracted) | ||
|
||
### Bug Fixes | ||
|
||
- [#910](https://github.com/cosmos/iavl/pull/910) Fix the reference root format from (prefix, version) to (prefix, version, nonce) | ||
|
||
### Improvements | ||
|
||
- [#910](https://github.com/cosmos/iavl/pull/910) Async pruning of legacy orphan nodes. | ||
|
||
## v1.1.0 February 29, 2024 (retracted) | ||
|
||
### API Breaking Changes | ||
|
||
- [#874](https://github.com/cosmos/iavl/pull/874) Decouple `cosmos-db` and implement own `db` package. | ||
|
||
## v1.0.4 May 7, 2024 | ||
|
||
### Bug Fixes | ||
|
||
- [#943](https://github.com/cosmos/iavl/pull/943) Fix the `WorkingHash` with the `InitialVersion` option. | ||
|
||
## v1.0.3 April 8, 2024 | ||
|
||
### Bug Fixes | ||
|
||
- [#928](https://github.com/cosmos/iavl/pull/928) Fix the reformatted root node issue. | ||
|
||
## v1.0.2 March 16, 2024 (retracted) | ||
|
||
### Bug Fixes | ||
|
||
- [#911](https://github.com/cosmos/iavl/pull/911) Fix the reference root format from (prefix, version) to (prefix, version, nonce) | ||
|
||
### Improvements | ||
|
||
- [#911](https://github.com/cosmos/iavl/pull/911) Async pruning of legacy orphan nodes. | ||
|
||
## v1.0.1 February 16, 2024 (retracted) | ||
|
||
### Improvements | ||
|
||
- [#876](https://github.com/cosmos/iavl/pull/876) Make pruning of legacy orphan nodes asynchronous. | ||
|
||
## v1.0.0 (October 30, 2023) (retracted) | ||
|
||
### Improvements | ||
|
||
- [#695](https://github.com/cosmos/iavl/pull/695) Add API `SaveChangeSet` to save the changeset as a new version. | ||
- [#703](https://github.com/cosmos/iavl/pull/703) New APIs `NewCompressExporter`/`NewCompressImporter` to support more compact snapshot format. | ||
- [#729](https://github.com/cosmos/iavl/pull/729) Speedup Genesis writes for IAVL, by writing in small batches. | ||
- [#726](https://github.com/cosmos/iavl/pull/726) Make `KVPair` and `ChangeSet` serializable with protobuf. | ||
- [#718](https://github.com/cosmos/iavl/pull/718) Fix `traverseNodes` unexpected behaviour | ||
- [#770](https://github.com/cosmos/iavl/pull/770) Add `WorkingVersion()int64` API. | ||
|
||
### Bug Fixes | ||
|
||
- [#943](https://github.com/cosmos/iavl/pull/943) Fix the `WorkingHash` with the `InitialVersion` option. | ||
- [#909](https://github.com/cosmos/iavl/pull/909) Fix the reference node formats and delete legacy nodes. | ||
- [#773](https://github.com/cosmos/iavl/pull/773) Fix memory leak in `Import`. | ||
- [#801](https://github.com/cosmos/iavl/pull/801) Fix rootKey empty check by len equals 0. | ||
- [#805](https://github.com/cosmos/iavl/pull/805) Use `sync.Map` instead of map to prevent concurrent writes at the fast node level | ||
|
||
### Breaking Changes | ||
|
||
- [#735](https://github.com/cosmos/iavl/pull/735) Pass logger to `NodeDB`, `MutableTree` and `ImmutableTree` | ||
- [#646](https://github.com/cosmos/iavl/pull/646) Remove the `orphans` from the storage | ||
- [#777](https://github.com/cosmos/iavl/pull/777) Don't return errors from ImmutableTree.Hash, NewImmutableTree | ||
- [#815](https://github.com/cosmos/iavl/pull/815) `NewMutableTreeWithOpts` was removed in favour of accepting options via a variadic in `NewMutableTree` | ||
- [#815](https://github.com/cosmos/iavl/pull/815) `NewImmutableTreeWithOpts` is removed in favour of accepting options via a variadic in `NewImmutableTree` | ||
- [#646](https://github.com/cosmos/iavl/pull/646) Remove the `DeleteVersion`, `DeleteVersions`, `DeleteVersionsRange` and introduce a new endpoint of `DeleteVersionsTo` instead | ||
|
||
## 0.20.0 (March 14, 2023) | ||
|
||
### Breaking Changes | ||
|
||
- [#586](https://github.com/cosmos/iavl/pull/586) Remove the `RangeProof` and refactor the ics23_proof to use the internal methods. | ||
|
||
## 0.19.5 (Februrary 23, 2022) | ||
|
||
### Breaking Changes | ||
|
||
- [#622](https://github.com/cosmos/iavl/pull/622) `export/newExporter()` and `ImmutableTree.Export()` returns error for nil arguements | ||
|
||
- [#640](https://github.com/cosmos/iavl/pull/640) commit `NodeDB` batch in `LoadVersionForOverwriting`. | ||
- [#636](https://github.com/cosmos/iavl/pull/636) Speed up rollback method: `LoadVersionForOverwriting`. | ||
- [#654](https://github.com/cosmos/iavl/pull/654) Add API `TraverseStateChanges` to extract state changes from iavl versions. | ||
- [#638](https://github.com/cosmos/iavl/pull/638) Make LazyLoadVersion check the opts.InitialVersion, add API `LazyLoadVersionForOverwriting`. | ||
|
||
## 0.19.4 (October 28, 2022) | ||
|
||
- [#599](https://github.com/cosmos/iavl/pull/599) Populate ImmutableTree creation in copy function with missing field | ||
- [#589](https://github.com/cosmos/iavl/pull/589) Wrap `tree.addUnsavedRemoval()` with missing `if !tree.skipFastStorageUpgrade` statement | ||
|
||
## 0.19.3 (October 8, 2022) | ||
|
||
- `ProofInner.Hash()` prevents both right and left from both being set. Only one is allowed to be set. | ||
|
||
## 0.19.2 (October 6, 2022) | ||
|
||
- [#547](https://github.com/cosmos/iavl/pull/547) Implement `skipFastStorageUpgrade` in order to skip fast storage upgrade and usage. | ||
- [#531](https://github.com/cosmos/iavl/pull/531) Upgrade to fast storage in batches. | ||
|
||
## 0.19.1 (August 3, 2022) | ||
|
||
### Improvements | ||
|
||
- [#525](https://github.com/cosmos/iavl/pull/525) Optimization: use fast unsafe bytes->string conversion. | ||
- [#506](https://github.com/cosmos/iavl/pull/506) Implement cache abstraction. | ||
|
||
### Bug Fixes | ||
|
||
- [#524](https://github.com/cosmos/iavl/pull/524) Fix: `MutableTree.Get`. | ||
|
||
## 0.19.0 (July 6, 2022) | ||
|
||
### Breaking Changes | ||
|
||
- [#514](https://github.com/cosmos/iavl/pull/514) Downgrade Tendermint to 0.34.x | ||
- [#500](https://github.com/cosmos/iavl/pull/500) Return errors instead of panicking. | ||
|
||
### Improvements | ||
|
||
- [#514](https://github.com/cosmos/iavl/pull/514) Use Go v1.18 | ||
|
||
## 0.18.0 (March 10, 2022) | ||
|
||
### Breaking Changes | ||
|
||
- Bumped Tendermint to 0.35.1 | ||
|
||
### Improvements | ||
|
||
- [\#468](https://github.com/cosmos/iavl/pull/468) Fast storage optimization for queries and iterations | ||
- [\#452](https://github.com/cosmos/iavl/pull/452) Optimization: remove unnecessary (\*bytes.Buffer).Reset right after creating buffer. | ||
- [\#445](https://github.com/cosmos/iavl/pull/445) Bump github.com/tendermint/tendermint to v0.35.0 | ||
- [\#453](https://github.com/cosmos/iavl/pull/453),[\#456](https://github.com/cosmos/iavl/pull/456) Optimization: buffer reuse | ||
- [\#474](https://github.com/cosmos/iavl/pull/474) bump github.com/confio/ics23 to v0.7 | ||
- [\#475](https://github.com/cosmos/iavl/pull/475) Use go v1.17 | ||
|
||
For previous changelogs visit: <https://github.com/cosmos/iavl/blob/v0.18.0/CHANGELOG.md> |