[PR #661] [CLOSED] Bump commander from 13.1.0 to 14.0.2 #664

Closed
opened 2026-03-03 13:55:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jehna/humanify/pull/661
Author: @dependabot[bot]
Created: 10/27/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/commander-14.0.2


📝 Commits (1)

  • 6686e97 Bump commander from 13.1.0 to 14.0.2

📊 Changes

2 files changed (+6 additions, -6 deletions)

View changed files

📝 package-lock.json (+5 -5)
📝 package.json (+1 -1)

📄 Description

Bumps commander from 13.1.0 to 14.0.2.

Release notes

Sourced from commander's releases.

v14.0.2

Changed

  • improve negative number auto-detection test (#2428)
  • update (dev) dependencies

v14.0.1

Fixed

  • broken markdown link in README (#2369)

Changed

  • improve code readability by using optional chaining (#2394)
  • use more idiomatic code with object spread instead of Object.assign() (#2395)
  • improve code readability using string.endsWith() instead of string.slice() (#2396)
  • refactor .parseOptions() to process args array in-place (#2409)
  • change private variadic support routines from ._concatValue() to ._collectValue() (change code from array.concat() to array.push()) (#2410)
  • update (dev) dependencies

v14.0.0

Added

  • support for groups of options and commands in the help using low-level .helpGroup() on Option and Command, and higher -level .optionsGroup() and .commandsGroup() which can be used in chaining way to specify group title for following option s/commands (#2328)
  • support for unescaped negative numbers as option-arguments and command-arguments (#2339)
  • TypeScript: add parseArg property to Argument class (#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 Help class adding .formatItemList() and .groupItems() methods (#2328)
Changelog

Sourced from commander's changelog.

[14.0.2] (2025-10-25)

Changed

  • improve negative number auto-detection test (#2428)
  • update (dev) dependencies

[14.0.1] (2025-09-12)

Fixed

  • broken markdown link in README (#2369)

Changed

  • improve code readability by using optional chaining (#2394)
  • use more idiomatic code with object spread instead of Object.assign() (#2395)
  • improve code readability using string.endsWith() instead of string.slice() (#2396)
  • refactor .parseOptions() to process args array in-place (#2409)
  • change private variadic support routines from ._concatValue() to ._collectValue() (change code from array.concat() to array.push()) (#2410)
  • update (dev) dependencies

[14.0.0] (2025-05-18)

Added

  • support for groups of options and commands in the help using low-level .helpGroup() on Option and Command, 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 parseArg property to Argument class (#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 Help class adding .formatItemList() and .groupItems() methods (#2328)
Commits

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jehna/humanify/pull/661 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/27/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/commander-14.0.2` --- ### 📝 Commits (1) - [`6686e97`](https://github.com/jehna/humanify/commit/6686e97ffec5c57d79f0fad625bb4d74b1a8ce38) Bump commander from 13.1.0 to 14.0.2 ### 📊 Changes **2 files changed** (+6 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+5 -5) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [commander](https://github.com/tj/commander.js) from 13.1.0 to 14.0.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tj/commander.js/releases">commander's releases</a>.</em></p> <blockquote> <h2>v14.0.2</h2> <h3>Changed</h3> <ul> <li>improve negative number auto-detection test (<a href="https://redirect.github.com/tj/commander.js/issues/2428">#2428</a>)</li> <li>update (dev) dependencies</li> </ul> <h2>v14.0.1</h2> <h3>Fixed</h3> <ul> <li>broken markdown link in README (<a href="https://redirect.github.com/tj/commander.js/issues/2369">#2369</a>)</li> </ul> <h3>Changed</h3> <ul> <li>improve code readability by using optional chaining (<a href="https://redirect.github.com/tj/commander.js/issues/2394">#2394</a>)</li> <li>use more idiomatic code with object spread instead of <code>Object.assign()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2395">#2395</a>)</li> <li>improve code readability using <code>string.endsWith()</code> instead of <code>string.slice()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2396">#2396</a>)</li> <li>refactor <code>.parseOptions()</code> to process args array in-place (<a href="https://redirect.github.com/tj/commander.js/issues/2409">#2409</a>)</li> <li>change private variadic support routines from <code>._concatValue()</code> to <code>._collectValue()</code> (change code from <code>array.concat()</code> to <code>array.push()</code>) (<a href="https://redirect.github.com/tj/commander.js/issues/2410">#2410</a>)</li> <li>update (dev) dependencies</li> </ul> <h2>v14.0.0</h2> <h3>Added</h3> <ul> <li>support for groups of options and commands in the help using low-level <code>.helpGroup()</code> on <code>Option</code> and <code>Command</code>, and higher -level <code>.optionsGroup()</code> and <code>.commandsGroup()</code> which can be used in chaining way to specify group title for following option s/commands (<a href="https://redirect.github.com/tj/commander.js/issues/2328">#2328</a>)</li> <li>support for unescaped negative numbers as option-arguments and command-arguments (<a href="https://redirect.github.com/tj/commander.js/issues/2339">#2339</a>)</li> <li>TypeScript: add <code>parseArg</code> property to <code>Argument</code> class (<a href="https://redirect.github.com/tj/commander.js/issues/2359">#2359</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>remove bogus leading space in help when option has default value but not a description (<a href="https://redirect.github.com/tj/commander.js/issues/2348">#2348</a>)</li> <li><code>.configureOutput()</code> now makes copy of settings instead of modifying in-place, fixing side-effects (<a href="https://redirect.github.com/tj/commander.js/issues/2350">#2350</a>)</li> </ul> <h3>Changed</h3> <ul> <li><em>Breaking:</em> Commander 14 requires Node.js v20 or higher</li> <li>internal refactor of <code>Help</code> class adding <code>.formatItemList()</code> and <code>.groupItems()</code> methods (<a href="https://redirect.github.com/tj/commander.js/issues/2328">#2328</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tj/commander.js/blob/master/CHANGELOG.md">commander's changelog</a>.</em></p> <blockquote> <h2>[14.0.2] (2025-10-25)</h2> <h3>Changed</h3> <ul> <li>improve negative number auto-detection test (<a href="https://redirect.github.com/tj/commander.js/issues/2428">#2428</a>)</li> <li>update (dev) dependencies</li> </ul> <h2>[14.0.1] (2025-09-12)</h2> <h3>Fixed</h3> <ul> <li>broken markdown link in README (<a href="https://redirect.github.com/tj/commander.js/issues/2369">#2369</a>)</li> </ul> <h3>Changed</h3> <ul> <li>improve code readability by using optional chaining (<a href="https://redirect.github.com/tj/commander.js/issues/2394">#2394</a>)</li> <li>use more idiomatic code with object spread instead of <code>Object.assign()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2395">#2395</a>)</li> <li>improve code readability using <code>string.endsWith()</code> instead of <code>string.slice()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2396">#2396</a>)</li> <li>refactor <code>.parseOptions()</code> to process args array in-place (<a href="https://redirect.github.com/tj/commander.js/issues/2409">#2409</a>)</li> <li>change private variadic support routines from <code>._concatValue()</code> to <code>._collectValue()</code> (change code from <code>array.concat()</code> to <code>array.push()</code>) (<a href="https://redirect.github.com/tj/commander.js/issues/2410">#2410</a>)</li> <li>update (dev) dependencies</li> </ul> <h2>[14.0.0] (2025-05-18)</h2> <h3>Added</h3> <ul> <li>support for groups of options and commands in the help using low-level <code>.helpGroup()</code> on <code>Option</code> and <code>Command</code>, and higher-level <code>.optionsGroup()</code> and <code>.commandsGroup()</code> which can be used in chaining way to specify group title for following options/commands (<a href="https://redirect.github.com/tj/commander.js/issues/2328">#2328</a>)</li> <li>support for unescaped negative numbers as option-arguments and command-arguments (<a href="https://redirect.github.com/tj/commander.js/issues/2339">#2339</a>)</li> <li>TypeScript: add <code>parseArg</code> property to <code>Argument</code> class (<a href="https://redirect.github.com/tj/commander.js/issues/2359">#2359</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>remove bogus leading space in help when option has default value but not a description (<a href="https://redirect.github.com/tj/commander.js/issues/2348">#2348</a>)</li> <li><code>.configureOutput()</code> now makes copy of settings instead of modifying in-place, fixing side-effects (<a href="https://redirect.github.com/tj/commander.js/issues/2350">#2350</a>)</li> </ul> <h3>Changed</h3> <ul> <li><em>Breaking:</em> Commander 14 requires Node.js v20 or higher</li> <li>internal refactor of <code>Help</code> class adding <code>.formatItemList()</code> and <code>.groupItems()</code> methods (<a href="https://redirect.github.com/tj/commander.js/issues/2328">#2328</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tj/commander.js/commit/0692be58103e1ea8052d5d45ab11cc02e197eea5"><code>0692be5</code></a> Prepare for 14.0.2 (<a href="https://redirect.github.com/tj/commander.js/issues/2437">#2437</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/88a348e13ece0569d27d78910c2adb2fb303303c"><code>88a348e</code></a> Bump actions/setup-node from 5 to 6 (<a href="https://redirect.github.com/tj/commander.js/issues/2438">#2438</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/3fe83d6484f80600f78e969d235a1b88e61a0965"><code>3fe83d6</code></a> Bump github/codeql-action from 3 to 4 (<a href="https://redirect.github.com/tj/commander.js/issues/2435">#2435</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/0b7988ee478c8a8e7f0bb681ea7fb1a8887e2987"><code>0b7988e</code></a> Bump globals from 16.3.0 to 16.4.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2429">#2429</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/8005253833964b3d92cb346e9465114e4bde57b4"><code>8005253</code></a> Bump typescript-eslint from 8.42.0 to 8.45.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2430">#2430</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/213e6793f982f15c7e0b033a1fbe6fcbc8cd7f1a"><code>213e679</code></a> Bump ts-jest from 29.4.1 to 29.4.4 (<a href="https://redirect.github.com/tj/commander.js/issues/2431">#2431</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/7ede91bff1cc2d62e095deddf238f4b181ab9502"><code>7ede91b</code></a> Bump jest from 30.1.3 to 30.2.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2432">#2432</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/8c91f3433e4e5f9475ab63995bd33e8614e82a08"><code>8c91f34</code></a> Bump typescript from 5.9.2 to 5.9.3 (<a href="https://redirect.github.com/tj/commander.js/issues/2433">#2433</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/ff1d2ce86ef5dc50213bb25f97a6b0de808af64d"><code>ff1d2ce</code></a> Improve negative test (<a href="https://redirect.github.com/tj/commander.js/issues/2428">#2428</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/1a6dba53bf3a0a411505397809d5c930b63a6e29"><code>1a6dba5</code></a> Clarify deprecated routine (<a href="https://redirect.github.com/tj/commander.js/issues/2427">#2427</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tj/commander.js/compare/v13.1.0...v14.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commander&package-manager=npm_and_yarn&previous-version=13.1.0&new-version=14.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 13:55:35 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/humanify#664
No description provided.