dependabot[bot] opened a new pull request, #901:
URL: https://github.com/apache/kafka-site/pull/901

   Bumps [npm-check-updates](https://github.com/raineorshine/npm-check-updates) 
from 22.2.9 to 23.0.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/raineorshine/npm-check-updates/releases";>npm-check-updates's
 releases</a>.</em></p>
   <blockquote>
   <h2>v23.0.1</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>Pin Docker base image by digest by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1947";>raineorshine/npm-check-updates#1947</a></li>
   <li>build(deps): bump the github-actions group with 4 updates by <a 
href="https://github.com/dependabot";><code>@​dependabot</code></a>[bot] in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1950";>raineorshine/npm-check-updates#1950</a></li>
   <li>Add zizmor workflow by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1946";>raineorshine/npm-check-updates#1946</a></li>
   <li>Update LICENSE by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1952";>raineorshine/npm-check-updates#1952</a></li>
   <li>Delete the unused .github/screenshot.png by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1953";>raineorshine/npm-check-updates#1953</a></li>
   <li>Replace timeago.js with the native Intl.RelativeTimeFormat by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1936";>raineorshine/npm-check-updates#1936</a></li>
   <li>Doc fixes by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1955";>raineorshine/npm-check-updates#1955</a></li>
   <li>Update dependencies by <a 
href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1954";>raineorshine/npm-check-updates#1954</a></li>
   <li>build(deps): bump the github-actions group with 3 updates by <a 
href="https://github.com/dependabot";><code>@​dependabot</code></a>[bot] in <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1965";>raineorshine/npm-check-updates#1965</a></li>
   <li>Replace libnpmconfig and figgy-pudding with an in-house npm config 
loader by <a href="https://github.com/XhmikosR";><code>@​XhmikosR</code></a> in 
<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1934";>raineorshine/npm-check-updates#1934</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/raineorshine/npm-check-updates/compare/v23.0.0...v23.0.1";>https://github.com/raineorshine/npm-check-updates/compare/v23.0.0...v23.0.1</a></p>
   <h2>v23.0.0</h2>
   <h3>⚠️ Breaking changes &amp; migration</h3>
   <p><strong>1. Node.js 22+ required</strong> (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1844";>#1844</a>)
   The minimum supported Node.js is now <strong>22</strong>. Supported 
versions: <code>^22.22.2 || ^24.15.0 || &gt;=26.0.0</code> (and npm 
<code>&gt;=10</code>).</p>
   <ul>
   <li><em>Migration:</em> Upgrade Node before installing. On older Node, stay 
on v22.x.</li>
   </ul>
   <p><strong>2. Pure ESM package — CJS build dropped, default export is now 
callable</strong> (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1916";>#1916</a>,
 <a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1894";>#1894</a>)
   The package is now pure ESM (no more CommonJS build), and the default export 
is now callable directly. <code>ncu.run()</code> and 
<code>ncu.defineConfig()</code> still work as namespaced properties.</p>
   <ul>
   <li><em>Migration (ESM):</em>
   <pre lang="js"><code>// before
   import * as ncu from 'npm-check-updates'
   const upgraded = await ncu.run({ /* ... */ })
   // after
   import ncu from 'npm-check-updates'
   const upgraded = await ncu({ /* ... */ }) // ncu.run({...}) also still works
   </code></pre>
   </li>
   <li><em>Migration (CommonJS):</em> Still usable via Node's native 
<code>require()</code> of ESM (Node 22+), but the import shape changed:
   <pre lang="js"><code>// before
   const ncu = require('npm-check-updates')
   // after
   const { default: ncu } = require('npm-check-updates')
   ncu({ /* ... */ }).then(upgraded =&gt; console.log(upgraded))
   </code></pre>
   </li>
   </ul>
   <p><strong>3. <code>filterVersion</code> / <code>rejectVersion</code> no 
longer accept a predicate function. Use <code>filter</code> / 
<code>reject</code> instead.</strong> (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1933";>#1933</a>)
   These options now accept only a string, wildcard, glob, 
comma/space-delimited list, or <code>/regex/</code>. (CLI usage is unchanged — 
the CLI never supported functions.)</p>
   <ul>
   <li><em>Migration:</em> If you passed a function to 
<code>filterVersion</code>/<code>rejectVersion</code> in <code>.ncurc.js</code> 
or via the module API, move it to <code>filter</code> / <code>reject</code> 
instead. Those receive the package name <strong>and</strong> the parsed current 
version, so they can match on both:
   <pre lang="js"><code>// before
   filterVersion: (name, semver) =&gt; !(name.startsWith('@myorg/') &amp;&amp; 
+semver[0].major &gt; 5)
   // after
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/16594d91c56ac938400ccccd42ee8b2091b4bd1d";><code>16594d9</code></a>
 23.0.1</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/619e1363c1168b3bbe2904fa2770992176a9bea8";><code>619e136</code></a>
 Replace libnpmconfig and figgy-pudding with an in-house npm config loader (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1";>#1</a>...</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/4b6574af6cd9ba99fc3bffd5da16dd2b1e6e9d93";><code>4b6574a</code></a>
 build(deps): bump the github-actions group with 3 updates (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1965";>#1965</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/f3ae9d323588dc977cee5b82aba72b5886b1f261";><code>f3ae9d3</code></a>
 Update dependencies (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1954";>#1954</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/15fcef7483950945fd44b05242b3b630b7a53f08";><code>15fcef7</code></a>
 Doc fixes (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1955";>#1955</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/b37432f7b97f74cc6eb4668733ab259805867fa4";><code>b37432f</code></a>
 Replace timeago.js with the native Intl.RelativeTimeFormat (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1936";>#1936</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/f2055b0a35cbbb5f202101087b4c2933868c2052";><code>f2055b0</code></a>
 Delete the unused .github/screenshot.png (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1953";>#1953</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/87758d8a1cfcd5620b314bcecf6cd9382f9ad540";><code>87758d8</code></a>
 Update LICENSE (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1952";>#1952</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/b70e3c3d1c84d0b633bbfabdcaefbea915c9702f";><code>b70e3c3</code></a>
 Add zizmor workflow (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1946";>#1946</a>)</li>
   <li><a 
href="https://github.com/raineorshine/npm-check-updates/commit/1179fb30de1a53cfeaf41b04c02c92a7c9dca479";><code>1179fb3</code></a>
 build(deps): bump the github-actions group with 4 updates (<a 
href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1950";>#1950</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/raineorshine/npm-check-updates/compare/v22.2.9...v23.0.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=npm-check-updates&package-manager=npm_and_yarn&previous-version=22.2.9&new-version=23.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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to