mvcc-api 1.2.7 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -300,6 +300,7 @@ var SyncMVCCTransaction = class _SyncMVCCTransaction extends MVCCTransaction {
300
300
  this.originallyExisted.clear();
301
301
  this.keyVersions.clear();
302
302
  this.localVersion = 0;
303
+ this.snapshotVersion = this.version;
303
304
  }
304
305
  }
305
306
  return {
@@ -929,6 +930,7 @@ var AsyncMVCCTransaction = class _AsyncMVCCTransaction extends MVCCTransaction {
929
930
  this.originallyExisted.clear();
930
931
  this.keyVersions.clear();
931
932
  this.localVersion = 0;
933
+ this.snapshotVersion = this.version;
932
934
  }
933
935
  }
934
936
  return {
@@ -269,6 +269,7 @@ var SyncMVCCTransaction = class _SyncMVCCTransaction extends MVCCTransaction {
269
269
  this.originallyExisted.clear();
270
270
  this.keyVersions.clear();
271
271
  this.localVersion = 0;
272
+ this.snapshotVersion = this.version;
272
273
  }
273
274
  }
274
275
  return {
@@ -898,6 +899,7 @@ var AsyncMVCCTransaction = class _AsyncMVCCTransaction extends MVCCTransaction {
898
899
  this.originallyExisted.clear();
899
900
  this.keyVersions.clear();
900
901
  this.localVersion = 0;
902
+ this.snapshotVersion = this.version;
901
903
  }
902
904
  }
903
905
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mvcc-api",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "description": "Multiversion Concurrency Control (MVCC) API for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "izure <admin@izure.org>",