Releases: open-cli-tools/concurrently
v9.2.1
What's Changed
- chore: update eslint-plugin-simple-import-sort from v10 to v12 by @noritaka1166 in #551
- chore: update eslint-config-prettier from v9 to v10 by @noritaka1166 in #552
- Remove lodash by @gustavohenke in #555
- chore: update coveralls-next from v4 to v5 by @noritaka1166 in #557
- Replace jest with vitest by @gustavohenke in #554
- Upgrade to pnpm v10 by @paescuj in #558
- chore: remove unused eslint-plugin-jest by @noritaka1166 in #559
- Minor dependency updates by @paescuj in #560
- Migrate to ESLint v9 by @paescuj in #561
- Update shell-quote to 1.8.3 by @paescuj in #562
- Full coverage by @paescuj in #563
- Update GH actions/workflows, enable NPM provenance by @paescuj in #564
Full Changelog: v9.2.0...v9.2.1
v9.2.0
What's Changed
- Bump esbuild from 0.23.1 to 0.25.0 in the npm_and_yarn group by @dependabot in #528
- fix: don't throw when there are no commands by @gustavohenke in #532
- docs: nicer quotes by @IsaacLeeWebDev in #537
- Add
--kill-timeoutby @gustavohenke in #540 - docs: fix typo by @ldeveber in #542
- fix: correct typos in comments and documentation by @noritaka1166 in #544
- refactor: use startsWith & simplify boolean expression by @noritaka1166 in #543
- refactor: use optional chaining by @noritaka1166 in #545
- Handle SIGPIPEs by @gustavohenke in #547
- refactor: fix map and reduce as return values are not used by @noritaka1166 in #546
- docs: fix typos in docs by @noritaka1166 in #548
- chore: update jest from v29 to v30 by @noritaka1166 in #549
- chore: update @types/jest from v29 to v30 by @noritaka1166 in #550
New Contributors
- @IsaacLeeWebDev made their first contribution in #537
- @ldeveber made their first contribution in #542
- @noritaka1166 made their first contribution in #544
Full Changelog: v9.1.2...v9.2.0
v9.1.2
v9.1.1
What's Changed
Full Changelog: v9.1.0...v9.1.1
v9.1.0
What's Changed
- Remove signal event listeners on finish by @gustavohenke in #512
- Add support for Deno shortcuts and wildcards by @mahtaran in #508
- bin: show help when no args are passed by @gustavohenke in #513
New Contributors
Full Changelog: v9.0.1...v9.1.0
v9.0.1
What's Changed
- Don't set up more than 1 abort signal listener by @gustavohenke in #503
Full Changelog: v9.0.0...v9.0.1
v9.0.0
💥 Breaking Changes
-
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. -
Pending commands no longer run when
--max-processesis set and an interruption/kill signal is sent - #433, #452, #460
Before v9.0.0, pressing Ctrl+C when--max-processesis set meant that only those commands would receive it. Once these stopped, the pending commands would start, which in turn meant that another Ctrl+C press would be necessary to stop them, and so on.
Similar situation applied to combining--max-processeswith--kill-others/--kill-others-on-fail.Starting with v9.0.0, this no longer happens, as these flags and/or key presses send a signal to stop the running commands in addition to preventing new commands from running.
-
The
concurrentlyand default exports are now the same - #399
It's reasonable to expect thatimport { concurrently } from 'concurrently'would work the same asimport 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 at2^Nseconds. - Add prefix padding via new
--pad-prefixflag - #166, #417, #495 - Specify teardown commands via new
--teardownflag - #472, #500 - Expand
node:<script>commands tonode --run <script>- #475 - [API only] Inter-Process Communication (ipc) - #498
- [API only] Make it possible to use no colors at all - #466
- [API only] Add a
statefield toCommand- #455
🐛 Bug Fixes
- Fix importing concurrently in ESM package - #454, #456, #494
- Make sure concurrently doesn't resolve when manually restarting commands through API - #463, #464
- Fix warning coming from
spawn-commandwhen running in Node 22 - #407, #477, #479, #492 - Make
--rawand--hidecompatible - #394, #486 - Ensure prefix is written when logging without a trailing LF - #276, #467
Other Changes
--helpno longer shows examples due to there being too many.
Refer to https://github.com/open-cli-tools/concurrently/tree/v9.0.0/docs instead, or to thenode_modules/concurrently/docsdirectory in your project.- Improve examples of
--passthrough-arguments- #490 - Replace
date-fnswith hand-rolled date formatting - #436, #443
This should make installing concurrently faster.
New Contributors
- @odeadglaz made their first contribution in #464
- @mitchhentgesspotify made their first contribution in #474
- @mark-monteiro made their first contribution in #480
- @PoQuatre made their first contribution in #486
Full Changelog: v8.2.2...v9.0.0
v8.2.2
What's Changed
- fix(suggestion): prefixColors API type to embrace string type by @seiwonpark in #439
- Update dependencies by @paescuj in #441
- Test against Node.js v20 instead of v19 by @paescuj in #442
- Update dependencies by @paescuj in #449
New Contributors
- @seiwonpark made their first contribution in #439
Full Changelog: v8.2.1...v8.2.2
v8.2.1
v8.2.0
What's Changed
- Support REPL languages that use colons by @wyattades in #393
- Update dependencies by @paescuj in #427
New Contributors
- @wyattades made their first contribution in #393
Full Changelog: v8.1.0...v8.2.0