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

fix(deps): update dependency execa to v7 (master) - autoclosed #343

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
execa ^5.1.1 -> ^7.0.0 age adoption passing confidence

Release Notes

sindresorhus/execa (execa)

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/master-execa-7.x branch 5 times, most recently from ef51431 to 9bfbe79 Compare February 16, 2023 23:35
@socket-security
Copy link

socket-security bot commented Feb 16, 2023

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 6 times, most recently from dfbafa2 to c366abb Compare February 20, 2023 23:41
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 8 times, most recently from f2f80ed to 5dac6fa Compare March 4, 2023 10:27
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 6 times, most recently from d20a45b to 538d043 Compare March 13, 2023 00:26
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 3 times, most recently from 119a826 to 7a6b8eb Compare March 20, 2023 15:02
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch from 7a6b8eb to 37567a0 Compare March 23, 2023 02:36
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 15 times, most recently from b104a2e to 02cb598 Compare August 8, 2023 04:40
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 7 times, most recently from e4884d8 to 361dd6e Compare August 14, 2023 13:49
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch 3 times, most recently from 7436caf to 62749dc Compare August 17, 2023 19:00
@renovate renovate bot force-pushed the renovate/master-execa-7.x branch from 62749dc to b4d222f Compare August 18, 2023 17:13
@renovate renovate bot changed the title fix(deps): update dependency execa to v7 (master) fix(deps): update dependency execa to v7 (master) - autoclosed Aug 19, 2023
@renovate renovate bot closed this Aug 19, 2023
@renovate renovate bot deleted the renovate/master-execa-7.x branch August 19, 2023 01:07
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