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

chore: update dependency execa to v8 #3789

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 22, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
execa ^1.0.0 -> ^8.0.0 age adoption passing confidence

Release Notes

sindresorhus/execa (execa)

v8.0.1

Compare Source

Fixes

v8.0.0

Compare Source

Breaking
  • Require Node.js 16.17.0 and later (#​569)

v7.2.0

Compare Source

v7.1.1

Compare Source

Features

Bug fixes

v7.1.0

Compare Source

Features

import {$} from 'execa';

const branch = await $`git branch --show-current`;
await $`dep deploy --branch=${branch}`;
// Similar to `echo unicorns > stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStdout('stdout.txt');

// Similar to `echo unicorns 2> stdout.txt` in Bash
await execa('echo', ['unicorns']).pipeStderr('stderr.txt');

// Similar to `echo unicorns &> stdout.txt` in Bash
await execa('echo', ['unicorns'], {all: true}).pipeAll('all.txt');
// Similar to `cat < stdin.txt` in Bash
const {stdout} = await execa('cat', {inputFile: 'stdin.txt'});
console.log(stdout);
//=> 'unicorns'
  • Add verbose option to print each command on stderr before executing it. This can also be enabled by setting the NODE_DEBUG=execa environment variable in the current process.
> node file.js
unicorns
rainbows

> NODE_DEBUG=execa node file.js
[16:50:03.305] echo unicorns
unicorns
[16:50:03.308] echo rainbows
rainbows

v7.0.0

Compare Source

Breaking
Fixes

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 (#​478) 7707880
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports.
    • require('execa')import {execa} from 'execa'
    • require('execa').syncimport {execaSync} from 'execa'
    • require('execa').commandimport {execaCommand} from 'execa'
    • require('execa').commandSyncimport {execaCommandSync} from 'execa'
    • require('execa').nodeimport {execaNode} from 'execa'

v5.1.1

Compare Source

  • Fix error message when user passes a single array argument (#​468) 2b9c0e1

v5.1.0

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

Breaking
  • Remove faulty emulated ENOENT error on Windows (#​447) bdbd975
    This is only a breaking change if you depend on the exact error message.
Improvements

v4.1.0

Compare Source

v4.0.3

Compare Source

  • Fix use of floating number for the timeout and forceKillAfterTimeout options (#​431) 9a157b3

v4.0.2

Compare Source

Bug fixes

  • Fix with third-party promises (like bluebird) not working (#​427)

v4.0.1

Compare Source

Bug fixes

  • Fix checking for Error instances (#​423)

v4.0.0

Compare Source

Breaking changes

Bug fixes

  • Fix childProcess.kill() not working with Electron (#​400)

v3.4.0

Compare Source

Features

v3.3.0

Compare Source

Features

  • Allow setting the windowsHide option (#​388). The option still defaults to true. However previously it could not be set to false.

Documentation

  • Add tip on how to retry Execa on failure (#​386).
  • Improve examples (#​385)

Thanks @​justsml for helping improving the documentation!

v3.2.0

Compare Source

Features

v3.1.0

Compare Source

Features

  • Add execPath option which allows changing the path to the Node.js executable to use in child processes. (#​377)

v3.0.0

Compare Source

Breaking changes

Features

Bug fixes

  • Fix errors being thrown when detached: true or cleanup: false is used (#​360)
  • Make execa compatible with Node.js 13.0.0-pre (#​370)

Dependencies

  • Upgrade npm-run-path from 3.0.0 to 4.0.0 (#​376)
  • Upgrade cross-spawn to 7.0.0 (#​367)

Documentation

  • Document the reasons why the returned promise might fail (#​364)

v2.1.0

Compare Source

Features
Documentation
  • Document the reasons why the returned promise might fail (#​364)
Dependencies
  • Upgrade cross-spawn to 7.0.0 (#​367)

v2.0.5

Compare Source

Bug fixes

v2.0.4

Compare Source

Bug fixes

  • Fix errors being thrown when detached: true or cleanup: false is used (#​360) 211febe

v2.0.3

Compare Source

Bug fixes

  • Add missing TypeScript definition for all (#​345)

Documentation

  • Add tip on how to execute the current package's binary (#​339, #​340)

v2.0.2

Compare Source

Bug fixes

v2.0.1

Compare Source

Bug fixes

  • Correctly set the engines.node field in package.json. Supported Node versions are either ^8.12.0 or >=9.7.0 (#​319, #​323)

Documentation

v2.0.0

Compare Source

Thanks to @​GMartigny, @​BendingBender, @​tomsotte, @​ammarbinfaisal, @​zokker13, @​stroncium, @​satyarohith, @​bradfordlemley, @​coreyfarrell, @​brandon93s, @​dtinth, @​papb for the great features and bug fixes they've contributed!

Please check the Medium article about this release!

Breaking changes

Features

Bug fixes

Documentation

Design

Tests

Maintainers


Configuration

📅 Schedule: Branch creation - "after 10pm,before 5:00am" (UTC), Automerge - 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 this update again.


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

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

@renovate renovate bot added the dependencies Updates a dependency label Aug 22, 2023
@bpmn-io-tasks bpmn-io-tasks bot added the needs review Review pending label Aug 22, 2023
@nikku nikku added the in progress Currently worked on label Aug 22, 2023 — with bpmn-io-tasks
@nikku nikku removed the needs review Review pending label Aug 22, 2023
@nikku nikku self-assigned this Aug 22, 2023
@nikku
Copy link
Member

nikku commented Aug 22, 2023

Applying our "migrate to ESM" strategy this one is going to be quite some work.

@nikku nikku removed their assignment Aug 23, 2023
@nikku
Copy link
Member

nikku commented Aug 23, 2023

Larger refactoring effort. I'll drop this for the moment.

@nikku nikku added backlog Queued in backlog and removed in progress Currently worked on labels Aug 23, 2023
@nikku nikku marked this pull request as draft August 28, 2023 14:09
@bpmn-io-tasks bpmn-io-tasks bot added in progress Currently worked on and removed backlog Queued in backlog labels Aug 28, 2023
@nikku nikku added the backlog Queued in backlog label Aug 28, 2023 — with bpmn-io-tasks
@nikku nikku removed the in progress Currently worked on label Aug 28, 2023
@barmac
Copy link
Collaborator

barmac commented Oct 19, 2023

Let's close this and we can migrate when we are ready.

@barmac barmac closed this Oct 19, 2023
@bpmn-io-tasks bpmn-io-tasks bot removed the backlog Queued in backlog label Oct 19, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Oct 19, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 8.x releases. But if you manually upgrade to 8.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/execa-8.x branch October 19, 2023 14:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Updates a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants