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(deps): update dependency execa to v8 - autoclosed #711

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
execa 5.1.1 -> 8.0.1 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'

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 force-pushed the renovate/execa-8.x branch 12 times, most recently from f8fe642 to ce41050 Compare December 14, 2023 16:48
@renovate renovate bot force-pushed the renovate/execa-8.x branch 3 times, most recently from 10b051d to 2c5618a Compare December 18, 2023 21:33
@renovate renovate bot force-pushed the renovate/execa-8.x branch 5 times, most recently from 05b86f7 to 1103cf2 Compare December 30, 2023 03:36
@renovate renovate bot force-pushed the renovate/execa-8.x branch 5 times, most recently from dd1a5b0 to 0655d3d Compare January 7, 2024 21:44
@renovate renovate bot force-pushed the renovate/execa-8.x branch 5 times, most recently from 1ec0ec8 to 80fdee5 Compare January 14, 2024 08:18
@renovate renovate bot force-pushed the renovate/execa-8.x branch 12 times, most recently from c9733c8 to a2f4d4f Compare April 10, 2024 23:07
@renovate renovate bot force-pushed the renovate/execa-8.x branch 3 times, most recently from 9854ac4 to a244ce8 Compare April 20, 2024 01:50
@renovate renovate bot force-pushed the renovate/execa-8.x branch 3 times, most recently from 9ed1331 to 455f245 Compare April 23, 2024 11:54
@renovate renovate bot force-pushed the renovate/execa-8.x branch 6 times, most recently from 20d873e to 5af3ae9 Compare May 6, 2024 21:17
@renovate renovate bot changed the title chore(deps): update dependency execa to v8 chore(deps): update dependency execa to v8 - autoclosed May 8, 2024
@renovate renovate bot closed this May 8, 2024
@renovate renovate bot deleted the renovate/execa-8.x branch May 8, 2024 21:01
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.

None yet

0 participants