@salesforce/cli 2.16.1 → 2.16.2

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/README.md CHANGED
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
24
24
  $ sf COMMAND
25
25
  running command...
26
26
  $ sf (--version|-v)
27
- @salesforce/cli/2.16.1 linux-x64 node-v20.9.0
27
+ @salesforce/cli/2.16.2 linux-x64 node-v20.9.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -7156,16 +7156,16 @@ EXAMPLES
7156
7156
 
7157
7157
  $ sf sobject describe --sobject Account
7158
7158
 
7159
- Display the metadata of the "MyObject__c" custom object in the org with alias "my-scratch-org":
7159
+ Display the metadata of the "MyObject\_\_c" custom object in the org with alias "my-scratch-org":
7160
7160
 
7161
- $ sf sobject describe --sobject MyObject__c --target-org my-scratch-org
7161
+ $ sf sobject describe --sobject MyObject\_\_c --target-org my-scratch-org
7162
7162
 
7163
7163
  Display the metadata of the ApexCodeCoverage Tooling API object in your default org:
7164
7164
 
7165
7165
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
7166
7166
  ```
7167
7167
 
7168
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.31/src/commands/sobject/describe.ts)_
7168
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.32/src/commands/sobject/describe.ts)_
7169
7169
 
7170
7170
  ## `sf sobject list`
7171
7171
 
@@ -7202,7 +7202,7 @@ EXAMPLES
7202
7202
  $ sf sobject list --sobject custom --target-org my-scratch-org
7203
7203
  ```
7204
7204
 
7205
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.31/src/commands/sobject/list.ts)_
7205
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/2.3.32/src/commands/sobject/list.ts)_
7206
7206
 
7207
7207
  ## `sf static-resource generate`
7208
7208
 
package/dist/flags.js CHANGED
@@ -17,6 +17,10 @@ export function preprocessCliFlags(process) {
17
17
  process.env.DEBUG = debug;
18
18
  process.env.SF_DEBUG = '1';
19
19
  process.env.SF_ENV = 'development';
20
+ // set `SF_LOG_LEVEL` to `trace` if it wasn't specified
21
+ if (process.env.SF_LOG_LEVEL === undefined) {
22
+ process.env.SF_LOG_LEVEL = 'trace';
23
+ }
20
24
  // need to calculate indexOf --dev-debug here because it might've changed based on --debug-filter
21
25
  process.argv.splice(process.argv.indexOf('--dev-debug'), 1);
22
26
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.16.1",
3
+ "version": "2.16.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.16.1",
9
+ "version": "2.16.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
@@ -31,7 +31,7 @@
31
31
  "@salesforce/plugin-login": "1.2.39",
32
32
  "@salesforce/plugin-marketplace": "0.3.1",
33
33
  "@salesforce/plugin-org": "2.11.5",
34
- "@salesforce/plugin-schema": "2.3.31",
34
+ "@salesforce/plugin-schema": "2.3.32",
35
35
  "@salesforce/plugin-settings": "1.4.36",
36
36
  "@salesforce/plugin-sobject": "0.2.14",
37
37
  "@salesforce/plugin-source": "2.10.45",
@@ -5298,9 +5298,9 @@
5298
5298
  }
5299
5299
  },
5300
5300
  "node_modules/@salesforce/plugin-schema": {
5301
- "version": "2.3.31",
5302
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-2.3.31.tgz",
5303
- "integrity": "sha512-BN3S6wU5BliTNWpBY0SpzxzH/Tm1YkTEiW2I3hRy5YLVNvhCoWNymeTXsFKht535CJp/FiNT7/fVjuzAA5XoBw==",
5301
+ "version": "2.3.32",
5302
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-2.3.32.tgz",
5303
+ "integrity": "sha512-xigwrpeuDfhNrzH/rq1ZtxZPhlaG4eBjZqIIla0mjnFNK2vAXGlIeS9ShTBGHUoLV9dyzQpejZ48otdCxUT2Eg==",
5304
5304
  "license": "BSD-3-Clause",
5305
5305
  "dependencies": {
5306
5306
  "@oclif/core": "^2.15.0",
@@ -5557,5 +5557,5 @@
5557
5557
  ]
5558
5558
  }
5559
5559
  },
5560
- "version": "2.16.1"
5560
+ "version": "2.16.2"
5561
5561
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.16.1",
4
+ "version": "2.16.2",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -77,7 +77,7 @@
77
77
  "@salesforce/plugin-devops-center": "1.2.3",
78
78
  "@salesforce/plugin-env": "2.2.8",
79
79
  "@salesforce/plugin-packaging": "1.26.4",
80
- "@salesforce/plugin-signups": "1.5.5",
80
+ "@salesforce/plugin-signups": "1.5.6",
81
81
  "@salesforce/sfdx-plugin-lwc-test": "1.1.1",
82
82
  "@salesforce/sfdx-scanner": "3.17.0"
83
83
  },
@@ -145,7 +145,7 @@
145
145
  "@salesforce/plugin-login": "1.2.39",
146
146
  "@salesforce/plugin-marketplace": "0.3.1",
147
147
  "@salesforce/plugin-org": "2.11.5",
148
- "@salesforce/plugin-schema": "2.3.31",
148
+ "@salesforce/plugin-schema": "2.3.32",
149
149
  "@salesforce/plugin-settings": "1.4.36",
150
150
  "@salesforce/plugin-sobject": "0.2.14",
151
151
  "@salesforce/plugin-source": "2.10.45",