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

Update dependency commander to v12 #540

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2024

This PR contains the following updates:

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

Release Notes

tj/commander.js (commander)

v12.1.0

Compare Source

Added

v12.0.0

Compare Source

Added
  • .addHelpOption() as another way of configuring built-in help option ([#​2006])
  • .helpCommand() for configuring built-in help command ([#​2087])
Fixed
  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal ([#​2023])
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled ([#​1937])
Changed
  • Breaking: Commander 12 requires Node.js v18 or higher ([#​2027])
  • Breaking: throw an error if add an option with a flag which is already in use ([#​2055])
  • Breaking: throw an error if add a command with name or alias which is already in use ([#​2059])
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value ([#​1928])
  • replace non-standard JSDoc of @api private with documented @private ([#​1949])
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) ([#​2087])
  • refactor internal implementation of built-in help option ([#​2006])
  • refactor internal implementation of built-in help command ([#​2087])
Deprecated
  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) ([#​2087])
Removed
  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) ([#​2017])
Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

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 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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from tjenkinson as a code owner March 1, 2024 23:50
@renovate renovate bot force-pushed the renovate/commander-12.x branch 2 times, most recently from 2daf8e9 to 09b4136 Compare March 2, 2024 01:17
Copy link

socket-security bot commented Mar 2, 2024

Removed dependencies detected. Learn more about Socket for GitHub ↗︎

🚮 Removed packages: npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/commander-12.x branch 2 times, most recently from fe16f52 to 802834f Compare March 2, 2024 01:21
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from 33ad385 to 3f6911c Compare March 19, 2024 06:54
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from f600a6b to 574bd7d Compare April 3, 2024 14:29
@renovate renovate bot force-pushed the renovate/commander-12.x branch 2 times, most recently from 761191f to 9a94566 Compare April 10, 2024 07:36
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from 31aa5e7 to 6466562 Compare April 17, 2024 15:26
@renovate renovate bot force-pushed the renovate/commander-12.x branch 2 times, most recently from eb82138 to 821e65e Compare April 22, 2024 08:35
@renovate renovate bot force-pushed the renovate/commander-12.x branch 6 times, most recently from a05e7fd to 0f3fe62 Compare April 30, 2024 18:17
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from a095bcb to 8485991 Compare May 7, 2024 05:21
@renovate renovate bot force-pushed the renovate/commander-12.x branch 4 times, most recently from 6134f2e to 7304dc0 Compare September 24, 2024 07:49
@renovate renovate bot force-pushed the renovate/commander-12.x branch 8 times, most recently from 8612e29 to 2fe85f6 Compare October 4, 2024 12:29
@renovate renovate bot force-pushed the renovate/commander-12.x branch 2 times, most recently from 0e79c59 to c879387 Compare October 9, 2024 10:08
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from 8b357c6 to 9d563c1 Compare October 22, 2024 19:52
@renovate renovate bot force-pushed the renovate/commander-12.x branch 3 times, most recently from fc90ef8 to b6221be Compare November 3, 2024 18:35
@renovate renovate bot force-pushed the renovate/commander-12.x branch 7 times, most recently from b5ef3d2 to 1fdfcec Compare November 11, 2024 11:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants