@salesforce/packaging 1.4.15 → 1.4.16

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.
@@ -218,9 +218,7 @@ async function getPackageVersionStrings(subscriberPackageVersionIds, connection)
218
218
  }
219
219
  // remove any duplicate Ids
220
220
  const ids = [...new Set(subscriberPackageVersionIds)];
221
- const query = `SELECT SubscriberPackageVersionId, MajorVersion, MinorVersion, PatchVersion, BuildNumber FROM Package2Version WHERE SubscriberPackageVersionId IN (${ids
222
- .map((id) => `'${id}'`)
223
- .join(',')})`;
221
+ const query = "SELECT SubscriberPackageVersionId, MajorVersion, MinorVersion, PatchVersion, BuildNumber FROM Package2Version WHERE SubscriberPackageVersionId IN ('%IDS%')";
224
222
  const records = await queryWithInConditionChunking(query, ids, '%IDS%', connection);
225
223
  if (records && records.length > 0) {
226
224
  results = new Map(records.map((record) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/packaging",
3
- "version": "1.4.15",
3
+ "version": "1.4.16",
4
4
  "description": "Packaging library for the Salesforce packaging platform",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",
@@ -73,13 +73,13 @@
73
73
  "commitizen": "^4.2.6",
74
74
  "eslint": "^8.36.0",
75
75
  "eslint-config-prettier": "^8.8.0",
76
- "eslint-config-salesforce": "^1.1.1",
76
+ "eslint-config-salesforce": "^1.2.0",
77
77
  "eslint-config-salesforce-license": "^0.2.0",
78
78
  "eslint-config-salesforce-typescript": "^1.1.1",
79
79
  "eslint-plugin-header": "3.1.1",
80
80
  "eslint-plugin-import": "^2.27.5",
81
81
  "eslint-plugin-jsdoc": "^39.9.1",
82
- "husky": "^8.0.2",
82
+ "husky": "^8.0.3",
83
83
  "mocha": "^10.2.0",
84
84
  "nyc": "^15.1.0",
85
85
  "prettier": "^2.8.7",