Bumpscommander from 2.16.0 to 7.1.0.
Release notes
Sourced fromcommander's releases.
v7.1.0
Added
- support for named imports from ECMAScript modules (#1440)
- add
.cjs
to list of expected script file extensions (#1449) - allow using option choices and variadic together (#1454)
Fixed
- replace use of deprecated
process.mainModule
(#1448) - regression for legacy
command('*')
and call when command line includes options (#1464) - regression for
on('command:*', ...)
and call when command line includes unknown options (#1464) - display best error for combination of unknown command and unknown option (i.e. unknown command) (#1464)
Changed
- make TypeScript typings tests stricter (#1453)
- improvements to README and tests
v7.0.0
Added
.enablePositionalOptions()
to let program and subcommand reuse same option (#1427).passThroughOptions()
to pass options through to other programs without needing--
(#1427).allowExcessArguments(false)
to show an error message if there are too many command-arguments on command line for the action handler (#1409).configureOutput()
to modify use of stdout and stderr or customise display of errors (#1387)- use
.addHelpText()
to add text before or after the built-in help, for just current command or also for all subcommands (#1296) - enhance Option class (#1331)
- allow hiding options from help
- allow restricting option arguments to a list of choices
- allow setting how default value is shown in help
.createOption()
to support subclassing of automatically created options (like.createCommand()
) (#1380)- refactor the code generating the help into a separate public Help class (#1365)
- support sorting subcommands and options in help
- support specifying wrap width (columns)
- allow subclassing Help class
- allow configuring Help class without subclassing
Changed
- Breaking: options are stored safely by default, not as properties on the command (#1409)
- this especially affects accessing options on program, use
program.opts()
- revert behaviour with
.storeOptionsAsProperties()
- Breaking: action handlers are passed options and command separately (#1409)
- deprecated callback parameter to
.help()
and.outputHelp()
(removed from README) (#1296) - Breaking: errors now displayed using
process.stderr.write()
instead ofconsole.error()
- deprecate
.on('--help')
(removed from README) (#1296) - initialise the command description to empty string (previously undefined) (#1365)
- document and annotate deprecated routines (#1349)
... (truncated)
Changelog
Sourced fromcommander's changelog.
[7.1.0] (2021-02-15)
Added
- support for named imports from ECMAScript modules (#1440)
- add
.cjs
to list of expected script file extensions (#1449) - allow using option choices and variadic together (#1454)
Fixed
- replace use of deprecated
process.mainModule
(#1448) - regression for legacy
command('*')
and call when command line includes options (#1464) - regression for
on('command:*', ...)
and call when command line includes unknown options (#1464) - display best error for combination of unknown command and unknown option (i.e. unknown command) (#1464)
Changed
- make TypeScript typings tests stricter (#1453)
- improvements to README and tests
[7.0.0] (2021-01-15)
Added
.enablePositionalOptions()
to let program and subcommand reuse same option (#1427).passThroughOptions()
to pass options through to other programs without needing--
(#1427).allowExcessArguments(false)
to show an error message if there are too many command-arguments on command line for the action handler (#1409).configureOutput()
to modify use of stdout and stderr or customise display of errors (#1387)- use
.addHelpText()
to add text before or after the built-in help, for just current command or also for all subcommands (#1296) - enhance Option class (#1331)
- allow hiding options from help
- allow restricting option arguments to a list of choices
- allow setting how default value is shown in help
.createOption()
to support subclassing of automatically created options (like.createCommand()
) (#1380)- refactor the code generating the help into a separate public Help class (#1365)
- support sorting subcommands and options in help
- support specifying wrap width (columns)
- allow subclassing Help class
- allow configuring Help class without subclassing
Changed
- Breaking: options are stored safely by default, not as properties on the command (#1409)
- this especially affects accessing options on program, use
program.opts()
- revert behaviour with
.storeOptionsAsProperties()
- Breaking: action handlers are passed options and command separately (#1409)
- deprecated callback parameter to
.help()
and.outputHelp()
(removed from README) (#1296) - Breaking: errors now displayed using
process.stderr.write()
instead ofconsole.error()
- deprecate
.on('--help')
(removed from README) (#1296) - initialise the command description to empty string (previously undefined) (#1365)
... (truncated)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting@dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language@dependabot badge me
will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabotdashboard:
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Bumpscommander from 2.16.0 to 7.1.0.
Release notes
Sourced fromcommander's releases.
... (truncated)
Changelog
Sourced fromcommander's changelog.
... (truncated)
Commits
4aaaa9d
Update CHANGELOG for 7.1.0 (#1472)4a4c1d5
Update documentation for option event listeners (#1470)b2a4f87
Test for help for arguments without description (#1466)4f78587
Skip unknown options check if there is a better error to display (#1464)b040db4
Missing subcommand in action for test (#1462)a0c1a77
Test for help for arguments without description (#1459)09dfb67
Add support for variadic to choices (#1454)02b40ec
Convert typings tests to tsd (#1453)a28a89b
Add cjs to list of expected node script extensions (#1449)f6190b0
Replace process.mainModule with require.main (#1448)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and language@dependabot badge me
will comment on this PR with code to add a "Dependabot enabled" badge to your readmeAdditionally, you can set the following in your Dependabotdashboard: