Skip to content

Commit

Permalink
chore(release): 4.0.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed May 31, 2024
1 parent 2c181b1 commit 4f66de7
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 20 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [4.0.0](https://github.com/oclif/plugin-commands/compare/3.3.4...4.0.0) (2024-05-31)

- feat!: use oclif/core v4 (#675) ([2c181b1](https://github.com/oclif/plugin-commands/commit/2c181b139aab107af562293cd79e7e68a1fda8dc)), closes [#675](https://github.com/oclif/plugin-commands/issues/675)

### BREAKING CHANGES

- remove table-related flags and standardize return value

- chore: code review

- fix: dont truncate command ids

- test: update expected table

- test: consistent test between CI and local

## [3.3.4](https://github.com/oclif/plugin-commands/compare/3.3.3...3.3.4) (2024-05-11)

### Bug Fixes
Expand Down
34 changes: 15 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $ npm install -g @oclif/plugin-commands
$ oclif-example COMMAND
running command...
$ oclif-example (--version)
@oclif/plugin-commands/3.3.4 linux-x64 node-v18.20.2
@oclif/plugin-commands/4.0.0 linux-x64 node-v18.20.3
$ oclif-example --help [COMMAND]
USAGE
$ oclif-example COMMAND
Expand All @@ -40,36 +40,32 @@ USAGE

## `oclif-example commands`

list all the commands
List all oclif-example commands.

```
USAGE
$ oclif-example commands [--json] [--deprecated] [-h] [--hidden] [--tree] [--columns <value> | -x] [--filter
<value>] [--no-header | [--csv | --no-truncate]] [--output csv|json|yaml | | ] [--sort <value>]
$ oclif-example commands [--json] [-c id|plugin|summary|type | --tree] [--deprecated] [-x | ] [--hidden]
[--no-truncate | ] [--sort id|plugin|summary|type | ]
FLAGS
-h, --help Show CLI help.
-x, --extended show extra columns
--columns=<value> only show provided columns (comma-separated)
--csv output is csv format [alias: --output=csv]
--deprecated show deprecated commands
--filter=<value> filter property by partial string matching, ex: name=foo
--hidden show hidden commands
--no-header hide table header from output
--no-truncate do not truncate output to fit screen
--output=<option> output in a more machine friendly format
<options: csv|json|yaml>
--sort=<value> property to sort by (prepend '-' for descending)
--tree show tree of commands
-c, --columns=<option>... Only show provided columns (comma-separated).
<options: id|plugin|summary|type>
-x, --extended Show extra columns.
--deprecated Show deprecated commands.
--hidden Show hidden commands.
--no-truncate Do not truncate output.
--sort=<option> [default: id] Property to sort by.
<options: id|plugin|summary|type>
--tree Show tree of commands.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
list all the commands
List all oclif-example commands.
```

_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/3.3.4/src/commands/commands.ts)_
_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/4.0.0/src/commands/commands.ts)_

<!-- commandsstop -->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@oclif/plugin-commands",
"description": "plugin to show the list of all the commands",
"version": "3.3.4",
"version": "4.0.0",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-commands/issues",
"dependencies": {
Expand Down

0 comments on commit 4f66de7

Please sign in to comment.