Uh oh!
There was an error while loading. Please reload this page.
fix(deps): update dependency execa to v10 (master) - #1481
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
renovateBotforce-pushed
the
renovate/master-execa-10.x
branch
8 times, most recently
from
July 27, 2026 05:35
3f1402a to
a2a488bComparerenovateBotforce-pushed
the
renovate/master-execa-10.x
branch
12 times, most recently
from
August 4, 2026 10:46
1a4a1f6 to
5d15f75ComparerenovateBotforce-pushed
the
renovate/master-execa-10.x
branch
5 times, most recently
from
August 8, 2026 13:14
64bc2c9 to
6eed269ComparerenovateBotforce-pushed
the
renovate/master-execa-10.x
branch
3 times, most recently
from
August 16, 2026 17:04
205ca86 to
37df607ComparerenovateBotforce-pushed
the
renovate/master-execa-10.x
branch
6 times, most recently
from
August 22, 2026 13:55
d0fc6dd to
d80b994ComparerenovateBotforce-pushed
the
renovate/master-execa-10.x
branch
from
August 23, 2026 21:15
d80b994 to
f7b46f1Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^9.5.1→^10.0.0Release Notes
sindresorhus/execa (execa)
v10.0.1Compare Source
preferLocalargument escaping edge-case on Windows (#1259)e771733v10.0.0Compare Source
Breaking
Require Node.js 22. (#1243)
04b4454The subprocess is now a normal promise, instead of a
ChildProcessinstance augmented with promise methods. All the methods and properties documented by Execa are unchanged. Node.js-specificChildProcessAPIs (such as.on(),.send(),.ref()and.unref()) must now be accessed through the newsubprocess.nodeChildProcessproperty. (#1255)ade74bfconst subprocess = execa('node', ['file.js']); - subprocess.on('spawn', onSpawn);+ subprocess.nodeChildProcess.on('spawn', onSpawn);execaCommand()andexecaCommandSync(). Use the template string syntax instead, which splits on spaces. If the command is a dynamic string, split it withparseCommandString(). (#1244)3ced394stdio: [..., 'ipc']syntax. Use theipc: trueoption instead. (#1245)dcf611cinputorinputFileoption is combined with an inheritedstdin(for examplestdio: 'inherit'), the explicit input is now used, instead of being ignored. To combine multiple inputs, pass an array likestdin: ['inherit', {string: 'input'}]. (#1232)3ed0544Improvements
killDescendantsoption. This is useful when the subprocess spawns its own processes, such as when using theshelloption. (#1256)84fa0ecsubprocess.readableStream(),subprocess.writableStream()orsubprocess.transformStream(). (#1254)29d9cfcsubprocess.pipe()now exposes the destination subprocess' methods, so the piped output can be consumed directly: iterate over its output lines, convert it to a stream, or exchange IPC messages. (#1252)c31c94cstdiovalue as a{value, input: true}object. Direction-ambiguous values ('pipe','inherit', files and transforms) default to output on additional file descriptors. (#1246, #1249)487a3a49fbf5bachunkargument is now typed based on the transform's mode, instead of always beingunknown:stringfor line transforms,Uint8Arrayfor binary transforms, andunknownin object mode. (#1247)0a7b4f8Fixes
verbose,maxBuffer, etc.) when theipcoption istrue:fd3andipcno longer target the same file descriptor. (#1241)b886883Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.