Skip to content

BadgerDB v1.5.2

Compare
Choose a tag to compare
@manishrjain manishrjain released this 19 Jun 23:42
· 820 commits to main since this release

Bug Fixes:

  • Fix the way move key gets generated.
  • If a transaction has unclosed, or multiple iterators running simultaneously,
    throw a panic. Every iterator must be properly closed. At any point in time,
    only one iterator per transaction can be running. This is to avoid bugs using the
    transaction data structure which is thread unsafe.

Warning: This change might cause panics in user code. Fix is to properly
close your iterators, and only have one running at a time per transaction.