@salesforce/core 3.20.1 → 3.20.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 +6 -0
- package/lib/org/authInfo.js +2 -1
- 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.20.2](https://github.com/forcedotcom/sfdx-core/compare/v3.20.1...v3.20.2) (2022-06-13)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- instanceUrl config now using org-instance-url ([54cb450](https://github.com/forcedotcom/sfdx-core/commit/54cb450c53f3db5352d9f0fdb83d33dce1da728e))
|
|
10
|
+
|
|
5
11
|
### [3.20.1](https://github.com/forcedotcom/sfdx-core/compare/v3.19.5...v3.20.1) (2022-06-08)
|
|
6
12
|
|
|
7
13
|
### Features
|
package/lib/org/authInfo.js
CHANGED
|
@@ -562,7 +562,8 @@ class AuthInfo extends kit_1.AsyncOptionalCreatable {
|
|
|
562
562
|
}
|
|
563
563
|
}
|
|
564
564
|
getInstanceUrl(options, aggregator) {
|
|
565
|
-
const instanceUrl = (0, ts_types_1.getString)(options, 'instanceUrl') ||
|
|
565
|
+
const instanceUrl = (0, ts_types_1.getString)(options, 'instanceUrl') ||
|
|
566
|
+
aggregator.getPropertyValue(orgConfigProperties_1.OrgConfigProperties.ORG_INSTANCE_URL);
|
|
566
567
|
return instanceUrl || sfdcUrl_1.SfdcUrl.PRODUCTION;
|
|
567
568
|
}
|
|
568
569
|
/**
|