Skip to content

4.0.0

Choose a tag to compare

@cberner cberner released this 02 Apr 23:05
· 276 commits to master since this release
  • Implement Drop on AccessGuardMut and AccessGuardMutInPlace, which requires that these be dropped
    before the Table they borrow from.
    This fixes a critical bug where the accessor could outlive the Table, and be dropped after the
    transaction had already committed. This could cause data loss due to the data in the accessor
    being written out after the transaction had already completed.
  • Remove Legacy type. To migrate off the Legacy type, use the Legacy type in the 3.x release
    and copy the data to a table with plain tuples, before upgrading to the 4.x release.