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

[Snyk] Upgrade execa from 5.1.1 to 8.0.1 #147

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

Conversation

tjenkinson
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade execa from 5.1.1 to 8.0.1.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


Warning: This is a major version upgrade, and may be a breaking change.

  • The recommended version is 8 versions ahead of your current version.
  • The recommended version was released 9 months ago, on 2023-08-19.
Release notes
Package name: execa
  • 8.0.1 - 2023-08-19

    Fixes

    v8.0.0...v8.0.1

  • 8.0.0 - 2023-08-19

    Breaking

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

    v7.2.0...v8.0.0

  • 7.2.0 - 2023-07-27

    v7.1.1...v7.2.0

  • 7.1.1 - 2023-03-14

    Features

    Bug fixes

  • 7.1.0 - 2023-03-11

    Features

    import {$} from 'execa';

    const branch = await $git branch --show-current;
    await $dep deploy --branch=<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">branch</span><span class="pl-kos">}</span></span>;

    // Similar to echo unicorns &gt; stdout.txt in Bash
    await execa('echo', ['unicorns']).pipeStdout('stdout.txt');

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

    // Similar to echo unicorns &amp;&gt; 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




  • 7.0.0 - 2023-02-11

    Breaking

    Fixes

    • Emit end event on streams when process fails (#518) 30c7a7a
    • Fix incorrect execaNode signature in index.d.ts (#506) 1f7677c

    v6.1.0...v7.0.0

  • 6.1.0 - 2022-02-13

    v6.0.0...v6.1.0

  • 6.0.0 - 2021-11-17

    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...v6.0.0

  • 5.1.1 - 2021-06-04
    • Fix error message when user passes a single array argument (#468) 2b9c0e1

    v5.1.0...v5.1.1

from execa GitHub release notes
Commit messages
Package name: execa

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants