@salesforce/core 3.24.0 → 3.24.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
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.24.3](https://github.com/forcedotcom/sfdx-core/compare/v3.24.2...v3.24.3) (2022-07-28)
6
+
7
+ ### Bug Fixes
8
+
9
+ - handle ancestor keywords when creating scratch org ([72af55a](https://github.com/forcedotcom/sfdx-core/commit/72af55a53b87f1d81d22dc4e53891b3b0ab2966f))
10
+
11
+ ### [3.24.2](https://github.com/forcedotcom/sfdx-core/compare/v3.24.1...v3.24.2) (2022-07-26)
12
+
13
+ ### Bug Fixes
14
+
15
+ - use correct field for clone requests ([#623](https://github.com/forcedotcom/sfdx-core/issues/623)) ([2372f03](https://github.com/forcedotcom/sfdx-core/commit/2372f0364b87a7ac498c8d7ef637a9b5fdc725ea))
16
+
17
+ ### [3.24.1](https://github.com/forcedotcom/sfdx-core/compare/v3.24.0...v3.24.1) (2022-07-21)
18
+
19
+ ### Bug Fixes
20
+
21
+ - bump jsforce ([#622](https://github.com/forcedotcom/sfdx-core/issues/622)) ([c7b53b7](https://github.com/forcedotcom/sfdx-core/commit/c7b53b73977012f81e029a15f39c3fb35bc1041d))
22
+
5
23
  ## [3.24.0](https://github.com/forcedotcom/sfdx-core/compare/v3.23.9...v3.24.0) (2022-07-14)
6
24
 
7
25
  ### Features
package/lib/org/org.d.ts CHANGED
@@ -61,6 +61,7 @@ export declare type SandboxProcessObject = {
61
61
  export declare type SandboxRequest = {
62
62
  SandboxName: string;
63
63
  LicenseType?: string;
64
+ /** Should match a SandboxInfoId, not a SandboxProcessId */
64
65
  SourceId?: string;
65
66
  Description?: string;
66
67
  };
@@ -129,11 +130,11 @@ export declare class Org extends AsyncOptionalCreatable<Org.Options> {
129
130
  /**
130
131
  *
131
132
  * @param sandboxReq SandboxRequest options to create the sandbox with
132
- * @param sandboxName
133
+ * @param sourceSandboxName the name of the sandbox that your new sandbox will be based on
133
134
  * @param options Wait: The amount of time to wait before timing out, defaults to 0, Interval: The time interval between polling defaults to 30 seconds
134
135
  * @returns {SandboxProcessObject} the newly created sandbox process object
135
136
  */
136
- cloneSandbox(sandboxReq: SandboxRequest, sandboxName: string, options: {
137
+ cloneSandbox(sandboxReq: SandboxRequest, sourceSandboxName: string, options: {
137
138
  wait?: Duration;
138
139
  interval?: Duration;
139
140
  }): Promise<SandboxProcessObject>;
package/lib/org/org.js CHANGED
@@ -129,12 +129,12 @@ class Org extends kit_1.AsyncOptionalCreatable {
129
129
  /**
130
130
  *
131
131
  * @param sandboxReq SandboxRequest options to create the sandbox with
132
- * @param sandboxName
132
+ * @param sourceSandboxName the name of the sandbox that your new sandbox will be based on
133
133
  * @param options Wait: The amount of time to wait before timing out, defaults to 0, Interval: The time interval between polling defaults to 30 seconds
134
134
  * @returns {SandboxProcessObject} the newly created sandbox process object
135
135
  */
136
- async cloneSandbox(sandboxReq, sandboxName, options) {
137
- sandboxReq.SourceId = (await this.querySandboxProcessBySandboxName(sandboxName)).Id;
136
+ async cloneSandbox(sandboxReq, sourceSandboxName, options) {
137
+ sandboxReq.SourceId = (await this.querySandboxProcessBySandboxName(sourceSandboxName)).SandboxInfoId;
138
138
  this.logger.debug('Clone sandbox sourceId %s', sandboxReq.SourceId);
139
139
  return this.createSandbox(sandboxReq, options);
140
140
  }
@@ -242,7 +242,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
242
242
  * @ignore
243
243
  */
244
244
  async retrieveOrgUsersConfig() {
245
- return await orgUsersConfig_1.OrgUsersConfig.create(orgUsersConfig_1.OrgUsersConfig.getOptions(this.getOrgId()));
245
+ return orgUsersConfig_1.OrgUsersConfig.create(orgUsersConfig_1.OrgUsersConfig.getOptions(this.getOrgId()));
246
246
  }
247
247
  /**
248
248
  * Cleans up all org related artifacts including users, sandbox config(if a sandbox and auth file.
@@ -269,7 +269,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
269
269
  *
270
270
  */
271
271
  async isSandbox() {
272
- return await (await stateAggregator_1.StateAggregator.getInstance()).sandboxes.hasFile(this.getOrgId());
272
+ return (await stateAggregator_1.StateAggregator.getInstance()).sandboxes.hasFile(this.getOrgId());
273
273
  }
274
274
  /**
275
275
  * Check that this org is a scratch org by asking the dev hub if it knows about it.
@@ -636,7 +636,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
636
636
  * results in a warning.
637
637
  */
638
638
  async retrieveMaxApiVersion() {
639
- return await this.getConnection().retrieveMaxApiVersion();
639
+ return this.getConnection().retrieveMaxApiVersion();
640
640
  }
641
641
  /**
642
642
  * Returns the admin username used to create the org.
@@ -707,7 +707,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
707
707
  * @private
708
708
  */
709
709
  async querySandboxProcessBySandboxName(name) {
710
- return await this.querySandboxProcess(`SandboxName='${name}'`);
710
+ return this.querySandboxProcess(`SandboxName='${name}'`);
711
711
  }
712
712
  /**
713
713
  * query SandboxProcess via SandboxInfoId
@@ -716,7 +716,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
716
716
  * @private
717
717
  */
718
718
  async querySandboxProcessBySandboxInfoId(id) {
719
- return await this.querySandboxProcess(`SandboxInfoId='${id}'`);
719
+ return this.querySandboxProcess(`SandboxInfoId='${id}'`);
720
720
  }
721
721
  /**
722
722
  * query SandboxProcess via Id
@@ -725,7 +725,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
725
725
  * @private
726
726
  */
727
727
  async querySandboxProcessById(id) {
728
- return await this.querySandboxProcess(`Id='${id}'`);
728
+ return this.querySandboxProcess(`Id='${id}'`);
729
729
  }
730
730
  /**
731
731
  * Initialize async components.
@@ -1098,7 +1098,7 @@ class Org extends kit_1.AsyncOptionalCreatable {
1098
1098
  */
1099
1099
  async querySandboxProcess(where) {
1100
1100
  const queryStr = `SELECT Id, Status, SandboxName, SandboxInfoId, LicenseType, CreatedDate, CopyProgress, SandboxOrganization, SourceId, Description, EndDate FROM SandboxProcess WHERE ${where} AND Status != 'D'`;
1101
- return await this.connection.singleRecordQuery(queryStr, {
1101
+ return this.connection.singleRecordQuery(queryStr, {
1102
1102
  tooling: true,
1103
1103
  });
1104
1104
  }
@@ -67,13 +67,34 @@ const getAncestorIds = async (scratchOrgInfo, projectJson, hubOrg) => {
67
67
  const ancestorIds = await Promise.all(packagesWithAncestors.map(async (packageDir) => {
68
68
  // ancestorID can be 05i, or 04t, alias; OR "ancestorVersion": "4.6.0.1"
69
69
  // according to docs, 05i is not ok: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev2gp_config_file.htm
70
+ // package can be an ID, but not according to docs
71
+ const packageAliases = projectJson.get('packageAliases');
72
+ const packageId = packageAliases[(0, ts_types_1.ensureString)(packageDir.package)] ?? packageDir.package;
73
+ // Handle HIGHEST and NONE in ancestor(Version|Id).
74
+ // Precedence chain: NONE -> HIGHEST -> ancestorVersion & ancestoryId
75
+ if (packageDir.ancestorVersion === 'NONE' || packageDir.ancestorId === 'NONE') {
76
+ return '';
77
+ }
78
+ else if (packageDir.ancestorVersion === 'HIGHEST' || packageDir.ancestorId === 'HIGHEST') {
79
+ const query = 'SELECT Id FROM Package2Version ' +
80
+ `WHERE Package2Id = '${packageId}' AND IsReleased = True AND IsDeprecated = False AND PatchVersion = 0 ` +
81
+ 'ORDER BY MajorVersion Desc, MinorVersion Desc, PatchVersion Desc, BuildNumber Desc LIMIT 1';
82
+ try {
83
+ return (await hubOrg.getConnection().singleRecordQuery(query, { tooling: true })).Id;
84
+ }
85
+ catch (err) {
86
+ if (packageDir.ancestorVersion === 'HIGHEST') {
87
+ throw new sfError_1.SfError(messages.getMessage('NoMatchingAncestorError', [packageDir.ancestorVersion, packageDir.package]), 'NoMatchingAncestorError', [messages.getMessage('AncestorNotReleasedError', [packageDir.ancestorVersion])]);
88
+ }
89
+ else {
90
+ throw new sfError_1.SfError(messages.getMessage('NoMatchingAncestorIdError', [packageDir.ancestorId, packageDir.package]), 'NoMatchingAncestorIdError', [messages.getMessage('AncestorNotReleasedError', [packageDir.ancestorId])]);
91
+ }
92
+ }
93
+ }
70
94
  if (packageDir.ancestorVersion) {
71
95
  if (!/^[0-9]+.[0-9]+.[0-9]+(.[0-9]+)?$/.test(packageDir.ancestorVersion)) {
72
96
  throw messages.createError('InvalidAncestorVersionFormatError', [packageDir.ancestorVersion]);
73
97
  }
74
- // package can be an ID, but not according to docs
75
- const packageAliases = projectJson.get('packageAliases');
76
- const packageId = packageAliases[(0, ts_types_1.ensureString)(packageDir.package)] ?? packageDir.package;
77
98
  const [major, minor, patch] = packageDir.ancestorVersion.split('.');
78
99
  let releasedAncestor;
79
100
  try {
@@ -102,14 +123,14 @@ const getAncestorIds = async (scratchOrgInfo, projectJson, hubOrg) => {
102
123
  .getConnection()
103
124
  .singleRecordQuery(`SELECT Id FROM Package2Version WHERE SubscriberPackageVersionId = '${packageDir.ancestorId}'`, { tooling: true })).Id;
104
125
  }
105
- // ancestorID can be an alias get it from projectJson
106
- const packageAliases = projectJson.get('packageAliases');
126
+ // ancestorID can be an alias; get it from projectJson
107
127
  if (packageDir.ancestorId && packageAliases?.[packageDir.ancestorId]) {
108
128
  return packageAliases[packageDir.ancestorId];
109
129
  }
110
130
  throw new sfError_1.SfError(`Invalid ancestorId ${packageDir.ancestorId}`, 'InvalidAncestorId');
111
131
  }));
112
- return Array.from(new Set(ancestorIds)).join(';');
132
+ // strip out '' due to NONE
133
+ return Array.from(new Set(ancestorIds.filter((id) => id !== ''))).join(';');
113
134
  };
114
135
  exports.getAncestorIds = getAncestorIds;
115
136
  /**
@@ -8,7 +8,11 @@ The ancestor versionNumber must be in the format major.minor.patch but the value
8
8
 
9
9
  # NoMatchingAncestorError
10
10
 
11
- The ancestorId for ancestorVersion %s can't be found. Package ID %s.",
11
+ The ancestor for ancestorVersion %s can't be found. Package ID %s.",
12
+
13
+ # NoMatchingAncestorIdError
14
+
15
+ The ancestor for ancestorId [%s] can't be found. Package ID %s."
12
16
 
13
17
  # AncestorNotReleasedError
14
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.24.0",
3
+ "version": "3.24.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",
@@ -49,7 +49,7 @@
49
49
  "form-data": "^4.0.0",
50
50
  "graceful-fs": "^4.2.9",
51
51
  "js2xmlparser": "^4.0.1",
52
- "jsforce": "beta",
52
+ "jsforce": "^2.0.0-beta.16",
53
53
  "jsonwebtoken": "8.5.1",
54
54
  "mkdirp": "1.0.4",
55
55
  "ts-retry-promise": "^0.6.0"