Bump npm-check-updates from 18.0.1 to 19.1.1 in /frontend #137

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/frontend/npm-check-updates-19.1.1 into main 2025-10-18 21:31:54 +01:00
dependabot[bot] commented 2025-10-16 06:25:27 +01:00 (Migrated from github.com)

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps npm-check-updates from 18.0.1 to 19.1.1.

Release notes

Sourced from npm-check-updates's releases.

v19.1.1

What's Changed

Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.1.0...v19.1.1

v19.1.0

What's Changed

Full Changelog: https://github.com/raineorshine/npm-check-updates/compare/v19.0.0...v19.1.0

v19.0.0

Breaking

  • node >= 20 required
  • --workspaces (plural) short option -ws changed to -w
    • Better compatibility with commander v13
    • Short option should always be a single character for consistency
    • Replaces the short option for --workspace (singular)
    • --workspace (singular) no longer has a short option.

v18.2.0

Thanks to community members for raising awareness and to @​SebastianSedzik for the implementation.

See: #1547

Feature: --cooldown

Usage:

ncu --cooldown [n]
ncu -c [n]

The cooldown option helps protect against supply chain attacks by requiring package versions to be published at least the given number of days before considering them for upgrade.

Note that previous stable versions will not be suggested. The package will be completely ignored if its latest published version is within the cooldown period. This is due to a limitation of the npm registry, which does not provide a way to query previous stable versions.

Example:

Let's examine how cooldown works with a package that has these versions available:

1.0.0          Released 7 days ago    (initial version)
1.1.0          Released 6 days ago    (minor update)
1.1.1          Released 5 days ago    (patch update)
1.2.0          Released 5 days ago    (minor update)
2.0.0-beta.1   Released 5 days ago    (beta release)
1.2.1          Released 4 days ago    (patch update)

... (truncated)

Commits
  • 442c302 19.1.1
  • dc2a6c4 fix(cooldown): handle CooldownFunction in config file (#1565)
  • ce17ed7 For simplicity and consistency, use a cooldown value of 0 to skip packages.
  • cde9fde 19.1.0
  • d7c0ca6 Fix cli and build options to match prettier output.
  • 3499a2f feat(cooldown): support for cooldown predicate function (#1563)
  • 9af070e Automatically generate GitHub release for each tag.
  • 601f818 19.0.0
  • 73639a9 v19 (#1559)
  • db78e1f Consider "Idle timeout reached" acceptable for timeout error.
  • Additional commits viewable in compare view

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)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [npm-check-updates](https://github.com/raineorshine/npm-check-updates) from 18.0.1 to 19.1.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>v19.1.1</h2> <h2>What's Changed</h2> <ul> <li>fix(cooldown): handle <code>CooldownFunction</code> in config file by <a href="https://github.com/SebastianSedzik"><code>@​SebastianSedzik</code></a> in <a href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1565">raineorshine/npm-check-updates#1565</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/raineorshine/npm-check-updates/compare/v19.1.0...v19.1.1">https://github.com/raineorshine/npm-check-updates/compare/v19.1.0...v19.1.1</a></p> <h2>v19.1.0</h2> <h2>What's Changed</h2> <ul> <li>feat(cooldown): support for cooldown predicate function by <a href="https://github.com/SebastianSedzik"><code>@​SebastianSedzik</code></a> in <a href="https://redirect.github.com/raineorshine/npm-check-updates/pull/1563">raineorshine/npm-check-updates#1563</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/raineorshine/npm-check-updates/compare/v19.0.0...v19.1.0">https://github.com/raineorshine/npm-check-updates/compare/v19.0.0...v19.1.0</a></p> <h2>v19.0.0</h2> <h2>Breaking</h2> <ul> <li>node <code>&gt;= 20</code> required</li> <li><code>--workspaces</code> (plural) short option <code>-ws</code> changed to <code>-w</code> <ul> <li>Better compatibility with commander <a href="https://github.com/tj/commander.js/releases/tag/v13.0.0">v13</a></li> <li>Short option should always be a single character for consistency</li> <li><strong>Replaces the short option for <code>--workspace</code> (singular)</strong></li> <li><strong><code>--workspace</code> (singular) no longer has a short option.</strong></li> </ul> </li> </ul> <h2>v18.2.0</h2> <p>Thanks to community members for raising awareness and to <a href="https://github.com/SebastianSedzik"><code>@​SebastianSedzik</code></a> for the implementation.</p> <p>See: <a href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1547">#1547</a></p> <h2>Feature: <code>--cooldown</code></h2> <p>Usage:</p> <pre><code>ncu --cooldown [n] ncu -c [n] </code></pre> <p>The cooldown option helps protect against supply chain attacks by requiring package versions to be published at least the given number of days before considering them for upgrade.</p> <p>Note that previous stable versions will not be suggested. The package will be completely ignored if its latest published version is within the cooldown period. This is due to a limitation of the npm registry, which does not provide a way to query previous stable versions.</p> <p>Example:</p> <p>Let's examine how cooldown works with a package that has these versions available:</p> <pre><code>1.0.0 Released 7 days ago (initial version) 1.1.0 Released 6 days ago (minor update) 1.1.1 Released 5 days ago (patch update) 1.2.0 Released 5 days ago (minor update) 2.0.0-beta.1 Released 5 days ago (beta release) 1.2.1 Released 4 days ago (patch update) </code></pre> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/442c3025bc46216915742f61f5eb25970d6310c7"><code>442c302</code></a> 19.1.1</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/dc2a6c489d23051074dd27f0833e5f6a3eb63c04"><code>dc2a6c4</code></a> fix(cooldown): handle <code>CooldownFunction</code> in config file (<a href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1565">#1565</a>)</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/ce17ed7dd91c51ada0702f7ff5872e6055afbbb1"><code>ce17ed7</code></a> For simplicity and consistency, use a cooldown value of 0 to skip packages.</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/cde9fde6bd95263425951e49595894b035cd2a21"><code>cde9fde</code></a> 19.1.0</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/d7c0ca6c2cff7d5053b98cbbda205cefc9c7f2f5"><code>d7c0ca6</code></a> Fix cli and build options to match prettier output.</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/3499a2f9ffe12221c40e81bb9f9fdbfc05dc705b"><code>3499a2f</code></a> feat(cooldown): support for cooldown predicate function (<a href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1563">#1563</a>)</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/9af070e65baa0d0ea35b43873b6fc8ae4189443a"><code>9af070e</code></a> Automatically generate GitHub release for each tag.</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/601f818f8f7bdade16165ddf4877e1577ef9aee8"><code>601f818</code></a> 19.0.0</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/73639a9d56e932a349dac4b5d8325ed2a35ea66f"><code>73639a9</code></a> v19 (<a href="https://redirect.github.com/raineorshine/npm-check-updates/issues/1559">#1559</a>)</li> <li><a href="https://github.com/raineorshine/npm-check-updates/commit/db78e1fce1bba0da0c48e264f017161b8200a6a6"><code>db78e1f</code></a> Consider &quot;Idle timeout reached&quot; acceptable for timeout error.</li> <li>Additional commits viewable in <a href="https://github.com/raineorshine/npm-check-updates/compare/v18.0.1...v19.1.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=18.0.1&new-version=19.1.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>
Sign in to join this conversation.
No description provided.