Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deps): update dependencies commander from v12.1.0 to v13 #326

Merged
merged 1 commit into from
Jan 7, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 6, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
commander 12.1.0 -> 13.0.0 age adoption passing confidence

Release Notes

tj/commander.js (commander)

v13.0.0

Compare Source

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() for getOutHasColors(), getErrHasColors(), and stripColor() ([#​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])
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true ([#​2299])
  • TypeScript: include implicit this in parameters for action handler callback ([#​2197])
Deleted
  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() ([#​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);
});

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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

@renovate renovate bot requested a review from a team as a code owner January 6, 2025 02:07
@renovate renovate bot added dependencies Pull requests that update a dependency file major-version renovate labels Jan 6, 2025
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Renovate and Dependabot PRs are automatically approved. Still requires human review.

@mohnoor94 mohnoor94 merged commit dafb4bd into main Jan 7, 2025
2 checks passed
@mohnoor94 mohnoor94 deleted the renovate/commander-13.x branch January 7, 2025 13:12
mohnoor94 pushed a commit that referenced this pull request Jan 7, 2025
## [1.12.0](v1.11.1...v1.12.0) (2025-01-07)

### Features

* auto approve bot prs ([#316](#316)) ([806ab90](806ab90))
* **deps:** update dependencies commander from v12.1.0 to v13 ([#326](#326)) ([dafb4bd](dafb4bd))
* **deps:** update dependencies openapi-to-postmanv2 from v4.22.0 to v4.23.1 ([#288](#288)) ([16456b8](16456b8))
* **deps:** update dependencies openapi-to-postmanv2 from v4.23.1 to v4.24.0 ([#297](#297)) ([c59dfc5](c59dfc5))
* **deps:** update dependencies openapi3-ts from v4.3.3 to v4.4.0 ([#301](#301)) ([7f535e0](7f535e0))
mohnoor94 pushed a commit that referenced this pull request Jan 7, 2025
## [1.12.0](v1.11.1...v1.12.0) (2025-01-07)

### Features

* auto approve bot prs ([#316](#316)) ([806ab90](806ab90))
* **deps:** update dependencies commander from v12.1.0 to v13 ([#326](#326)) ([dafb4bd](dafb4bd))
* **deps:** update dependencies openapi-to-postmanv2 from v4.22.0 to v4.23.1 ([#288](#288)) ([16456b8](16456b8))
* **deps:** update dependencies openapi-to-postmanv2 from v4.23.1 to v4.24.0 ([#297](#297)) ([c59dfc5](c59dfc5))
* **deps:** update dependencies openapi3-ts from v4.3.3 to v4.4.0 ([#301](#301)) ([7f535e0](7f535e0))
mohnoor94 pushed a commit that referenced this pull request Jan 7, 2025
## [1.12.0](v1.11.1...v1.12.0) (2025-01-07)

### Features

* auto approve bot prs ([#316](#316)) ([806ab90](806ab90))
* **deps:** update dependencies commander from v12.1.0 to v13 ([#326](#326)) ([dafb4bd](dafb4bd))
* **deps:** update dependencies openapi-to-postmanv2 from v4.22.0 to v4.23.1 ([#288](#288)) ([16456b8](16456b8))
* **deps:** update dependencies openapi-to-postmanv2 from v4.23.1 to v4.24.0 ([#297](#297)) ([c59dfc5](c59dfc5))
* **deps:** update dependencies openapi3-ts from v4.3.3 to v4.4.0 ([#301](#301)) ([7f535e0](7f535e0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file major-version renovate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant