@live-change/db 0.9.80 → 0.9.81

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/Index.js +1 -1
  2. package/package.json +5 -5
package/lib/Index.js CHANGED
@@ -170,7 +170,7 @@ class TableReader extends ChangeStream {
170
170
  if(profileOp) await profileLog.end(profileOp)
171
171
  }
172
172
  async rangeGet(range) {
173
- return await this.table.rangeGet(range)
173
+ return await (await this.table).rangeGet(range)
174
174
  }
175
175
  range(range) {
176
176
  const key = JSON.stringify(range)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db",
3
- "version": "0.9.80",
3
+ "version": "0.9.81",
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.80",
26
- "@live-change/db-store-lmdb": "^0.9.80",
25
+ "@live-change/db-store-level": "^0.9.81",
26
+ "@live-change/db-store-lmdb": "^0.9.81",
27
27
  "minimist": ">=1.2.3",
28
28
  "next-tick": "^1.1.0",
29
29
  "rimraf": "^5.0.5",
@@ -32,9 +32,9 @@
32
32
  "websocket-extensions": ">=0.1.4"
33
33
  },
34
34
  "dependencies": {
35
- "@live-change/dao": "^0.9.80",
35
+ "@live-change/dao": "^0.9.81",
36
36
  "get-random-values": "^1.2.2",
37
37
  "node-interval-tree": "^1.3.3"
38
38
  },
39
- "gitHead": "8c4e9d0d1415c8805f0a56dbef07d7b8333632a4"
39
+ "gitHead": "d70a8bdf4d60b7826576d477b9dff5714c31763d"
40
40
  }