@salesforce/core 3.26.1 → 3.26.2
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 +2 -0
- package/lib/org/scratchOrgInfoApi.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
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.26.2](https://github.com/forcedotcom/sfdx-core/compare/v3.26.1...v3.26.2) (2022-08-16)
|
|
6
|
+
|
|
5
7
|
### [3.26.1](https://github.com/forcedotcom/sfdx-core/compare/v3.26.0...v3.26.1) (2022-08-08)
|
|
6
8
|
|
|
7
9
|
### Bug Fixes
|
|
@@ -234,6 +234,9 @@ const requestScratchOrgCreation = async (hubOrg, scratchOrgRequest, settings) =>
|
|
|
234
234
|
throw new sfError_1.SfError(messages.getMessage('DeprecatedPrefFormat'));
|
|
235
235
|
}
|
|
236
236
|
const scratchOrgInfo = (0, mapKeys_1.default)(scratchOrgRequest, kit_1.upperFirst, true);
|
|
237
|
+
if (typeof scratchOrgInfo.Username === 'string') {
|
|
238
|
+
scratchOrgInfo.Username = scratchOrgInfo.Username.toLowerCase();
|
|
239
|
+
}
|
|
237
240
|
await checkOrgDoesntExist(scratchOrgInfo); // throw if it does exist.
|
|
238
241
|
try {
|
|
239
242
|
await (0, scratchOrgLifecycleEvents_1.emit)({ stage: 'send request' });
|