@salesforce/cli 1.28.0 → 1.31.0
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/README.md +7 -7
- package/npm-shrinkwrap.json +515 -1220
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
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
|
+
## [1.31.0](https://github.com/salesforcecli/cli/compare/v1.30.0...v1.31.0) (2022-06-02)
|
|
6
|
+
|
|
7
|
+
## [1.30.0](https://github.com/salesforcecli/cli/compare/v1.29.0...v1.30.0) (2022-05-26)
|
|
8
|
+
|
|
9
|
+
## [1.29.0](https://github.com/salesforcecli/cli/compare/v1.28.0...v1.29.0) (2022-05-18)
|
|
10
|
+
|
|
5
11
|
## [1.28.0](https://github.com/salesforcecli/cli/compare/v1.27.0...v1.28.0) (2022-05-11)
|
|
6
12
|
|
|
7
13
|
## [1.27.0](https://github.com/salesforcecli/cli/compare/v1.26.0...v1.27.0) (2022-05-04)
|
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ $ npm install -g @salesforce/cli
|
|
|
31
31
|
$ sf COMMAND
|
|
32
32
|
running command...
|
|
33
33
|
$ sf (--version|-v)
|
|
34
|
-
@salesforce/cli/1.
|
|
34
|
+
@salesforce/cli/1.31.0 linux-x64 node-v14.19.3
|
|
35
35
|
$ sf --help [COMMAND]
|
|
36
36
|
USAGE
|
|
37
37
|
$ sf COMMAND
|
|
@@ -1864,15 +1864,15 @@ ALIASES
|
|
|
1864
1864
|
EXAMPLES
|
|
1865
1865
|
Display release notes for the currently installed CLI version:
|
|
1866
1866
|
|
|
1867
|
-
|
|
1867
|
+
$ sf info releasenotes display
|
|
1868
1868
|
|
|
1869
1869
|
Display release notes for CLI version 7.120.0:
|
|
1870
1870
|
|
|
1871
|
-
|
|
1871
|
+
$ sf info releasenotes display --version 7.120.0
|
|
1872
1872
|
|
|
1873
1873
|
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
|
|
1874
1874
|
|
|
1875
|
-
|
|
1875
|
+
$ sf info releasenotes display --version latest
|
|
1876
1876
|
```
|
|
1877
1877
|
|
|
1878
1878
|
## `sf login`
|
|
@@ -2754,15 +2754,15 @@ ALIASES
|
|
|
2754
2754
|
EXAMPLES
|
|
2755
2755
|
Display release notes for the currently installed CLI version:
|
|
2756
2756
|
|
|
2757
|
-
|
|
2757
|
+
$ sf whatsnew
|
|
2758
2758
|
|
|
2759
2759
|
Display release notes for CLI version 7.120.0:
|
|
2760
2760
|
|
|
2761
|
-
|
|
2761
|
+
$ sf whatsnew --version 7.120.0
|
|
2762
2762
|
|
|
2763
2763
|
Display release notes for the CLI version that corresponds to a tag (stable, stable-rc, latest, latest-rc, rc):
|
|
2764
2764
|
|
|
2765
|
-
|
|
2765
|
+
$ sf whatsnew --version latest
|
|
2766
2766
|
```
|
|
2767
2767
|
|
|
2768
2768
|
## `sf whoami functions`
|