[PR #737] Bump commander from 13.1.0 to 14.0.3 #734

Open
opened 2026-03-03 13:55:53 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jehna/humanify/pull/737
Author: @dependabot[bot]
Created: 2/2/2026
Status: 🔄 Open

Base: mainHead: dependabot/npm_and_yarn/commander-14.0.3


📝 Commits (1)

  • e17cb50 Bump commander from 13.1.0 to 14.0.3

📊 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.3.

Release notes

Sourced from commander's releases.

v14.0.3

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)

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.3] (2026-01-31)

Added

  • Release Policy document (#2462)

Changes

  • old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (#2462)
  • clarify typing for deprecated callback parameter to .outputHelp() (#2427)
  • simple readability improvements to README (#2465)

[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

... (truncated)

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/737 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/2/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/commander-14.0.3` --- ### 📝 Commits (1) - [`e17cb50`](https://github.com/jehna/humanify/commit/e17cb502c38a1670783d9baed6b39f3fd16b7c98) Bump commander from 13.1.0 to 14.0.3 ### 📊 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.3. <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.3</h2> <h3>Added</h3> <ul> <li>Release Policy document (<a href="https://redirect.github.com/tj/commander.js/issues/2462">#2462</a>)</li> </ul> <h3>Changes</h3> <ul> <li>old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (<a href="https://redirect.github.com/tj/commander.js/issues/2462">#2462</a>)</li> <li>clarify typing for deprecated callback parameter to <code>.outputHelp()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2427">#2427</a>)</li> <li>simple readability improvements to README (<a href="https://redirect.github.com/tj/commander.js/issues/2465">#2465</a>)</li> </ul> <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.3] (2026-01-31)</h2> <h3>Added</h3> <ul> <li>Release Policy document (<a href="https://redirect.github.com/tj/commander.js/issues/2462">#2462</a>)</li> </ul> <h3>Changes</h3> <ul> <li>old major versions now supported for 12 months instead of just previous major version, to give predictable end-of-life date (<a href="https://redirect.github.com/tj/commander.js/issues/2462">#2462</a>)</li> <li>clarify typing for deprecated callback parameter to <code>.outputHelp()</code> (<a href="https://redirect.github.com/tj/commander.js/issues/2427">#2427</a>)</li> <li>simple readability improvements to README (<a href="https://redirect.github.com/tj/commander.js/issues/2465">#2465</a>)</li> </ul> <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> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tj/commander.js/commit/8247364da749736570161e95682b07fc2d72497b"><code>8247364</code></a> 14.0.3</li> <li><a href="https://github.com/tj/commander.js/commit/e281fe3e8c63c2518cdd7f3f1966ad2a0fbd1258"><code>e281fe3</code></a> Update docs for 14.0.3 (<a href="https://redirect.github.com/tj/commander.js/issues/2474">#2474</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/7357ddafe2cb7f6eed09217d77db4201e22aad83"><code>7357dda</code></a> Separate out a more detailed release policy document (<a href="https://redirect.github.com/tj/commander.js/issues/2462">#2462</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/b6e2e3a1ebe1751224a5c19778332df93caf0dea"><code>b6e2e3a</code></a> Bump eslint from 9.39.1 to 9.39.2 (<a href="https://redirect.github.com/tj/commander.js/issues/2470">#2470</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/d6f63a7b33716da842e9b67433147150fb9059cd"><code>d6f63a7</code></a> Bump ts-jest from 29.4.5 to 29.4.6 (<a href="https://redirect.github.com/tj/commander.js/issues/2467">#2467</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/2a9768aea01e6d8caa5d55b70d3ad53a35e47288"><code>2a9768a</code></a> Bump prettier from 3.6.2 to 3.7.4 (<a href="https://redirect.github.com/tj/commander.js/issues/2466">#2466</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/921191868b3cb935908256d4655b7bb9c6ad90bc"><code>9211918</code></a> docs(README): Tweak formatting, punctuation for clarity (<a href="https://redirect.github.com/tj/commander.js/issues/2465">#2465</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/4208a96ee7533b7ee5fa10123d169bc8c631b83c"><code>4208a96</code></a> Bump typescript-eslint from 8.46.2 to 8.48.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2458">#2458</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/03308ceb50c8b508abcfc3b34c36daa2e7b813d2"><code>03308ce</code></a> Bump eslint-plugin-jest from 29.0.1 to 29.2.1 (<a href="https://redirect.github.com/tj/commander.js/issues/2457">#2457</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/4d2db1f287112f37e0f9bfac54d5d7d981c5ec01"><code>4d2db1f</code></a> Bump globals from 16.4.0 to 16.5.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2456">#2456</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tj/commander.js/compare/v13.1.0...v14.0.3">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.3)](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>
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#734
No description provided.