checkup
checkup copied to clipboard
chore(deps-dev): Bump execa from 5.1.1 to 8.0.1
Bumps execa from 5.1.1 to 8.0.1.
Release notes
Sourced from execa's releases.
v8.0.1
Fixes
- Fix and document support for the
{encoding: 'buffer'}
option. It is the same as{encoding: null}
, but preferred over it. (#572)https://github.com/sindresorhus/execa/compare/v8.0.0...v8.0.1
v8.0.0
Breaking
- Require Node.js 16.7.0 and later (#569)
https://github.com/sindresorhus/execa/compare/v7.2.0...v8.0.0
v7.2.0
- Add
cwd
error property (#565) f57fdechttps://github.com/sindresorhus/execa/compare/v7.1.1...v7.2.0
v7.1.1
Features
- Improve error message when
$.sync(options)`command`
is used instead of$(options).sync`command`
(#551)Bug fixes
- Fix argument concatenation when using
$`command argument${value}`
(#553)- Fix default value of the
stdin
option when using$`command`
: it should beinherit
(#550)v7.1.0
Features
- Add
$
method to write Node.js scripts like zx. For more information, please see this blog post, this section and this page. Thanks@aaronccasanova
for this great feature!import {$} from 'execa';
const branch = await $
git branch --show-current
; await $dep deploy --branch=${branch}
;
- Add
.pipeStdout()
,.pipeStderr()
and.pipeAll()
methods to redirectstdout
/stderr
to a file, a stream or another process.// 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');</tr></table>
... (truncated)
Commits
f4b8b3a
8.0.189c69fe
Support{encoding: 'buffer'}
(#572)e7dee28
8.0.088ee3bd
Upgradeget-stream
(#571)f31fbdb
Fix documentation typo (#568)468fbe1
Upgradesignal-exit
to v4 (#570)65992b4
Require Node.js 16 (#569)db58085
7.2.0f57fdec
Addcwd
error property (#565)a228eda
Meta tweaks- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.