@iobroker/db-objects-jsonl 1.2.6 → 4.0.0-alpha.11-20211118-e40274a2

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/README.md CHANGED
@@ -1,6 +1,7 @@
1
- # File objects DB base classes for ioBroker
2
- The Library contains the Database classes for File based objects database client and server.
1
+ # File DB JSONL objects classes for ioBroker
2
+ The Library contains the JSONL Database classes for File based objects database client and server.
3
3
 
4
4
  ## License
5
- Apache 2.0
6
- Copyright 2018-2020 bluefox <dogafox@gmail.com>
5
+ The MIT License (MIT)
6
+
7
+ Copyright 2018-2021 bluefox <dogafox@gmail.com>
@@ -33,8 +33,7 @@ class ObjectsInMemoryJsonlDB extends ObjectsInMemoryFileDB {
33
33
  const jsonlOptions = {
34
34
  autoCompress: {
35
35
  sizeFactor: 2,
36
- sizeFactorMinimumSize: 1000,
37
- onOpen: true
36
+ sizeFactorMinimumSize: 25000
38
37
  },
39
38
  ignoreReadErrors: true,
40
39
  throttleFS: {
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@iobroker/db-objects-jsonl",
3
- "version": "1.2.6",
3
+ "version": "4.0.0-alpha.11-20211118-e40274a2",
4
4
  "engines": {
5
- "node": ">=10.0.0"
5
+ "node": ">=12.0.0"
6
6
  },
7
7
  "dependencies": {
8
- "@alcalzone/jsonl-db": "^1.2.4",
9
- "@iobroker/db-base": "1.2.4",
10
- "@iobroker/db-objects-file": "1.2.6",
11
- "@iobroker/db-objects-redis": "1.2.6",
8
+ "@alcalzone/jsonl-db": "^2.2.0",
9
+ "@iobroker/db-base": "4.0.0-alpha.11-20211118-e40274a2",
10
+ "@iobroker/db-objects-file": "4.0.0-alpha.11-20211118-e40274a2",
11
+ "@iobroker/db-objects-redis": "4.0.0-alpha.11-20211118-e40274a2",
12
12
  "deep-clone": "^3.0.3",
13
- "fs-extra": "^9.1.0",
13
+ "fs-extra": "^10.0.0",
14
14
  "node.extend": "^2.0.2"
15
15
  },
16
16
  "keywords": [
@@ -22,11 +22,11 @@
22
22
  "contributors": [
23
23
  "bluefox <dogafox@gmail.com>",
24
24
  "Apollon77 <iobroker@fischer-ka.de>",
25
- "foxriver76"
25
+ "foxriver76 <moritz.heusinger@gmail.com>"
26
26
  ],
27
27
  "repository": {
28
28
  "type": "git",
29
- "url": "https://github.com/ioBroker/ioBroker.objects-redis"
29
+ "url": "https://github.com/ioBroker/ioBroker.js-controller/packages/db-objects-jsonl"
30
30
  },
31
31
  "scripts": {},
32
32
  "main": "index.js",
@@ -34,5 +34,9 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "20816e582c8b92a9eb9f4bf7e90d12cba566a143"
37
+ "files": [
38
+ "lib/",
39
+ "index.js"
40
+ ],
41
+ "gitHead": "077e48fdd1ea959e255de613bcd88f6a4cfd9dc5"
38
42
  }