Skip to content

Commit 8ba4867

Browse files
build(deps): bump inquirer from 12.9.6 to 13.0.1 (#300)
Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 12.9.6 to 13.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/SBoudrias/Inquirer.js/releases">inquirer's releases</a>.</em></p> <blockquote> <h2>[email protected]</h2> <h1>Release Notes</h1> <h2>🚨 Breaking Changes</h2> <p>This is a major release that modernizes the codebase for Node.js ≥ 20.</p> <h3>ESM Only - No More CommonJS Support</h3> <p><strong>Impact:</strong> All packages are now ESM-only. CommonJS imports are no longer supported.</p> <p>If you're on modern Node versions (≥ 20), this should be transparent and have no impact.</p> <h3>Node.js Version Requirement</h3> <p><strong>Minimum Node.js version is now 20.x</strong></p> <p>Node.js versions below 20 are no longer supported. Please upgrade to Node.js 20 or later.</p> <p>Node min versions: <code>&gt;=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0</code></p> <h3>Deprecated APIs Removed</h3> <p>The following deprecated APIs have been removed after being deprecated in previous releases:</p> <h4><code>list</code> prompt alias removed (affects <code>inquirer</code> package only)</h4> <p>The <code>list</code> alias has been removed from the <code>inquirer</code> package. This only impacts users of the legacy <code>inquirer</code> package, not users of <code>@inquirer/prompts</code> or individual prompt packages.</p> <pre lang="js"><code>// ❌ No longer available (inquirer package only) import inquirer from 'inquirer'; const answer = await inquirer.prompt([ { type: 'list', name: 'choice', message: 'Pick one:', choices: ['a', 'b'] } ]); <p>// ✅ Use 'select' instead import inquirer from 'inquirer'; const answer = await inquirer.prompt([ { type: 'select', name: 'choice', message: 'Pick one:', choices: ['a', 'b'] } ]); </code></pre></p> <h4><code>helpMode</code> theme property removed</h4> <pre lang="js"><code>// ❌ No longer available const answer = await select({ theme: { helpMode: 'never' } }); <p>&lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/cce79ce3b9bbdfb4dbb798078cf3b94b9adc7d1b"><code>cce79ce</code></a> chore: Publish new release</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/b1101a83327b55f424d295f6b13ea33ca573cb97"><code>b1101a8</code></a> fix: Replace lerna with lerna-lite (Fix <a href="https://redirect.github.com/SBoudrias/Inquirer.js/issues/1894">#1894</a>)</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/aaedbec01c488131a1448ff90e42e310f62785f7"><code>aaedbec</code></a> fix: yarn cache</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/676685d33374a30340c1b9f0831c7eae2b2357dd"><code>676685d</code></a> Publish</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/06268e45896423f8334513ccfeff3a17538bf8fc"><code>06268e4</code></a> Chore(deps): Bump js-yaml from 3.14.1 to 3.14.2</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/74d2695007e0d204b204b89b4da3a5263a976c5a"><code>74d2695</code></a> chore: Bump all dependencies to latest</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/0d18adab79fe93cacb3fc21b6e40cb07a82027c7"><code>0d18ada</code></a> BREAKING: dropping CJS dual module export (now ESM only) (<a href="https://redirect.github.com/SBoudrias/Inquirer.js/issues/1856">#1856</a>)</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/d75643f0534d70bcd751d310aa402740f0637deb"><code>d75643f</code></a> chore: Remove all deprecated code</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/caf53b95b198f1c31628142e97c3c8b7e37ed880"><code>caf53b9</code></a> breaking: Drop yoctocolors in favor of styleText (Node built-in util)</li> <li><a href="https://github.com/SBoudrias/Inquirer.js/commit/4a16c347a82c94510ffc3f0dde698d67a103c4f9"><code>4a16c34</code></a> breaking(*): Set officially supported Node version &gt;=20</li> <li>Additional commits viewable in <a href="https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@13.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=inquirer&package-manager=npm_and_yarn&previous-version=12.9.6&new-version=13.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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9c0adce commit 8ba4867

File tree

2 files changed

+206
-145
lines changed

2 files changed

+206
-145
lines changed

0 commit comments

Comments
 (0)