Skip to content

[INTERNAL] Bump execa from 9.6.1 to 10.0.1 - #861

Open
dependabot[bot] wants to merge 1 commit into
v4from
dependabot/npm_and_yarn/execa-10.0.1
Open

[INTERNAL] Bump execa from 9.6.1 to 10.0.1#861
dependabot[bot] wants to merge 1 commit into
v4from
dependabot/npm_and_yarn/execa-10.0.1

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 16, 2026

Copy link
Copy Markdown
Contributor

Bumps execa from 9.6.1 to 10.0.1.

Release notes

Sourced from execa's releases.

v10.0.1

  • Fix preferLocal argument escaping edge-case on Windows (#1259) e771733

sindresorhus/execa@v10.0.0...v10.0.1

v10.0.0

Breaking

  • Require Node.js 22. (#1243) 04b4454

  • The subprocess is now a normal promise, instead of a ChildProcess instance augmented with promise methods. All the methods and properties documented by Execa are unchanged. Node.js-specific ChildProcess APIs (such as .on(), .send(), .ref() and .unref()) must now be accessed through the new subprocess.nodeChildProcess property. (#1255) ade74bf

const subprocess = execa('node', ['file.js']);
- subprocess.on('spawn', onSpawn);+ subprocess.nodeChildProcess.on('spawn', onSpawn);
- await execaCommand('npm run build');+ await execa`npm run build`;
await execaCommand(commandString);
await execa${parseCommandString(commandString)};
  • Removed the old undocumented stdio: [..., 'ipc'] syntax. Use the ipc: true option instead. (#1245) dcf611c
- await execa('node', ['file.js'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});+ await execa('node', ['file.js'], {ipc: true});
  • When the input or inputFile option is combined with an inherited stdin (for example stdio: 'inherit'), the explicit input is now used, instead of being ignored. To combine multiple inputs, pass an array like stdin: ['inherit', {string: 'input'}]. (#1232) 3ed0544

Improvements

awaitexeca('npm',['run','build'],{killDescendants: true,timeout: 5000});
</tr></table>

... (truncated)

Commits

@dependabotdependabotBot added dependencies javascript Pull requests that update Javascript code labels Aug 16, 2026
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/execa-10.0.1 branch from 57016de to 3c9580fCompareSeptember 1, 2026 13:08
Bumps [execa](https://github.com/sindresorhus/execa) from 9.6.1 to 10.0.1.
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](sindresorhus/execa@v9.6.1...v10.0.1)
---
updated-dependencies:
- dependency-name: execa
dependency-version: 10.0.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabotBotforce-pushed the dependabot/npm_and_yarn/execa-10.0.1 branch from 3c9580f to 9625264CompareSeptember 2, 2026 04:57
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesjavascriptPull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants