@live-change/db 0.9.45 → 0.9.46
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.
- package/lib/Database.js +2 -1
- package/package.json +5 -5
package/lib/Database.js
CHANGED
|
@@ -285,7 +285,8 @@ class Database {
|
|
|
285
285
|
|
|
286
286
|
handleUnhandledRejectionInIndex(name, reason) {
|
|
287
287
|
const config = this.config.indexes[name]
|
|
288
|
-
console.error("INDEX", name, "unhandledRejection", reason, "CODE:\n", config?.code
|
|
288
|
+
console.error("INDEX", name, "unhandledRejection", reason, "CODE:\n", config?.code,
|
|
289
|
+
"\nPARAMS:\n", config?.parameters, "\nSTACK:\n", reason.stack, "\nPROMISE:\n", reason.promise)
|
|
289
290
|
console.error("DELETING INDEX", name)
|
|
290
291
|
const index = this.indexes.get(name)
|
|
291
292
|
if(index) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.46",
|
|
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.
|
|
26
|
-
"@live-change/db-store-lmdb": "^0.9.
|
|
25
|
+
"@live-change/db-store-level": "^0.9.46",
|
|
26
|
+
"@live-change/db-store-lmdb": "^0.9.46",
|
|
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.
|
|
35
|
+
"@live-change/dao": "^0.9.46",
|
|
36
36
|
"get-random-values": "^1.2.2",
|
|
37
37
|
"node-interval-tree": "^1.3.3"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "9d2fe9cbfb28f6cd389c8cbc5cf051f583f58e9e"
|
|
40
40
|
}
|