@salesforce/core 3.15.2 → 3.15.3

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.
@@ -334,7 +334,9 @@ class SfdxConfigAggregator extends ConfigAggregator {
334
334
  return super.getPropertyValue(this.translate(key));
335
335
  }
336
336
  getInfo(key) {
337
- return super.getInfo(this.translate(key));
337
+ const info = super.getInfo(this.translate(key));
338
+ info.key = this.translate(info.key, 'toOld');
339
+ return info;
338
340
  }
339
341
  getLocation(key) {
340
342
  return super.getLocation(this.translate(key));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.15.2",
3
+ "version": "3.15.3",
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",