@salesforce/core 8.0.3 → 8.0.5
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/config/config.js +1 -1
- package/package.json +2 -2
package/lib/config/config.js
CHANGED
|
@@ -495,7 +495,7 @@ class Config extends configFile_1.ConfigFile {
|
|
|
495
495
|
const crypto = (0, ts_types_1.ensure)(this.crypto);
|
|
496
496
|
this.forEach((key, value) => {
|
|
497
497
|
if (this.getPropertyConfig(key).encrypted && (0, ts_types_1.isString)(value)) {
|
|
498
|
-
|
|
498
|
+
super.set(key, (0, ts_types_1.ensure)(encrypt ? crypto.encrypt(value) : crypto.decrypt(value)));
|
|
499
499
|
}
|
|
500
500
|
});
|
|
501
501
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.5",
|
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"messageTransformer/messageTransformer.ts"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@jsforce/jsforce-node": "^3.2.
|
|
55
|
+
"@jsforce/jsforce-node": "^3.2.1",
|
|
56
56
|
"@salesforce/kit": "^3.1.6",
|
|
57
57
|
"@salesforce/schemas": "^1.9.0",
|
|
58
58
|
"@salesforce/ts-types": "^2.0.10",
|