[PR #602] [CLOSED] Bump commander from 13.1.0 to 14.0.1 #609

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

📋 Pull Request Information

Original PR: https://github.com/jehna/humanify/pull/602
Author: @dependabot[bot]
Created: 9/15/2025
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/commander-14.0.1


📝 Commits (1)

  • 0c3dba7 Bump commander from 13.1.0 to 14.0.1

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

Release notes

Sourced from commander's releases.

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.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/602 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/15/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/commander-14.0.1` --- ### 📝 Commits (1) - [`0c3dba7`](https://github.com/jehna/humanify/commit/0c3dba758fdc465100b5e1f5879723c4e374f073) Bump commander from 13.1.0 to 14.0.1 ### 📊 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.1. <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.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.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/bd4ae263f6966183f3c9e8b105fb5ae3c568c047"><code>bd4ae26</code></a> Prepare for 14.0.1 release (<a href="https://redirect.github.com/tj/commander.js/issues/2426">#2426</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/cb7ae51eb524a9c6ccb530fb6b183f21fb4392eb"><code>cb7ae51</code></a> Bump actions/setup-node from 4 to 5 (<a href="https://redirect.github.com/tj/commander.js/issues/2422">#2422</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/b855083a91dfe95cf62e88898ddde98f032b7027"><code>b855083</code></a> Update dependencies (<a href="https://redirect.github.com/tj/commander.js/issues/2421">#2421</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/64003ac192cc577541161dcc5ac71ce30ddac57d"><code>64003ac</code></a> Bump tsd from 0.32.0 to 0.33.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2419">#2419</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/025ee3f9d58e0a246a8f5ad871c8b530ce4dba37"><code>025ee3f</code></a> Bump <code>@​eslint/js</code> from 9.32.0 to 9.34.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2417">#2417</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/fb2429ead58526da29b1bbbb91e8201f7f7b2d4e"><code>fb2429e</code></a> Bump prettier from 3.5.3 to 3.6.2 (<a href="https://redirect.github.com/tj/commander.js/issues/2415">#2415</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/6e40543335e273064635e1c502148bd60d035855"><code>6e40543</code></a> Bump actions/checkout from 4 to 5 (<a href="https://redirect.github.com/tj/commander.js/issues/2412">#2412</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/c635fad50bbe19b28cb3f68719f832c73cafe30f"><code>c635fad</code></a> Collect variadic with push, add tests (<a href="https://redirect.github.com/tj/commander.js/issues/2410">#2410</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/201d93249b1d38c0d1b3b5960865fdf4f84990b9"><code>201d932</code></a> Refactor parseOptions to process args in-place (<a href="https://redirect.github.com/tj/commander.js/issues/2409">#2409</a>)</li> <li><a href="https://github.com/tj/commander.js/commit/fb65fca26edf2b91377665f0c6bd0d721828b7b5"><code>fb65fca</code></a> Bump eslint from 9.30.1 to 9.32.0 (<a href="https://redirect.github.com/tj/commander.js/issues/2402">#2402</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tj/commander.js/compare/v13.1.0...v14.0.1">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.1)](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:20 +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#609
No description provided.