@salesforce/core 3.22.0 → 3.22.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.22.1](https://github.com/forcedotcom/sfdx-core/compare/v3.22.0...v3.22.1) (2022-06-28)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- encrypted key regex tests will no longer be stateful ([06b7fa2](https://github.com/forcedotcom/sfdx-core/commit/06b7fa2f41401155b472c84f13cbf5608150a43e))
|
|
10
|
+
- update dev-scripts so yarn build won't change line endings for LICENSE.txt on Windows ([ec5e48e](https://github.com/forcedotcom/sfdx-core/commit/ec5e48ee1dab2b3999f630aa56c53d353baa717e))
|
|
11
|
+
|
|
5
12
|
## [3.22.0](https://github.com/forcedotcom/sfdx-core/compare/v3.21.6...v3.22.0) (2022-06-23)
|
|
6
13
|
|
|
7
14
|
### Features
|
|
@@ -346,5 +346,6 @@ class BaseConfigStore extends kit_1.AsyncOptionalCreatable {
|
|
|
346
346
|
}
|
|
347
347
|
}
|
|
348
348
|
exports.BaseConfigStore = BaseConfigStore;
|
|
349
|
+
// If encryptedKeys is an array of RegExps, they should not contain the /g (global) or /y (sticky) flags to avoid stateful issues.
|
|
349
350
|
BaseConfigStore.encryptedKeys = [];
|
|
350
351
|
//# sourceMappingURL=configStore.js.map
|
|
@@ -24,5 +24,5 @@ class TokensConfig extends configFile_1.ConfigFile {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
exports.TokensConfig = TokensConfig;
|
|
27
|
-
TokensConfig.encryptedKeys = [/token/
|
|
27
|
+
TokensConfig.encryptedKeys = [/token/i, /password/i, /secret/i];
|
|
28
28
|
//# sourceMappingURL=tokensConfig.js.map
|
|
@@ -103,7 +103,7 @@ class GlobalInfo extends configFile_1.ConfigFile {
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
exports.GlobalInfo = GlobalInfo;
|
|
106
|
-
GlobalInfo.encryptedKeys = [/token/
|
|
106
|
+
GlobalInfo.encryptedKeys = [/token/i, /password/i, /secret/i];
|
|
107
107
|
GlobalInfo.EMPTY_DATA_MODEL = {
|
|
108
108
|
[types_1.SfInfoKeys.ORGS]: {},
|
|
109
109
|
[types_1.SfInfoKeys.TOKENS]: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "3.22.
|
|
3
|
+
"version": "3.22.1",
|
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
|
5
5
|
"main": "lib/exported",
|
|
6
6
|
"types": "lib/exported.d.ts",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@salesforce/dev-config": "^3.0.1",
|
|
59
|
-
"@salesforce/dev-scripts": "^2.0.
|
|
59
|
+
"@salesforce/dev-scripts": "^2.0.3",
|
|
60
60
|
"@salesforce/prettier-config": "^0.0.2",
|
|
61
61
|
"@salesforce/ts-sinon": "^1.3.21",
|
|
62
62
|
"@types/archiver": "^5.3.1",
|