@live-change/db-store-indexeddb 0.9.105 → 0.9.106

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/Store.js +1 -1
  2. package/package.json +4 -4
package/lib/Store.js CHANGED
@@ -355,7 +355,7 @@ class Store {
355
355
  async openDb() {
356
356
  console.log("Opening db", this.dbName, this.storeName)
357
357
  const openRequest = globalThis.indexedDB.open(this.idbName, 1)
358
- globalThis.lastOpenRequest = openRequest
358
+ //globalThis.lastOpenRequest = openRequest
359
359
  this.dbPromise = handleRequest(openRequest, (event) => {
360
360
  //console.error("Upgrading db", this.dbName, this.storeName)
361
361
  const db = event.target.result
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db-store-indexeddb",
3
- "version": "0.9.105",
3
+ "version": "0.9.106",
4
4
  "description": "Database with observable data for live queries",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,9 +26,9 @@
26
26
  "tape": "^5.7.4"
27
27
  },
28
28
  "dependencies": {
29
- "@live-change/dao": "^0.9.105",
30
- "@live-change/flatten-interval-tree": "^0.9.105",
29
+ "@live-change/dao": "^0.9.106",
30
+ "@live-change/flatten-interval-tree": "^0.9.106",
31
31
  "broadcast-channel": "^4.2.0"
32
32
  },
33
- "gitHead": "e96d52126ea0b5af39ecf6d4ea5120c0ec58346d"
33
+ "gitHead": "1afc853b9044a57046dae972df68d89c8c1cd1a6"
34
34
  }