Skip to content

Commit c4a5614

Browse files
authored
Merge pull request #1322 from salesforcecli/release/2.19.1
Release PR for 2.19.1 as nightly
2 parents 1fd2c6a + 5106ffe commit c4a5614

3 files changed

Lines changed: 35 additions & 94 deletions

File tree

README.md

Lines changed: 15 additions & 74 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.19.0 linux-x64 node-v20.9.0
27+
@salesforce/cli/2.19.1 linux-x64 node-v20.9.0
2828
$ sf --help [COMMAND]
2929
USAGE
3030
$ sf COMMAND
@@ -100,8 +100,6 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
100100
- [`sf lightning generate event`](#sf-lightning-generate-event)
101101
- [`sf lightning generate interface`](#sf-lightning-generate-interface)
102102
- [`sf lightning generate test`](#sf-lightning-generate-test)
103-
- [`sf login`](#sf-login)
104-
- [`sf logout`](#sf-logout)
105103
- [`sf org assign permset`](#sf-org-assign-permset)
106104
- [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
107105
- [`sf org create sandbox`](#sf-org-create-sandbox)
@@ -3452,63 +3450,6 @@ FLAG DESCRIPTIONS
34523450

34533451
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.0.1/src/commands/lightning/generate/test.ts)_
34543452

3455-
## `sf login`
3456-
3457-
Log interactively into an environment.
3458-
3459-
```
3460-
USAGE
3461-
$ sf login
3462-
3463-
DESCRIPTION
3464-
Log interactively into an environment.
3465-
3466-
NOTE: This general command is deprecated. Use specific commands instead, such as "org login web" or "org login jwt".
3467-
3468-
Logging into an environment authorizes the CLI to run other commands that connect to that environment.
3469-
3470-
EXAMPLES
3471-
Log in interactively:
3472-
3473-
$ sf login
3474-
```
3475-
3476-
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/2.0.4/src/commands/login.ts)_
3477-
3478-
## `sf logout`
3479-
3480-
Log out interactively from environments.
3481-
3482-
```
3483-
USAGE
3484-
$ sf logout [--json] [--no-prompt]
3485-
3486-
FLAGS
3487-
--no-prompt Don't prompt for confirmation; logs you out of all environments.
3488-
3489-
GLOBAL FLAGS
3490-
--json Format output as json.
3491-
3492-
DESCRIPTION
3493-
Log out interactively from environments.
3494-
3495-
NOTE: This general command is deprecated. Use specific commands instead, such as "org login web" or "org login jwt".
3496-
3497-
By default, the command prompts you to select which environments you want to log out of. Use --no-prompt to not be
3498-
prompted and log out of all environments.
3499-
3500-
EXAMPLES
3501-
Interactively select the environments to log out of:
3502-
3503-
$ sf logout
3504-
3505-
Log out of all environments, without being prompted:
3506-
3507-
$ sf logout --no-prompt
3508-
```
3509-
3510-
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/2.0.4/src/commands/logout.ts)_
3511-
35123453
## `sf org assign permset`
35133454

35143455
Assign a permission set to one or more users of a scratch org.
@@ -4249,7 +4190,7 @@ EXAMPLES
42494190
$ sf org list auth
42504191
```
42514192

4252-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/list/auth.ts)_
4193+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/list/auth.ts)_
42534194

42544195
## `sf org list limits`
42554196

@@ -4537,7 +4478,7 @@ FLAG DESCRIPTIONS
45374478
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
45384479
```
45394480

4540-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/login/access-token.ts)_
4481+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/login/access-token.ts)_
45414482

45424483
## `sf org login device`
45434484

@@ -4596,7 +4537,7 @@ FLAG DESCRIPTIONS
45964537
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
45974538
```
45984539

4599-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/login/device.ts)_
4540+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/login/device.ts)_
46004541

46014542
## `sf org login jwt`
46024543

@@ -4685,7 +4626,7 @@ FLAG DESCRIPTIONS
46854626
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
46864627
```
46874628

4688-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/login/jwt.ts)_
4629+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/login/jwt.ts)_
46894630

46904631
## `sf org login sfdx-url`
46914632

@@ -4743,7 +4684,7 @@ EXAMPLES
47434684
$ sf org login sfdx-url --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg
47444685
```
47454686

4746-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/login/sfdx-url.ts)_
4687+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/login/sfdx-url.ts)_
47474688

47484689
## `sf org login web`
47494690

@@ -4828,7 +4769,7 @@ FLAG DESCRIPTIONS
48284769
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
48294770
```
48304771

4831-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/login/web.ts)_
4772+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/login/web.ts)_
48324773

48334774
## `sf org logout`
48344775

@@ -4888,7 +4829,7 @@ FLAG DESCRIPTIONS
48884829
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
48894830
```
48904831

4891-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.5/src/commands/org/logout.ts)_
4832+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.6/src/commands/org/logout.ts)_
48924833

48934834
## `sf org open`
48944835

@@ -5084,7 +5025,7 @@ EXAMPLES
50845025
$ sf plugins
50855026
```
50865027

5087-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/index.ts)_
5028+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/index.ts)_
50885029

50895030
## `sf plugins discover`
50905031

@@ -5128,7 +5069,7 @@ EXAMPLES
51285069
$ sf plugins inspect myplugin
51295070
```
51305071

5131-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/inspect.ts)_
5072+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/inspect.ts)_
51325073

51335074
## `sf plugins:install PLUGIN...`
51345075

@@ -5172,7 +5113,7 @@ EXAMPLES
51725113
$ sf plugins install someuser/someplugin
51735114
```
51745115

5175-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/install.ts)_
5116+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/install.ts)_
51765117

51775118
## `sf plugins:link PLUGIN`
51785119

@@ -5202,7 +5143,7 @@ EXAMPLES
52025143
$ sf plugins link myplugin
52035144
```
52045145

5205-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/link.ts)_
5146+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/link.ts)_
52065147

52075148
## `sf plugins reset`
52085149

@@ -5213,7 +5154,7 @@ USAGE
52135154
$ sf plugins reset
52145155
```
52155156

5216-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/reset.ts)_
5157+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/reset.ts)_
52175158

52185159
## `sf plugins trust verify`
52195160

@@ -5269,7 +5210,7 @@ EXAMPLES
52695210
$ sf plugins uninstall myplugin
52705211
```
52715212

5272-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/uninstall.ts)_
5213+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/uninstall.ts)_
52735214

52745215
## `sf plugins update`
52755216

@@ -5287,7 +5228,7 @@ DESCRIPTION
52875228
Update installed plugins.
52885229
```
52895230

5290-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.7/src/commands/plugins/update.ts)_
5231+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.8/src/commands/plugins/update.ts)_
52915232

52925233
## `sf project convert mdapi`
52935234

package.json

Lines changed: 4 additions & 4 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.19.0",
4+
"version": "2.19.1",
55
"author": "Salesforce",
66
"bin": {
77
"sf": "./bin/run.js",
@@ -130,20 +130,20 @@
130130
"@oclif/plugin-commands": "3.0.6",
131131
"@oclif/plugin-help": "6.0.6",
132132
"@oclif/plugin-not-found": "3.0.4",
133-
"@oclif/plugin-plugins": "4.1.7",
133+
"@oclif/plugin-plugins": "4.1.8",
134134
"@oclif/plugin-search": "1.0.7",
135135
"@oclif/plugin-update": "4.1.3",
136136
"@oclif/plugin-version": "2.0.6",
137137
"@oclif/plugin-warn-if-update-available": "3.0.2",
138138
"@oclif/plugin-which": "3.0.9",
139139
"@salesforce/core": "^6.1.3",
140140
"@salesforce/plugin-apex": "3.0.4",
141-
"@salesforce/plugin-auth": "3.0.5",
141+
"@salesforce/plugin-auth": "3.0.6",
142142
"@salesforce/plugin-data": "3.0.1",
143143
"@salesforce/plugin-deploy-retrieve": "2.1.1",
144144
"@salesforce/plugin-info": "3.0.3",
145145
"@salesforce/plugin-limits": "3.0.2",
146-
"@salesforce/plugin-login": "2.0.4",
146+
"@salesforce/plugin-login": "2.0.5",
147147
"@salesforce/plugin-marketplace": "1.0.6",
148148
"@salesforce/plugin-org": "3.0.5",
149149
"@salesforce/plugin-schema": "3.0.4",

yarn.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,10 +1118,10 @@
11181118
chalk "^4"
11191119
fast-levenshtein "^3.0.0"
11201120

1121-
"@oclif/plugin-plugins@4.1.7":
1122-
version "4.1.7"
1123-
resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-4.1.7.tgz#38b358705411cce76d8d3ac09030d2232db94586"
1124-
integrity sha512-oIIfveSgCqmjCSATrurYxi83VVkDOoZGDPgw+KYC0ndJ5k9tZJjLXoI0Ol9MMfmhppLChWm2avh1IPDOI785yg==
1121+
"@oclif/plugin-plugins@4.1.8":
1122+
version "4.1.8"
1123+
resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-4.1.8.tgz#7c91f36b6949684a6acca7722f85d6963483108a"
1124+
integrity sha512-sowXVWJyUALqzB2tekGtB9gnKANfSL2Gy5ov9ZliqVj7jU643JH3n4g7j5sDEziR6rQ14/ZMiyDwbweeSWb9gQ==
11251125
dependencies:
11261126
"@oclif/core" "^3.10.2"
11271127
chalk "^5.3.0"
@@ -1564,13 +1564,13 @@
15641564
color-convert "^2.0.1"
15651565
color-name "^2.0.0"
15661566

1567-
"@salesforce/plugin-auth@3.0.5":
1568-
version "3.0.5"
1569-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-3.0.5.tgz#29611cabd74f33238a41f232b0633c12bd38ccbe"
1570-
integrity sha512-YTV9zCxXtVW9CJUlgoFbPs4buUkxolfomTQVvfK82bFnIYRsI/kRjGYBccp38TqVz7wvO9vUCx2tS2ea6b3FAw==
1567+
"@salesforce/plugin-auth@3.0.6":
1568+
version "3.0.6"
1569+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-3.0.6.tgz#0e839352e5c4e4a3cdd9fbbb40013d514713bbd9"
1570+
integrity sha512-A2YWc7sEiC3zhyzAssDjuP2W/YmNZP6tOPAH5/ilKsEfJ8acN7M7DUzOPNG3xLJ1WarHTNx+Bxiz9m3Szl22Ug==
15711571
dependencies:
15721572
"@oclif/core" "^3.10.8"
1573-
"@salesforce/core" "^6.1.0"
1573+
"@salesforce/core" "^6.1.3"
15741574
"@salesforce/kit" "^3.0.15"
15751575
"@salesforce/sf-plugins-core" "^5.0.1"
15761576
"@salesforce/ts-types" "^2.0.9"
@@ -1647,14 +1647,14 @@
16471647
"@salesforce/sf-plugins-core" "^5.0.1"
16481648
"@salesforce/ts-types" "^2.0.9"
16491649

1650-
"@salesforce/plugin-login@2.0.4":
1651-
version "2.0.4"
1652-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-2.0.4.tgz#835f00cddec65a04a2122137e65c13bbdd08525a"
1653-
integrity sha512-jGiMSYAv2k3cqLxw9VirQB03UAklCHUUJp0x3OiXWSyFroBfYCZti/Vkyx3LP6pTJ0FwF7XncQM5XIu+WnEcnQ==
1650+
"@salesforce/plugin-login@2.0.5":
1651+
version "2.0.5"
1652+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-2.0.5.tgz#3c9489b52ce33a88941a556f018dc315f0a0d270"
1653+
integrity sha512-94PBniSVO1yeu7JFDSAOfNTL2/NZLsNnXKYQsrLb1vl7Vsph+BUWT68Uo1lwWmEzG1m+m6VxkTundLw5w7CuDw==
16541654
dependencies:
1655-
"@oclif/core" "^3.10.8"
1656-
"@salesforce/core" "^5.3.20"
1657-
"@salesforce/sf-plugins-core" "^4.1.1"
1655+
"@oclif/core" "^3.11.0"
1656+
"@salesforce/core" "^6.1.3"
1657+
"@salesforce/sf-plugins-core" "^5.0.1"
16581658
chalk "^5.3.0"
16591659

16601660
"@salesforce/plugin-marketplace@1.0.6":

0 commit comments

Comments
 (0)