You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 679 B

3 years ago
12345678910111213141516171819202122232425
  1. # 2.4.3
  2. * Ignore errors raised by `fs.closeSync` when cleaning up after a write
  3. error.
  4. # 2.4.2
  5. * A pair of patches to fix some fd leaks. We would leak fds with sync use
  6. when errors occured and with async use any time fsync was not in use. (#34)
  7. # 2.4.1
  8. * Fix a bug where `signal-exit` instances would be leaked. This was fixed when addressing #35.
  9. # 2.4.0
  10. ## Features
  11. * Allow chown and mode options to be set to false to disable the defaulting behavior. (#20)
  12. * Support passing encoding strings in options slot for compat with Node.js API. (#31)
  13. * Add support for running inside of worker threads (#37)
  14. ## Fixes
  15. * Remove unneeded call when returning success (#36)