@abtnode/core 1.6.31 → 1.7.0
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/util/blocklet.js +1 -1
- package/package.json +20 -20
package/lib/util/blocklet.js
CHANGED
|
@@ -338,7 +338,7 @@ const getRuntimeEnvironments = (blocklet, nodeEnvironments, parent) => {
|
|
|
338
338
|
const getSharedConfigs = (child, parent) => {
|
|
339
339
|
const sharedConfigs = {};
|
|
340
340
|
if (parent && Array.isArray(parent.configs) && child.meta.did !== parent.meta.did) {
|
|
341
|
-
const parentKeys = parent.configs.filter((x) => x.secure === false).map((x) => x.key);
|
|
341
|
+
const parentKeys = parent.configs.filter((x) => x.secure === false && x.shared !== false).map((x) => x.key);
|
|
342
342
|
const childKeys = child.configs.map((x) => x.key);
|
|
343
343
|
const sharedKeys = intersection(parentKeys, childKeys);
|
|
344
344
|
sharedKeys.forEach((key) => {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.7.0",
|
|
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.
|
|
23
|
-
"@abtnode/constant": "1.
|
|
24
|
-
"@abtnode/cron": "1.
|
|
25
|
-
"@abtnode/db": "1.
|
|
26
|
-
"@abtnode/logger": "1.
|
|
27
|
-
"@abtnode/queue": "1.
|
|
28
|
-
"@abtnode/rbac": "1.
|
|
29
|
-
"@abtnode/router-provider": "1.
|
|
30
|
-
"@abtnode/static-server": "1.
|
|
31
|
-
"@abtnode/timemachine": "1.
|
|
32
|
-
"@abtnode/util": "1.
|
|
33
|
-
"@arcblock/did": "^1.14.
|
|
34
|
-
"@arcblock/event-hub": "1.14.
|
|
22
|
+
"@abtnode/certificate-manager": "1.7.0",
|
|
23
|
+
"@abtnode/constant": "1.7.0",
|
|
24
|
+
"@abtnode/cron": "1.7.0",
|
|
25
|
+
"@abtnode/db": "1.7.0",
|
|
26
|
+
"@abtnode/logger": "1.7.0",
|
|
27
|
+
"@abtnode/queue": "1.7.0",
|
|
28
|
+
"@abtnode/rbac": "1.7.0",
|
|
29
|
+
"@abtnode/router-provider": "1.7.0",
|
|
30
|
+
"@abtnode/static-server": "1.7.0",
|
|
31
|
+
"@abtnode/timemachine": "1.7.0",
|
|
32
|
+
"@abtnode/util": "1.7.0",
|
|
33
|
+
"@arcblock/did": "^1.14.25",
|
|
34
|
+
"@arcblock/event-hub": "1.14.25",
|
|
35
35
|
"@arcblock/pm2-events": "^0.0.5",
|
|
36
|
-
"@arcblock/vc": "^1.14.
|
|
37
|
-
"@blocklet/meta": "1.
|
|
36
|
+
"@arcblock/vc": "^1.14.25",
|
|
37
|
+
"@blocklet/meta": "1.7.0",
|
|
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.14.
|
|
42
|
-
"@ocap/util": "^1.14.
|
|
43
|
-
"@ocap/wallet": "^1.14.
|
|
41
|
+
"@ocap/mcrypto": "^1.14.25",
|
|
42
|
+
"@ocap/util": "^1.14.25",
|
|
43
|
+
"@ocap/wallet": "^1.14.25",
|
|
44
44
|
"@slack/webhook": "^5.0.3",
|
|
45
45
|
"ajv": "^7.0.3",
|
|
46
46
|
"axios": "^0.25.0",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"express": "^4.17.1",
|
|
78
78
|
"jest": "^27.4.5"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "fc949a5e8a1017fbe17533d3bd78b166c7dad132"
|
|
81
81
|
}
|