@abtnode/core 1.8.65-beta-f7af64a4 → 1.8.65-beta-bfcc12ce
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/downloader/blocklet-downloader.js +33 -12
- package/lib/blocklet/manager/disk.js +163 -93
- package/lib/blocklet/manager/helper/install-from-backup.js +11 -4
- package/lib/blocklet/manager/helper/rollback-cache.js +41 -0
- package/lib/blocklet/storage/backup/blocklet-extras.js +4 -0
- package/lib/blocklet/storage/backup/blocklets.js +23 -29
- package/lib/blocklet/storage/backup/data.js +2 -2
- package/lib/blocklet/storage/backup/logs.js +3 -2
- package/lib/blocklet/storage/backup/spaces.js +3 -14
- package/lib/blocklet/storage/restore/blocklet-extras.js +8 -3
- package/lib/blocklet/storage/restore/blocklets.js +29 -11
- package/lib/blocklet/storage/restore/logs.js +21 -0
- package/lib/blocklet/storage/restore/spaces.js +6 -1
- package/lib/blocklet/storage/utils/hash.js +51 -0
- package/lib/blocklet/storage/utils/zip.js +43 -0
- package/lib/router/helper.js +64 -12
- package/lib/router/index.js +4 -0
- package/lib/states/blocklet.js +2 -2
- package/lib/util/blocklet.js +1 -1
- package/package.json +27 -25
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.8.65-beta-
|
|
6
|
+
"version": "1.8.65-beta-bfcc12ce",
|
|
7
7
|
"description": "",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -19,33 +19,33 @@
|
|
|
19
19
|
"author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@abtnode/auth": "1.8.65-beta-
|
|
23
|
-
"@abtnode/certificate-manager": "1.8.65-beta-
|
|
24
|
-
"@abtnode/constant": "1.8.65-beta-
|
|
25
|
-
"@abtnode/cron": "1.8.65-beta-
|
|
26
|
-
"@abtnode/db": "1.8.65-beta-
|
|
27
|
-
"@abtnode/logger": "1.8.65-beta-
|
|
28
|
-
"@abtnode/queue": "1.8.65-beta-
|
|
29
|
-
"@abtnode/rbac": "1.8.65-beta-
|
|
30
|
-
"@abtnode/router-provider": "1.8.65-beta-
|
|
31
|
-
"@abtnode/static-server": "1.8.65-beta-
|
|
32
|
-
"@abtnode/timemachine": "1.8.65-beta-
|
|
33
|
-
"@abtnode/util": "1.8.65-beta-
|
|
34
|
-
"@arcblock/did": "1.18.
|
|
22
|
+
"@abtnode/auth": "1.8.65-beta-bfcc12ce",
|
|
23
|
+
"@abtnode/certificate-manager": "1.8.65-beta-bfcc12ce",
|
|
24
|
+
"@abtnode/constant": "1.8.65-beta-bfcc12ce",
|
|
25
|
+
"@abtnode/cron": "1.8.65-beta-bfcc12ce",
|
|
26
|
+
"@abtnode/db": "1.8.65-beta-bfcc12ce",
|
|
27
|
+
"@abtnode/logger": "1.8.65-beta-bfcc12ce",
|
|
28
|
+
"@abtnode/queue": "1.8.65-beta-bfcc12ce",
|
|
29
|
+
"@abtnode/rbac": "1.8.65-beta-bfcc12ce",
|
|
30
|
+
"@abtnode/router-provider": "1.8.65-beta-bfcc12ce",
|
|
31
|
+
"@abtnode/static-server": "1.8.65-beta-bfcc12ce",
|
|
32
|
+
"@abtnode/timemachine": "1.8.65-beta-bfcc12ce",
|
|
33
|
+
"@abtnode/util": "1.8.65-beta-bfcc12ce",
|
|
34
|
+
"@arcblock/did": "1.18.42",
|
|
35
35
|
"@arcblock/did-motif": "^1.1.10",
|
|
36
|
-
"@arcblock/did-util": "1.18.
|
|
37
|
-
"@arcblock/event-hub": "1.18.
|
|
38
|
-
"@arcblock/jwt": "^1.18.
|
|
36
|
+
"@arcblock/did-util": "1.18.42",
|
|
37
|
+
"@arcblock/event-hub": "1.18.42",
|
|
38
|
+
"@arcblock/jwt": "^1.18.42",
|
|
39
39
|
"@arcblock/pm2-events": "^0.0.5",
|
|
40
|
-
"@arcblock/vc": "1.18.
|
|
41
|
-
"@blocklet/constant": "1.8.65-beta-
|
|
42
|
-
"@blocklet/meta": "1.8.65-beta-
|
|
43
|
-
"@blocklet/sdk": "1.8.65-beta-
|
|
40
|
+
"@arcblock/vc": "1.18.42",
|
|
41
|
+
"@blocklet/constant": "1.8.65-beta-bfcc12ce",
|
|
42
|
+
"@blocklet/meta": "1.8.65-beta-bfcc12ce",
|
|
43
|
+
"@blocklet/sdk": "1.8.65-beta-bfcc12ce",
|
|
44
44
|
"@did-space/client": "^0.1.66",
|
|
45
45
|
"@fidm/x509": "^1.2.1",
|
|
46
|
-
"@ocap/mcrypto": "1.18.
|
|
47
|
-
"@ocap/util": "1.18.
|
|
48
|
-
"@ocap/wallet": "1.18.
|
|
46
|
+
"@ocap/mcrypto": "1.18.42",
|
|
47
|
+
"@ocap/util": "1.18.42",
|
|
48
|
+
"@ocap/wallet": "1.18.42",
|
|
49
49
|
"@slack/webhook": "^5.0.4",
|
|
50
50
|
"archiver": "^5.3.1",
|
|
51
51
|
"axios": "^0.27.2",
|
|
@@ -55,9 +55,11 @@
|
|
|
55
55
|
"deep-diff": "^1.0.2",
|
|
56
56
|
"detect-port": "^1.5.1",
|
|
57
57
|
"escape-string-regexp": "^4.0.0",
|
|
58
|
+
"fast-glob": "^3.2.12",
|
|
58
59
|
"flat": "^5.0.2",
|
|
59
60
|
"fs-extra": "^11.1.0",
|
|
60
61
|
"get-port": "^5.1.1",
|
|
62
|
+
"hasha": "^5.2.2",
|
|
61
63
|
"is-base64": "^1.1.0",
|
|
62
64
|
"is-ip": "^3.1.0",
|
|
63
65
|
"is-url": "^1.2.4",
|
|
@@ -88,5 +90,5 @@
|
|
|
88
90
|
"express": "^4.18.2",
|
|
89
91
|
"jest": "^27.5.1"
|
|
90
92
|
},
|
|
91
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "f6a56512275a55feecf2f3953542ea98777a08f2"
|
|
92
94
|
}
|