dependabot[bot] opened a new pull request, #2706:
URL: https://github.com/apache/jena/pull/2706

   Bumps [concurrently](https://github.com/open-cli-tools/concurrently) from 
8.2.2 to 9.0.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/open-cli-tools/concurrently/releases";>concurrently's 
releases</a>.</em></p>
   <blockquote>
   <h2>v9.0.0</h2>
   <h1>💥 Breaking Changes</h1>
   <ul>
   <li>
   <p><strong>Dropped support for Node.js &lt; 18.0.0</strong>.
   Older Node.js version have reached end-of-life, and certain features require 
new-ish JS APIs.</p>
   </li>
   <li>
   <p><strong>The <code>concurrently</code> and default exports are now the 
same</strong> - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/399";>#399</a>
   It's reasonable to expect that <code>import { concurrently } from 
'concurrently'</code> would work the same as <code>import concurrently from 
'concurrently'</code>, however this has not been the case.
   The former used to be an unconfigured version of concurrently, lacking all 
features that you'd get from the CLI, which was seen as a &quot;footgun&quot;. 
Both are now the same function.</p>
   <p>If you'd like to access the unconfigured function, use <code>import { 
createConcurrently } from 'concurrently'</code> instead.</p>
   </li>
   </ul>
   <h1>✨ New Features</h1>
   <ul>
   <li>Exponential back-off support for process restarting - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/265";>#265</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/462";>#462</a>
   Use <code>--restart-after exponential</code>. Restarts happen at 
<code>2^N</code> seconds.</li>
   <li>Add prefix padding via new <code>--pad-prefix</code> flag - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/166";>#166</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/417";>#417</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/495";>#495</a></li>
   <li>Specify teardown commands via new <code>--teardown</code> flag - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/472";>#472</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/500";>#500</a></li>
   <li>Expand <code>node:&lt;script&gt;</code> commands to <code>node --run 
&lt;script&gt;</code> - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/475";>#475</a></li>
   <li><em>[API only]</em> Inter-Process Communication (ipc) - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/498";>#498</a></li>
   <li><em>[API only]</em> Make it possible to use no colors at all - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/466";>#466</a></li>
   <li><em>[API only]</em> Add a <code>state</code> field to 
<code>Command</code> - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/455";>#455</a></li>
   </ul>
   <h1>🐛 Bug Fixes</h1>
   <ul>
   <li>Fix importing concurrently in ESM package - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/454";>#454</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/456";>#456</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/494";>#494</a></li>
   <li>Make sure concurrently doesn't resolve when manually restarting commands 
through API - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/463";>#463</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/464";>#464</a></li>
   <li>Abort commands not running when max processes &lt; N - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/433";>#433</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/452";>#452</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/460";>#460</a></li>
   <li>Fix warning coming from <code>spawn-command</code> when running in Node 
22 - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/407";>#407</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/477";>#477</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/479";>#479</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/492";>#492</a></li>
   <li>Make <code>--raw</code> and <code>--hide</code> compatible - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/394";>#394</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/486";>#486</a></li>
   <li>Ensure prefix is written when logging without a trailing LF - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/467";>#467</a></li>
   </ul>
   <h1>Other Changes</h1>
   <ul>
   <li><code>--help</code> no longer shows examples due to there being too many.
   Refer to <a 
href="https://github.com/open-cli-tools/concurrently/tree/v9.0.0/docs";>https://github.com/open-cli-tools/concurrently/tree/v9.0.0/docs</a>
 instead, or to  the <code>node_modules/concurrently/docs</code> directory in 
your project.</li>
   <li>Improve examples of <code>--passthrough-arguments</code> - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/490";>#490</a></li>
   <li>Replace <code>date-fns</code> with hand-rolled date formatting - <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/436";>#436</a>,
 <a 
href="https://redirect.github.com/open-cli-tools/concurrently/issues/443";>#443</a>
   This should make installing concurrently faster.</li>
   </ul>
   <h1>New Contributors</h1>
   <ul>
   <li><a href="https://github.com/odeadglaz";><code>@​odeadglaz</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/open-cli-tools/concurrently/pull/464";>open-cli-tools/concurrently#464</a></li>
   <li><a 
href="https://github.com/mitchhentgesspotify";><code>@​mitchhentgesspotify</code></a>
 made their first contribution in <a 
href="https://redirect.github.com/open-cli-tools/concurrently/pull/474";>open-cli-tools/concurrently#474</a></li>
   <li><a 
href="https://github.com/mark-monteiro";><code>@​mark-monteiro</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/open-cli-tools/concurrently/pull/480";>open-cli-tools/concurrently#480</a></li>
   <li><a href="https://github.com/PoQuatre";><code>@​PoQuatre</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/open-cli-tools/concurrently/pull/486";>open-cli-tools/concurrently#486</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/open-cli-tools/concurrently/compare/v8.2.2...v9.0.0";>https://github.com/open-cli-tools/concurrently/compare/v8.2.2...v9.0.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/a7a5894e2daf9dd64059200cc1c53c756412b3cd";><code>a7a5894</code></a>
 9.0.0</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/758ee7fd020a2dccedc72a27ad0cc6d74979eb32";><code>758ee7f</code></a>
 tests: update smoke tests lockfile</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/710ee55e8ca25192e14203e2738a1b5178da75ea";><code>710ee55</code></a>
 Replace date-fns for hand-rolled date formatting</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/fe7b69c1f0c5e5875f6235fab9d774726f7a1731";><code>fe7b69c</code></a>
 deps: update <code>@​types/node</code> to 18.x.x too</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/fd2d140899fe18fd150717926cd8f274a21f7e6d";><code>fd2d140</code></a>
 Bump minimum Node version to 18</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/37f98b24a4a14d26cc604cf5cc64c0bdd010f490";><code>37f98b2</code></a>
 deps: update several dev dependencies</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/1b5df3a67bddead277a8d1c6685c0874af5908c9";><code>1b5df3a</code></a>
 deps: update everything eslint</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/7fc4803530d3bb5fb44968697bf43c88475a3882";><code>7fc4803</code></a>
 Make it possible to use no colors at all through API</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/f4fb4f7ea3116df7d768f07619ca893e01d1d2a1";><code>f4fb4f7</code></a>
 bin: fix SIGINT test on Windows</li>
   <li><a 
href="https://github.com/open-cli-tools/concurrently/commit/bd6ac580610e25ed4994219079c6aaec7fe40ee3";><code>bd6ac58</code></a>
 bin: fix tests failing due to compilation to different dir</li>
   <li>Additional commits viewable in <a 
href="https://github.com/open-cli-tools/concurrently/compare/v8.2.2...v9.0.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=concurrently&package-manager=npm_and_yarn&previous-version=8.2.2&new-version=9.0.0)](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>


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to