Execa Versions Save

Process execution for humans

v6.1.0

2 years ago
  • Support AbortController (#490) c6e791a
  • Allow cwd and localDir options to be URLs (#492) 93ab929

https://github.com/sindresorhus/execa/compare/v6.0.0...v6.1.0

v6.0.0

2 years ago

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'

https://github.com/sindresorhus/execa/compare/v5.1.1...v6.0.0

v5.1.1

2 years ago
  • Fix error message when user passes a single array argument (#468) 2b9c0e1

https://github.com/sindresorhus/execa/compare/v5.1.0...v5.1.1

v5.1.0

2 years ago

v5.0.1

3 years ago
  • Fix timeout option validation (#463) 427c5c2

https://github.com/sindresorhus/execa/compare/v5.0.0...v5.0.1

v5.0.0

3 years ago

Breaking

  • Remove faulty emulated ENOENT error on Windows (#447) bdbd975 This is only a breaking change if you depend on the exact error message.

Improvements

  • Upgrade dependencies 5d64878

https://github.com/sindresorhus/execa/compare/v4.1.0...v5.0.0

v4.1.0

3 years ago
  • Remove --inspect & --inspect-brk from execArgv (#435) 8fd3f64

https://github.com/sindresorhus/execa/compare/v4.0.3...v4.1.0

v4.0.3

3 years ago
  • Fix use of floating number for the timeout and forceKillAfterTimeout options (#431) 9a157b3

https://github.com/sindresorhus/execa/compare/v4.0.2...v4.0.3

v4.0.2

4 years ago

Bug fixes

  • Fix with third-party promises (like bluebird) not working (#427)

v4.0.1

4 years ago

Bug fixes

  • Fix checking for Error instances (#423)