@abtnode/core 1.6.3 → 1.6.7
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/extras.js +26 -1
- package/lib/blocklet/manager/disk.js +126 -131
- package/lib/cert.js +116 -0
- package/lib/index.js +26 -9
- package/lib/migrations/1.6.4-security.js +59 -0
- package/lib/migrations/1.6.5-security.js +60 -0
- package/lib/migrations/1.6.7-certificate.js +30 -0
- package/lib/router/helper.js +99 -107
- package/lib/router/index.js +1 -1
- package/lib/router/manager.js +10 -6
- package/lib/states/base.js +3 -212
- package/lib/states/blocklet-extras.js +20 -15
- package/lib/states/blocklet.js +58 -17
- package/lib/states/index.js +4 -21
- package/lib/states/node.js +9 -3
- package/lib/util/blocklet.js +1 -1
- package/lib/util/index.js +2 -0
- package/package.json +22 -20
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.7",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,26 +19,28 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/
|
|
23
|
-
"@abtnode/
|
|
24
|
-
"@abtnode/
|
|
25
|
-
"@abtnode/
|
|
26
|
-
"@abtnode/
|
|
27
|
-
"@abtnode/
|
|
28
|
-
"@abtnode/
|
|
29
|
-
"@abtnode/
|
|
30
|
-
"@abtnode/
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
22
|
+
"@abtnode/certificate-manager": "1.6.7",
|
|
23
|
+
"@abtnode/constant": "1.6.7",
|
|
24
|
+
"@abtnode/cron": "1.6.7",
|
|
25
|
+
"@abtnode/db": "1.6.7",
|
|
26
|
+
"@abtnode/logger": "1.6.7",
|
|
27
|
+
"@abtnode/queue": "1.6.7",
|
|
28
|
+
"@abtnode/rbac": "1.6.7",
|
|
29
|
+
"@abtnode/router-provider": "1.6.7",
|
|
30
|
+
"@abtnode/static-server": "1.6.7",
|
|
31
|
+
"@abtnode/timemachine": "1.6.7",
|
|
32
|
+
"@abtnode/util": "1.6.7",
|
|
33
|
+
"@arcblock/did": "^1.13.79",
|
|
34
|
+
"@arcblock/event-hub": "1.13.79",
|
|
33
35
|
"@arcblock/pm2-events": "^0.0.5",
|
|
34
|
-
"@arcblock/vc": "^1.13.
|
|
35
|
-
"@blocklet/meta": "1.6.
|
|
36
|
+
"@arcblock/vc": "^1.13.79",
|
|
37
|
+
"@blocklet/meta": "1.6.7",
|
|
36
38
|
"@fidm/x509": "^1.2.1",
|
|
37
39
|
"@nedb/core": "^1.2.2",
|
|
38
40
|
"@nedb/multi": "^1.2.2",
|
|
39
|
-
"@ocap/mcrypto": "^1.13.
|
|
40
|
-
"@ocap/util": "^1.13.
|
|
41
|
-
"@ocap/wallet": "^1.13.
|
|
41
|
+
"@ocap/mcrypto": "^1.13.79",
|
|
42
|
+
"@ocap/util": "^1.13.79",
|
|
43
|
+
"@ocap/wallet": "^1.13.79",
|
|
42
44
|
"@slack/webhook": "^5.0.3",
|
|
43
45
|
"axios": "^0.21.4",
|
|
44
46
|
"axon": "^2.0.3",
|
|
@@ -51,7 +53,7 @@
|
|
|
51
53
|
"is-base64": "^1.1.0",
|
|
52
54
|
"is-ip": "^3.1.0",
|
|
53
55
|
"is-url": "^1.2.4",
|
|
54
|
-
"joi": "^17.
|
|
56
|
+
"joi": "^17.5.0",
|
|
55
57
|
"js-yaml": "^3.14.0",
|
|
56
58
|
"lodash": "^4.17.21",
|
|
57
59
|
"lru-cache": "^6.0.0",
|
|
@@ -71,7 +73,7 @@
|
|
|
71
73
|
"compression": "^1.7.4",
|
|
72
74
|
"expand-tilde": "^2.0.2",
|
|
73
75
|
"express": "^4.17.1",
|
|
74
|
-
"jest": "^27.
|
|
76
|
+
"jest": "^27.4.5"
|
|
75
77
|
},
|
|
76
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "d681c03a398e3c7d4dbc878db93b2ab778dded81"
|
|
77
79
|
}
|