Dropped support for Node.js < 18.0.0.
Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.
The concurrently and default exports are now the same - #399
It's reasonable to expect that import { concurrently } from 'concurrently' would work the same as import concurrently from 'concurrently', 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 "footgun". Both are now the same function.
If you'd like to access the unconfigured function, use import { createConcurrently } from 'concurrently' instead.
✨ New Features
Exponential back-off support for process restarting - #265, #462
Use --restart-after exponential. Restarts happen at 2^N seconds.
Add prefix padding via new --pad-prefix flag - #166, #417, #495
Specify teardown commands via new --teardown flag - #472, #500
Expand node:<script> commands to node --run <script> - #475
[API only] Inter-Process Communication (ipc) - #498
[API only] Make it possible to use no colors at all - #466
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)
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 < 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 "footgun". 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:<script></code> commands to <code>node --run <script></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 < 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 />
[](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>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Bumps concurrently from 8.2.2 to 9.0.0.
Release notes
Sourced from concurrently's releases.
Commits
a7a58949.0.0758ee7ftests: update smoke tests lockfile710ee55Replace date-fns for hand-rolled date formattingfe7b69cdeps: update@types/nodeto 18.x.x toofd2d140Bump minimum Node version to 1837f98b2deps: update several dev dependencies1b5df3adeps: update everything eslint7fc4803Make it possible to use no colors at all through APIf4fb4f7bin: fix SIGINT test on Windowsbd6ac58bin: fix tests failing due to compilation to different dirDependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Deploying powertools with
Cloudflare Pages
3c0caa2View logs