@onlineapps/service-wrapper 3.2.0 → 3.2.1
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/package.json +6 -6
- package/src/ServiceWrapper.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onlineapps/service-wrapper",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Thin orchestration layer for microservices - delegates all infrastructure concerns to specialized connectors",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@onlineapps/conn-base-cache": "1.0.9",
|
|
28
|
-
"@onlineapps/conn-base-monitoring": "1.0.
|
|
28
|
+
"@onlineapps/conn-base-monitoring": "1.0.13",
|
|
29
29
|
"@onlineapps/conn-base-state": "1.0.1",
|
|
30
|
-
"@onlineapps/conn-infra-error-handler": "1.0.
|
|
30
|
+
"@onlineapps/conn-infra-error-handler": "1.0.12",
|
|
31
31
|
"@onlineapps/conn-infra-mq": "1.1.70",
|
|
32
32
|
"@onlineapps/conn-infra-secrets": "1.0.0",
|
|
33
33
|
"@onlineapps/conn-orch-cookbook": "2.1.3",
|
|
34
|
-
"@onlineapps/conn-orch-orchestrator": "2.1.
|
|
34
|
+
"@onlineapps/conn-orch-orchestrator": "2.1.1",
|
|
35
35
|
"@onlineapps/conn-orch-registry": "1.2.1",
|
|
36
36
|
"@onlineapps/conn-orch-validator": "3.1.2",
|
|
37
|
-
"@onlineapps/monitoring-core": "1.0.
|
|
37
|
+
"@onlineapps/monitoring-core": "1.0.24",
|
|
38
38
|
"@onlineapps/runtime-config": "1.0.2",
|
|
39
|
-
"@onlineapps/service-common": "1.1.
|
|
39
|
+
"@onlineapps/service-common": "1.1.3",
|
|
40
40
|
"ajv": "8.17.1",
|
|
41
41
|
"ajv-formats": "3.0.1"
|
|
42
42
|
},
|
package/src/ServiceWrapper.js
CHANGED
|
@@ -1482,7 +1482,7 @@ class ServiceWrapper {
|
|
|
1482
1482
|
|
|
1483
1483
|
/**
|
|
1484
1484
|
* Initialize secrets connector (SecretBox). Resolves ctx.secrets.get(ref) by
|
|
1485
|
-
* reading the encrypted Redis projection written by
|
|
1485
|
+
* reading the encrypted Redis projection written by biz-meta and decrypting
|
|
1486
1486
|
* in-process. Redis reuses wrapper.cache.url (shared api_node_cache); the AES
|
|
1487
1487
|
* master key is required from env (no fallback).
|
|
1488
1488
|
* @private
|