@live-change/backup-service 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/clear.js +0 -1
  2. package/package.json +4 -4
package/clear.js CHANGED
@@ -64,7 +64,6 @@ const clearQuery = `${async (input, output, { tableName, bucket, before }) => {
64
64
  const range = { limit: bucket, lt: before }
65
65
  const pointers = await indexReader.rangeGet(range)
66
66
  for(const pointer of pointers) {
67
- output.debug("CLEAR QUERY DELETE", tableName, pointer)
68
67
  await tableWriter.delete(pointer.to)
69
68
  }
70
69
  await output.put({ count: pointers.length })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/backup-service",
3
- "version": "0.9.105",
3
+ "version": "0.9.106",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,14 +9,14 @@
9
9
  "author": "Michał Łaszczewski <michal@emikse.com>",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
- "@live-change/db-client": "^0.9.105",
13
- "@live-change/framework": "^0.9.105",
12
+ "@live-change/db-client": "^0.9.106",
13
+ "@live-change/framework": "^0.9.106",
14
14
  "express": "^4.18.2",
15
15
  "express-basic-auth": "^1.2.1",
16
16
  "fs-extra": "^11.1.1",
17
17
  "p-queue": "8.1.0",
18
18
  "progress-stream": "^2.0.0"
19
19
  },
20
- "gitHead": "e96d52126ea0b5af39ecf6d4ea5120c0ec58346d",
20
+ "gitHead": "1afc853b9044a57046dae972df68d89c8c1cd1a6",
21
21
  "type": "module"
22
22
  }