@salesforce/core 6.4.0 → 6.4.1

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.
@@ -304,7 +304,7 @@ class Connection extends jsforce_1.Connection {
304
304
  });
305
305
  const query = tooling ? await this.tooling.query(soql, options) : await this.query(soql, options);
306
306
  if (query.records.length && query.totalSize > query.records.length) {
307
- void lifecycleEvents_1.Lifecycle.getInstance().emitWarning(`The query result is missing ${query.totalSize - query.records.length} records due to a ${maxFetch} record limit. Increase the number of records returned by setting the config value "maxQueryLimit" or the environment variable "SFDX_MAX_QUERY_LIMIT" to ${query.totalSize} or greater than ${maxFetch}.`);
307
+ void lifecycleEvents_1.Lifecycle.getInstance().emitWarning(`The query result is missing ${query.totalSize - query.records.length} records due to a ${maxFetch} record limit. Increase the number of records returned by setting the config value "maxQueryLimit" or the environment variable "SF_ORG_MAX_QUERY_LIMIT" to ${query.totalSize} or greater than ${maxFetch}.`);
308
308
  }
309
309
  return query;
310
310
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "6.4.0",
3
+ "version": "6.4.1",
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",
@@ -66,8 +66,8 @@
66
66
  "@types/proper-lockfile": "^4.1.4",
67
67
  "benchmark": "^2.1.4",
68
68
  "chai-string": "^1.5.0",
69
- "ts-node": "^10.9.1",
70
- "ts-patch": "^3.0.2",
69
+ "ts-node": "^10.9.2",
70
+ "ts-patch": "^3.1.1",
71
71
  "typescript": "^5.2.2"
72
72
  },
73
73
  "repository": {