Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/tendermint/iavl from 0.12.1 to 0.14.0 #25

Conversation

dependabot-preview[bot]
Copy link

@dependabot-preview dependabot-preview bot commented Jul 3, 2020

Bumps github.com/tendermint/iavl from 0.12.1 to 0.14.0.

Release notes

Sourced from github.com/tendermint/iavl's releases.

v0.14.0

This release removes the pruning functionality introduced with IAVL 0.13 due to multiple problems with data corruption, performance, and memory usage. 0.13 users are urged to upgrade, and to follow the upgrade instructions in the changelog to avoid data corruption.

https://github.com/cosmos/iavl/blob/a1cd0bea2e58e9a7ef3e89db38776f2daa8db9c1/CHANGELOG.md#0140-july-2-2020

v0.14.0-rc2

This release candidate reverts the pruning functionality introduced with IAVL 0.13 due to multiple problems with data corruption, performance, and memory usage. Users are urged to wait for the final 0.14.0 release, and to read the changelog before upgrading.

https://github.com/cosmos/iavl/blob/7bc2ca0310db02a1a0cc49d05988ed97e90fae05/CHANGELOG.md#0140-rc2-june-26-2020

v0.14.0-rc1

This release candidate reverts the pruning functionality introduced with IAVL 0.13 due to multiple problems with data corruption, performance, and memory usage. Users are urged to wait for the final 0.14.0 release, and to read the changelog before upgrading.

https://github.com/cosmos/iavl/blob/20bf75b4baab18eac3d69d58a658828a31858deb/CHANGELOG.md#0140-rc1-june-24-2020

v0.13.3

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0133-april-5-2020

v0.13.2

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0132-march-18-2020

v0.13.1

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0131-march-13-2020

v0.13.0

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0130-january-16-2019

v0.12.4

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0124-july-31-2019

v0.12.3

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0123-july-12-2019

v0.12.2

https://github.com/tendermint/iavl/blob/master/CHANGELOG.md#0122-march-13-2019

Changelog

Sourced from github.com/tendermint/iavl's changelog.

0.14.0 (July 2, 2020)

Important information: the pruning functionality introduced with IAVL 0.13.0 via the options KeepEvery and KeepRecent has problems with data corruption, performance, and memory usage. For these reasons, this functionality has now been removed. All 0.13 users are urged to upgrade, and to not change their pruning settings while on 0.13.

Make sure to follow these instructions when upgrading, to avoid data corruption:

  • If using KeepEvery: 1 (the default) then upgrading to 0.14 is safe.

  • Otherwise, upgrade after saving a multiple of KeepEvery - for example, with KeepEvery: 1000 stop 0.13 after saving e.g. version 7000 to disk. A later version must never have been saved to the tree. Upgrading to 0.14 is then safe.

  • Otherwise, consider using the Repair013Orphans() function to repair faulty data in databases last written to by 0.13. This must be done before opening the database with IAVL 0.14, and a database backup should be taken first. Upgrading to 0.14 is then safe.

  • Otherwise, after upgrading to 0.14, do not delete the last version saved to disk by 0.13 - this contains incorrect data that may cause data corruption when deleted, making the database unusable. For example, with KeepEvery: 1000 then stopping 0.13 at version 7364 (saving 7000 to disk) and upgrading to 0.14 means version 7000 must never be deleted.

    It may be possible to delete it if the exact same sequence of changes have been written to the newer versions as before the upgrade, and all versions between 7000 and 7364 are deleted first, but thorough testing and backups are recommended if attempting this.

Users wishing to prune historical versions can do so via MutableTree.DeleteVersion().

There are no changes from 0.14.0-rc2.

0.14.0-rc2 (June 26, 2020)

See important upgrade information for 0.14.0 above.

Improvements

  • #282 Add Repair013Orphans() to repair faulty orphans in a database last written to by IAVL 0.13.x

Bug Fixes

  • #281 Remove unnecessary Protobuf dependencies

0.14.0-rc1 (June 24, 2020)

See important upgrade information for 0.14.0 above.

Special thanks to external contributors on this release: @ridenaio

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

If all status checks pass Dependabot will automatically merge this pull request.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

⚠️ Dependabot won't automerge this PR as it didn't detect CI on it ⚠️

You have automerging enabled for this repo but Dependabot didn't detect any CI statuses or checks. You can disable automerging on this repo from here.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Jul 3, 2020
@dependabot-preview
Copy link
Author

Superseded by #27.

@dependabot-preview dependabot-preview bot deleted the dependabot/dep/github.com/tendermint/iavl-0.14.0 branch October 12, 2020 05:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants