@salesforce/core 3.21.0 → 3.21.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.
- package/CHANGELOG.md +6 -0
- package/lib/config/config.d.ts +0 -11
- package/lib/config/config.js +1 -0
- 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.21.1](https://github.com/forcedotcom/sfdx-core/compare/v3.21.0...v3.21.1) (2022-06-15)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- deprecate maxQueryLimit config var ([48105be](https://github.com/forcedotcom/sfdx-core/commit/48105bedf01d69b38a7fa527ad74c78053f7d4ef))
|
|
10
|
+
|
|
5
11
|
## [3.21.0](https://github.com/forcedotcom/sfdx-core/compare/v3.20.3...v3.21.0) (2022-06-15)
|
|
6
12
|
|
|
7
13
|
### Features
|
package/lib/config/config.d.ts
CHANGED
|
@@ -177,17 +177,6 @@ export declare const SFDX_ALLOWED_PROPERTIES: ({
|
|
|
177
177
|
failedMessage: string;
|
|
178
178
|
};
|
|
179
179
|
encrypted?: undefined;
|
|
180
|
-
} | {
|
|
181
|
-
key: SfdxPropertyKeys;
|
|
182
|
-
description: string;
|
|
183
|
-
hidden: boolean;
|
|
184
|
-
newKey: OrgConfigProperties;
|
|
185
|
-
input: {
|
|
186
|
-
validator: (value: ConfigValue) => boolean;
|
|
187
|
-
failedMessage: string;
|
|
188
|
-
};
|
|
189
|
-
deprecated?: undefined;
|
|
190
|
-
encrypted?: undefined;
|
|
191
180
|
})[];
|
|
192
181
|
export declare const SfProperty: {
|
|
193
182
|
[index: string]: ConfigPropertyMeta;
|
package/lib/config/config.js
CHANGED
|
@@ -217,6 +217,7 @@ exports.SFDX_ALLOWED_PROPERTIES = [
|
|
|
217
217
|
description: messages.getMessage(SfdxPropertyKeys.MAX_QUERY_LIMIT),
|
|
218
218
|
hidden: true,
|
|
219
219
|
newKey: orgConfigProperties_1.OrgConfigProperties.ORG_MAX_QUERY_LIMIT,
|
|
220
|
+
deprecated: true,
|
|
220
221
|
input: {
|
|
221
222
|
// the bit shift will remove the negative bit, and any decimal numbers
|
|
222
223
|
// then the parseFloat will handle converting it to a number from a string
|