node-serialport
node-serialport copied to clipboard
fix(deps): update dependency commander to v14
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| commander | 12.1.0 -> 14.0.0 |
Release Notes
tj/commander.js (commander)
v14.0.0
Added
- support for groups of options and commands in the help using low-level
.helpGroup()onOptionandCommand, and higher-level.optionsGroup()and.commandsGroup()which can be used in chaining way to specify group title for following options/commands ([#2328]) - support for unescaped negative numbers as option-arguments and command-arguments ([#2339])
- TypeScript: add
parseArgproperty toArgumentclass ([#2359])
Fixed
- remove bogus leading space in help when option has default value but not a description ([#2348])
.configureOutput()now makes copy of settings instead of modifying in-place, fixing side-effects ([#2350])
Changed
- Breaking: Commander 14 requires Node.js v20 or higher
- internal refactor of
Helpclass adding.formatItemList()and.groupItems()methods ([#2328])
v13.1.0
Added
- support a pair of long option flags to allow a memorable shortened flag, like
.option('--ws, --workspace')([#2312])
v13.0.0
Added
- support multiple calls to
.parse()with default settings ([#2299]) - add
.saveStateBeforeParse()and.restoreStateBeforeParse()for use by subclasses ([#2299]) - style routines like
styleTitle()to add color to help using.configureHelp()or Help subclass ([#2251]) - color related support in
.configureOutput()forgetOutHasColors(),getErrHasColors(), andstripColor()([#2251]) - Help property for
minWidthToWrap([#2251]) - Help methods for
displayWidth(),boxWrap(),preformatted()et al ([#2251])
Changed
- Breaking: excess command-arguments cause an error by default, see migration tips ([#2223])
- Breaking: throw during Option construction for unsupported option flags, like multiple characters after single
-([#2270])- note: support for dual long option flags added in Commander 13.1
- Breaking: throw on multiple calls to
.parse()ifstoreOptionsAsProperties: true([#2299]) - TypeScript: include implicit
thisin parameters for action handler callback ([#2197])
Deleted
- Breaking:
Help.wrap()refactored intoformatItem()andboxWrap()([#2251])
Migration Tips
Excess command-arguments
It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)
Old code:
program.option('-p, --port <number>', 'port number');
program.action((options) => {
console.log(program.args);
});
Now shows an error:
$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.
You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.
program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
program.action((args, options) => {
console.log(args);
});
Or you could suppress the error, useful for minimising changes in legacy code.
program.option('-p, --port', 'port number');
program.allowExcessArguments();
program.action((options) => {
console.log(program.args);
});
Stricter option flag parsing
Commander now throws an error for option flag combinations that are not supported. In particular, a short flag with multiple characters is now an error.
program.option('-ws, --workspace'); // throws error
A short option has a single character:
program.option('-w, --workspace');
Or from Commander 13.1 you can have an extra long flag instead of a short flag to allow a more memorable shortcut for the full name:
program.option('--ws, --workspace');
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
⚠️ Artifact update problem
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
- any of the package files in this branch needs updating, or
- the branch becomes conflicted, or
- you click the rebase/retry checkbox if found above, or
- you rename this PR's title to start with "rebase!" to trigger it manually
The artifact failure details are included below:
File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @types/[email protected]
npm error Found: @types/[email protected]
npm error node_modules/@types/chai
npm error dev @types/chai@"5.2.2" from the root project
npm error
npm error Could not resolve dependency:
npm error peer @types/chai@"<5.2.0" from @types/[email protected]
npm error node_modules/@types/chai-subset
npm error dev @types/chai-subset@"1.3.6" from the root project
npm error
npm error Conflicting peer dependency: @types/[email protected]
npm error node_modules/@types/chai
npm error peer @types/chai@"<5.2.0" from @types/[email protected]
npm error node_modules/@types/chai-subset
npm error dev @types/chai-subset@"1.3.6" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-11-19T23_38_09_103Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-11-19T23_38_09_103Z-debug-0.log