@live-change/db 0.9.151 → 0.9.153

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.
Files changed (2) hide show
  1. package/lib/Table.js +1 -0
  2. package/package.json +6 -6
package/lib/Table.js CHANGED
@@ -128,6 +128,7 @@ class Table {
128
128
  async deleteOpLog() {
129
129
  const config = this.configObservable.value
130
130
  this.database.deleteStore(config.uid + '.opLog')
131
+ this.database.stores.delete(config.uid + '.opLog')
131
132
  this.opLog = this.database.store(config.uid + '.opLog', { ...config, ...config.opLog })
132
133
  this.opLogWritter = opLogWritter(this.opLog)
133
134
  this.opLogger = new OpLogger(this.data, this.opLogWritter)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db",
3
- "version": "0.9.151",
3
+ "version": "0.9.153",
4
4
  "description": "Database with observable data for live queries",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,8 +22,8 @@
22
22
  "type": "module",
23
23
  "homepage": "https://github.com/live-change/live-change-stack",
24
24
  "devDependencies": {
25
- "@live-change/db-store-level": "^0.9.151",
26
- "@live-change/db-store-lmdb": "^0.9.151",
25
+ "@live-change/db-store-level": "^0.9.153",
26
+ "@live-change/db-store-lmdb": "^0.9.153",
27
27
  "minimist": ">=1.2.3",
28
28
  "next-tick": "^1.1.0",
29
29
  "rimraf": "^5.0.5",
@@ -32,10 +32,10 @@
32
32
  "websocket-extensions": ">=0.1.4"
33
33
  },
34
34
  "dependencies": {
35
- "@live-change/dao": "^0.9.151",
36
- "@live-change/serialization": "^0.9.151",
35
+ "@live-change/dao": "^0.9.153",
36
+ "@live-change/serialization": "^0.9.153",
37
37
  "get-random-values": "^1.2.2",
38
38
  "node-interval-tree": "^1.3.3"
39
39
  },
40
- "gitHead": "fc651f29bda6bd97ad2caaa09dcb3663392e05ed"
40
+ "gitHead": "31c515ccfe3920dd19251f1452e416b4cd29d1fe"
41
41
  }