Skip to content

Commit 973dc24

Browse files
authored
Merge pull request #1299 from salesforcecli/release/2.18.0
Release PR for 2.18.0 as nightly
2 parents 23d2db1 + fee7c91 commit 973dc24

3 files changed

Lines changed: 83 additions & 49 deletions

File tree

README.md

Lines changed: 32 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
2424
$ sf COMMAND
2525
running command...
2626
$ sf (--version|-v)
27-
@salesforce/cli/2.17.10 linux-x64 node-v20.9.0
27+
@salesforce/cli/2.18.0 linux-x64 node-v20.9.0
2828
$ sf --help [COMMAND]
2929
USAGE
3030
$ sf COMMAND
@@ -5118,7 +5118,7 @@ EXAMPLES
51185118
$ sf plugins
51195119
```
51205120

5121-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/index.ts)_
5121+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/index.ts)_
51225122

51235123
## `sf plugins discover`
51245124

@@ -5162,7 +5162,7 @@ EXAMPLES
51625162
$ sf plugins:inspect myplugin
51635163
```
51645164

5165-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/inspect.ts)_
5165+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/inspect.ts)_
51665166

51675167
## `sf plugins:install PLUGIN...`
51685168

@@ -5203,7 +5203,7 @@ EXAMPLES
52035203
$ sf plugins:install someuser/someplugin
52045204
```
52055205

5206-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/install.ts)_
5206+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/install.ts)_
52075207

52085208
## `sf plugins:link PLUGIN`
52095209

@@ -5233,7 +5233,7 @@ EXAMPLES
52335233
$ sf plugins:link myplugin
52345234
```
52355235

5236-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/link.ts)_
5236+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/link.ts)_
52375237

52385238
## `sf plugins reset`
52395239

@@ -5244,7 +5244,7 @@ USAGE
52445244
$ sf plugins reset
52455245
```
52465246

5247-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/reset.ts)_
5247+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/reset.ts)_
52485248

52495249
## `sf plugins trust verify`
52505250

@@ -5297,7 +5297,7 @@ ALIASES
52975297
$ sf plugins remove
52985298
```
52995299

5300-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/uninstall.ts)_
5300+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/uninstall.ts)_
53015301

53025302
## `sf plugins update`
53035303

@@ -5315,7 +5315,7 @@ DESCRIPTION
53155315
Update installed plugins.
53165316
```
53175317

5318-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.0/src/commands/plugins/update.ts)_
5318+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.2/src/commands/plugins/update.ts)_
53195319

53205320
## `sf project convert mdapi`
53215321

@@ -5377,7 +5377,7 @@ FLAG DESCRIPTIONS
53775377
If you specify this parameter, don’t specify --metadata or --source-dir.
53785378
```
53795379

5380-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/convert/mdapi.ts)_
5380+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/convert/mdapi.ts)_
53815381

53825382
## `sf project convert source`
53835383

@@ -5389,7 +5389,7 @@ USAGE
53895389
<value> | -m <value>]
53905390
53915391
FLAGS
5392-
-d, --output-dir=<value> [default: metadataPackage_1699371750028] Output directory to store the Metadata
5392+
-d, --output-dir=<value> [default: metadataPackage_1699478462777] Output directory to store the Metadata
53935393
API–formatted files in.
53945394
-m, --metadata=<value>... Metadata component names to convert.
53955395
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
@@ -5449,7 +5449,7 @@ FLAG DESCRIPTIONS
54495449
Override the api version used for api requests made by this command
54505450
```
54515451

5452-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/convert/source.ts)_
5452+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/convert/source.ts)_
54535453

54545454
## `sf project delete source`
54555455

@@ -5587,7 +5587,7 @@ FLAG DESCRIPTIONS
55875587
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
55885588
```
55895589

5590-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/delete/source.ts)_
5590+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/delete/source.ts)_
55915591

55925592
## `sf project delete tracking`
55935593

@@ -5622,7 +5622,7 @@ EXAMPLES
56225622
$ sf project delete tracking --target-org my-scratch
56235623
```
56245624

5625-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/delete/tracking.ts)_
5625+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/delete/tracking.ts)_
56265626

56275627
## `sf project deploy cancel`
56285628

@@ -5692,7 +5692,7 @@ FLAG DESCRIPTIONS
56925692
project deploy report".
56935693
```
56945694

5695-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/cancel.ts)_
5695+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/cancel.ts)_
56965696

56975697
## `sf project deploy preview`
56985698

@@ -5775,7 +5775,7 @@ FLAG DESCRIPTIONS
57755775
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
57765776
```
57775777

5778-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/preview.ts)_
5778+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/preview.ts)_
57795779

57805780
## `sf project deploy quick`
57815781

@@ -5868,7 +5868,7 @@ ERROR CODES
58685868
Canceling (69) The deploy is being canceled.
58695869
```
58705870

5871-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/quick.ts)_
5871+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/quick.ts)_
58725872

58735873
## `sf project deploy report`
58745874

@@ -5963,7 +5963,7 @@ FLAG DESCRIPTIONS
59635963
--coverage-formatters lcov --coverage-formatters clover
59645964
```
59655965

5966-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/report.ts)_
5966+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/report.ts)_
59675967

59685968
## `sf project deploy resume`
59695969

@@ -6059,7 +6059,7 @@ ERROR CODES
60596059
Canceling (69) The deploy is being canceled.
60606060
```
60616061

6062-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/resume.ts)_
6062+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/resume.ts)_
60636063

60646064
## `sf project deploy start`
60656065

@@ -6287,7 +6287,7 @@ ERROR CODES
62876287
Canceling (69) The deploy is being canceled.
62886288
```
62896289

6290-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/start.ts)_
6290+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/start.ts)_
62916291

62926292
## `sf project deploy validate`
62936293

@@ -6297,12 +6297,13 @@ Validate a metadata deployment without actually executing it.
62976297
USAGE
62986298
$ sf project deploy validate -o <value> [--json] [-a <value>] [--async] [--concise | --verbose] [-m <value>] [-d <value>]
62996299
[--single-package --metadata-dir <value>] [-t <value> -l RunAllTestsInOrg|RunLocalTests|RunSpecifiedTests] [-w
6300-
<value>] [--coverage-formatters
6300+
<value>] [-g] [--coverage-formatters
63016301
clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary] [--junit] [--results-dir
63026302
<value>] [--purge-on-delete -x <value>] [--pre-destructive-changes <value> ] [--post-destructive-changes <value> ]
63036303
63046304
FLAGS
63056305
-a, --api-version=<value> Target API version for the validation.
6306+
-g, --ignore-warnings Ignore warnings and allow a deployment to complete successfully.
63066307
-o, --target-org=<value> (required) Login username or alias for the target org.
63076308
-w, --wait=<minutes> [default: [object Object]] Number of minutes to wait for the command to complete and
63086309
display results.
@@ -6392,6 +6393,11 @@ FLAG DESCRIPTIONS
63926393
63936394
If you specify this flag, don’t specify --metadata or --manifest.
63946395
6396+
-g, --ignore-warnings Ignore warnings and allow a deployment to complete successfully.
6397+
6398+
If a warning occurs and this flag is set to true, the success status of the deployment is set to true. When this
6399+
flag is set to false, success is set to false, and the warning is treated like an error.
6400+
63956401
-l, --test-level=RunAllTestsInOrg|RunLocalTests|RunSpecifiedTests Deployment Apex testing level.
63966402
63976403
Valid values are:
@@ -6459,7 +6465,7 @@ ERROR CODES
64596465
Canceling (69) The deploy is being canceled.
64606466
```
64616467

6462-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/deploy/validate.ts)_
6468+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/deploy/validate.ts)_
64636469

64646470
## `sf project generate`
64656471

@@ -6638,7 +6644,7 @@ EXAMPLES
66386644
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
66396645
```
66406646

6641-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/generate/manifest.ts)_
6647+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/generate/manifest.ts)_
66426648

66436649
## `sf project list ignored`
66446650

@@ -6679,7 +6685,7 @@ EXAMPLES
66796685
$ sf project list ignored --source-dir package.xml
66806686
```
66816687

6682-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/list/ignored.ts)_
6688+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/list/ignored.ts)_
66836689

66846690
## `sf project reset tracking`
66856691

@@ -6726,7 +6732,7 @@ EXAMPLES
67266732
$ sf project reset tracking --revision 30
67276733
```
67286734

6729-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/reset/tracking.ts)_
6735+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/reset/tracking.ts)_
67306736

67316737
## `sf project retrieve preview`
67326738

@@ -6781,7 +6787,7 @@ FLAG DESCRIPTIONS
67816787
Overrides your default org.
67826788
```
67836789

6784-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/retrieve/preview.ts)_
6790+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/retrieve/preview.ts)_
67856791

67866792
## `sf project retrieve start`
67876793

@@ -6935,7 +6941,7 @@ ENVIRONMENT VARIABLES
69356941
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
69366942
```
69376943

6938-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.0/src/commands/project/retrieve/start.ts)_
6944+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/1.20.2/src/commands/project/retrieve/start.ts)_
69396945

69406946
## `sf schema generate field`
69416947

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/cli",
33
"description": "The Salesforce CLI",
4-
"version": "2.17.10",
4+
"version": "2.18.0",
55
"author": "Salesforce",
66
"bin": {
77
"sf": "./bin/run.js",
@@ -75,7 +75,7 @@
7575
"@salesforce/plugin-community": "2.4.9",
7676
"@salesforce/plugin-dev": "1.3.2",
7777
"@salesforce/plugin-devops-center": "1.2.4",
78-
"@salesforce/plugin-env": "3.0.1",
78+
"@salesforce/plugin-env": "3.0.2",
7979
"@salesforce/plugin-functions": "1.22.9",
8080
"@salesforce/plugin-packaging": "1.27.1",
8181
"@salesforce/plugin-signups": "1.5.6",
@@ -125,12 +125,12 @@
125125
}
126126
},
127127
"dependencies": {
128-
"@oclif/core": "3.10.7",
128+
"@oclif/core": "3.10.8",
129129
"@oclif/plugin-autocomplete": "3.0.1",
130130
"@oclif/plugin-commands": "3.0.6",
131131
"@oclif/plugin-help": "6.0.5",
132132
"@oclif/plugin-not-found": "3.0.3",
133-
"@oclif/plugin-plugins": "4.1.0",
133+
"@oclif/plugin-plugins": "4.1.2",
134134
"@oclif/plugin-search": "1.0.6",
135135
"@oclif/plugin-update": "4.1.3",
136136
"@oclif/plugin-version": "2.0.6",
@@ -140,7 +140,7 @@
140140
"@salesforce/plugin-apex": "2.3.20",
141141
"@salesforce/plugin-auth": "2.8.26",
142142
"@salesforce/plugin-data": "2.6.3",
143-
"@salesforce/plugin-deploy-retrieve": "1.20.0",
143+
"@salesforce/plugin-deploy-retrieve": "1.20.2",
144144
"@salesforce/plugin-info": "3.0.1",
145145
"@salesforce/plugin-limits": "3.0.1",
146146
"@salesforce/plugin-login": "2.0.1",
@@ -154,7 +154,7 @@
154154
"@salesforce/plugin-templates": "55.5.18",
155155
"@salesforce/plugin-trust": "3.0.1",
156156
"@salesforce/plugin-user": "2.3.42",
157-
"@salesforce/sf-plugins-core": "4.0.0",
157+
"@salesforce/sf-plugins-core": "4.0.1-dev.4",
158158
"debug": "^4.3.4"
159159
},
160160
"pinnedDependencies": [

0 commit comments

Comments
 (0)