Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency concurrently to v6 #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 14, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
concurrently ^3.5.1 -> 6.2.1 age adoption passing confidence
concurrently ^3.5.1 -> ^6.0.0 age adoption passing confidence

Release Notes

open-cli-tools/concurrently

v6.2.1

Compare Source

  • Fix hanging issue after using programmatic API to read from stdin (#​252, #​253)
    Big kudos to @​brandonchinn178 for finding and fixing this! 🏆 🎉
  • Correctly reexport flow controllers (#​278)

v6.2.0

Compare Source

  • Include killed in the command result in programmatic API (#​250)
  • Make --restart-tries restart forever with negative values (#​263)

v6.1.0

Compare Source

  • Change default color to reset (no color set), instead of gray.dim (#​259, #​275)

v6.0.2

Compare Source

  • Fix --handle-input when input contains a colon (#​269)
  • Update lodash to fix a vulnerability (#​270, #​271)

v6.0.1

Compare Source

  • Fix cwd option not overwriting per command if specified in programmatic API (#​266, #​268)

v6.0.0

Compare Source

v5.3.0

Compare Source

  • Added support for pnpm alongside npm and yarn (#​225)
  • Don't trim prefixes (#​231)
  • Included command info and index in the programmatic API (#​181, #​228)

v5.2.0

Compare Source

  • Support limit of processes at once (#​159, #​175, #​214)
  • Allow different env vars for each command in the programmatic API (#​184)

v5.1.0

Compare Source

  • Return exit codes in the programmatic API (#​213)

v5.0.2

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

Breaking changes

Other changes

v4.1.2

Compare Source

v4.1.1

Compare Source

  • bin: pass --prefix-length argument through (#​189)

v4.1.0

Compare Source

  • Add yarn support (#​171 -- big thanks to @​igrayson!)
  • bin: fix concurrently --version
  • docs: clarify API's successCondition option (#​176)

v4.0.1

Compare Source

  • Make success condition respect exiting order (as per docs), instead of command spec order

v4.0.0

Compare Source

More than anything, v4 is just a big refactor to allow changes to be made faster and more reliably.
It does feature some small breaking changes, and maybe even fixes some longstanding bugs.

Breaking changes

  • The CLI option --allow-restarts is no more.
    Instead, just set --restart-tries to something greater than 0.
  • Input handling is now opt-in via --handle-input flag. (#​147)
    It does come with some specific input parsing that would make it difficult for you to use it with some tools.
  • Setting prefix to none will now actually not prefix commands' outputs.
    Previously, it would prefix with [] .
  • SIGINTs/Ctrl+C will now be handled gracefully. (#​150)
    No more exiting with code 1 or tweaking --success flag.

No more null exit codes (#​133)

That's a pretty bad bug that existed till now. You won't see a log like this anymore:

[1] npm run lint-watch exited with code null

What you will see going forward is the actual exit signal:

[1] npm run lint-watch exited with code SIGTERM

For Windows users, this will invariably still be exit code 1.

concurrently finally gets a shiny ✨ programmatic API!

Closes #​101, #​112. Maybe even #​103.

const concurrently = require('concurrently');
await concurrently([
	'npm:watch-*',
	{ name: 'server', command: 'nodemon' }
], {
  prefix: 'name',
  killOthers: ['failure'],
  restartTries: 3
});

Check the docs here for some info on how to use it.


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/concurrently-6.x branch from 6db8f58 to f1422f8 Compare September 1, 2021 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant