@salesforce/core 3.25.0 → 3.25.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 +6 -0
- package/lib/config/config.js +7 -0
- package/lib/org/orgConfigProperties.js +5 -0
- package/messages/config.md +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.25.1](https://github.com/forcedotcom/sfdx-core/compare/v3.25.0...v3.25.1) (2022-08-03)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- add interop between templates config/env var ([eea3d05](https://github.com/forcedotcom/sfdx-core/commit/eea3d055b75ceb61639e06bc53e309a01f70a8e2))
|
|
10
|
+
|
|
5
11
|
## [3.25.0](https://github.com/forcedotcom/sfdx-core/compare/v3.24.5...v3.25.0) (2022-07-29)
|
|
6
12
|
|
|
7
13
|
### Features
|
package/lib/config/config.js
CHANGED
|
@@ -40,6 +40,7 @@ const messages = messages_1.Messages.load('@salesforce/core', 'config', [
|
|
|
40
40
|
'restDeploy',
|
|
41
41
|
'instanceUrl',
|
|
42
42
|
'disable-telemetry',
|
|
43
|
+
'customOrgMetadataTemplates',
|
|
43
44
|
]);
|
|
44
45
|
const SFDX_CONFIG_FILE_NAME = 'sfdx-config.json';
|
|
45
46
|
const CONFIG_FILE_NAME = 'config.json';
|
|
@@ -200,6 +201,12 @@ exports.SFDX_ALLOWED_PROPERTIES = [
|
|
|
200
201
|
failedMessage: messages.getMessage('invalidBooleanConfigValue'),
|
|
201
202
|
},
|
|
202
203
|
},
|
|
204
|
+
{
|
|
205
|
+
key: SfdxPropertyKeys.CUSTOM_ORG_METADATA_TEMPLATES,
|
|
206
|
+
newKey: orgConfigProperties_1.OrgConfigProperties.ORG_CUSTOM_METADATA_TEMPLATES,
|
|
207
|
+
deprecated: true,
|
|
208
|
+
description: messages.getMessage(SfdxPropertyKeys.CUSTOM_ORG_METADATA_TEMPLATES),
|
|
209
|
+
},
|
|
203
210
|
{
|
|
204
211
|
key: SfdxPropertyKeys.REST_DEPLOY,
|
|
205
212
|
description: messages.getMessage(SfdxPropertyKeys.REST_DEPLOY),
|
|
@@ -27,6 +27,7 @@ const messages = messages_1.Messages.load('@salesforce/core', 'config', [
|
|
|
27
27
|
'org-max-query-limit',
|
|
28
28
|
'target-dev-hub',
|
|
29
29
|
'target-org',
|
|
30
|
+
'org-custom-metadata-templates',
|
|
30
31
|
]);
|
|
31
32
|
var OrgConfigProperties;
|
|
32
33
|
(function (OrgConfigProperties) {
|
|
@@ -64,6 +65,10 @@ var OrgConfigProperties;
|
|
|
64
65
|
OrgConfigProperties["ORG_ISV_DEBUGGER_URL"] = "org-isv-debugger-url";
|
|
65
66
|
})(OrgConfigProperties = exports.OrgConfigProperties || (exports.OrgConfigProperties = {}));
|
|
66
67
|
exports.ORG_CONFIG_ALLOWED_PROPERTIES = [
|
|
68
|
+
{
|
|
69
|
+
key: OrgConfigProperties.ORG_CUSTOM_METADATA_TEMPLATES,
|
|
70
|
+
description: messages.getMessage(OrgConfigProperties.ORG_CUSTOM_METADATA_TEMPLATES),
|
|
71
|
+
},
|
|
67
72
|
{
|
|
68
73
|
key: OrgConfigProperties.TARGET_ORG,
|
|
69
74
|
description: messages.getMessage(OrgConfigProperties.TARGET_ORG),
|
package/messages/config.md
CHANGED
|
@@ -142,3 +142,11 @@ URL of the Salesforce instance hosting your org. Default: https://login.salesfor
|
|
|
142
142
|
# org-instance-url
|
|
143
143
|
|
|
144
144
|
URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com.
|
|
145
|
+
|
|
146
|
+
# customOrgMetadataTemplates
|
|
147
|
+
|
|
148
|
+
A valid repository URL or directory for the custom org metadata templates.
|
|
149
|
+
|
|
150
|
+
# org-custom-metadata-templates
|
|
151
|
+
|
|
152
|
+
A valid repository URL or directory for the custom org metadata templates.
|