@abtnode/core 1.6.13 → 1.6.17
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/blocklet/manager/disk.js +397 -99
- package/lib/event.js +1 -1
- package/lib/index.js +3 -10
- package/lib/migrations/1.6.17-blocklet-children.js +48 -0
- package/lib/router/helper.js +27 -13
- package/lib/router/manager.js +64 -42
- package/lib/states/blocklet-extras.js +39 -3
- package/lib/states/blocklet.js +18 -20
- package/lib/states/node.js +18 -2
- package/lib/util/blocklet.js +276 -68
- package/lib/util/default-node-config.js +1 -1
- package/lib/util/router.js +13 -0
- package/lib/validators/node.js +11 -12
- package/lib/validators/permission.js +16 -1
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.6.
|
|
6
|
+
"version": "1.6.17",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,28 +19,28 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/certificate-manager": "1.6.
|
|
23
|
-
"@abtnode/constant": "1.6.
|
|
24
|
-
"@abtnode/cron": "1.6.
|
|
25
|
-
"@abtnode/db": "1.6.
|
|
26
|
-
"@abtnode/logger": "1.6.
|
|
27
|
-
"@abtnode/queue": "1.6.
|
|
28
|
-
"@abtnode/rbac": "1.6.
|
|
29
|
-
"@abtnode/router-provider": "1.6.
|
|
30
|
-
"@abtnode/static-server": "1.6.
|
|
31
|
-
"@abtnode/timemachine": "1.6.
|
|
32
|
-
"@abtnode/util": "1.6.
|
|
33
|
-
"@arcblock/did": "^1.
|
|
34
|
-
"@arcblock/event-hub": "1.
|
|
22
|
+
"@abtnode/certificate-manager": "1.6.17",
|
|
23
|
+
"@abtnode/constant": "1.6.17",
|
|
24
|
+
"@abtnode/cron": "1.6.17",
|
|
25
|
+
"@abtnode/db": "1.6.17",
|
|
26
|
+
"@abtnode/logger": "1.6.17",
|
|
27
|
+
"@abtnode/queue": "1.6.17",
|
|
28
|
+
"@abtnode/rbac": "1.6.17",
|
|
29
|
+
"@abtnode/router-provider": "1.6.17",
|
|
30
|
+
"@abtnode/static-server": "1.6.17",
|
|
31
|
+
"@abtnode/timemachine": "1.6.17",
|
|
32
|
+
"@abtnode/util": "1.6.17",
|
|
33
|
+
"@arcblock/did": "^1.14.8",
|
|
34
|
+
"@arcblock/event-hub": "1.14.8",
|
|
35
35
|
"@arcblock/pm2-events": "^0.0.5",
|
|
36
|
-
"@arcblock/vc": "^1.
|
|
37
|
-
"@blocklet/meta": "1.6.
|
|
36
|
+
"@arcblock/vc": "^1.14.8",
|
|
37
|
+
"@blocklet/meta": "1.6.17",
|
|
38
38
|
"@fidm/x509": "^1.2.1",
|
|
39
39
|
"@nedb/core": "^1.2.2",
|
|
40
40
|
"@nedb/multi": "^1.2.2",
|
|
41
|
-
"@ocap/mcrypto": "^1.
|
|
42
|
-
"@ocap/util": "^1.
|
|
43
|
-
"@ocap/wallet": "^1.
|
|
41
|
+
"@ocap/mcrypto": "^1.14.8",
|
|
42
|
+
"@ocap/util": "^1.14.8",
|
|
43
|
+
"@ocap/wallet": "^1.14.8",
|
|
44
44
|
"@slack/webhook": "^5.0.3",
|
|
45
45
|
"axios": "^0.21.4",
|
|
46
46
|
"axon": "^2.0.3",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"js-yaml": "^3.14.0",
|
|
58
58
|
"lodash": "^4.17.21",
|
|
59
59
|
"lru-cache": "^6.0.0",
|
|
60
|
-
"pm2": "^
|
|
60
|
+
"pm2": "^5.1.2",
|
|
61
61
|
"semver": "^7.3.2",
|
|
62
62
|
"shelljs": "^0.8.4",
|
|
63
63
|
"slugify": "^1.4.6",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"express": "^4.17.1",
|
|
76
76
|
"jest": "^27.4.5"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "d567a622a779eba43c95eaeb4633cb2b276bb7b9"
|
|
79
79
|
}
|