1. Jan 20, 2014
  2. Jan 17, 2014
  3. Jan 16, 2014
  4. Jan 14, 2014
  5. Jan 13, 2014
  6. Jan 11, 2014
  7. Jan 10, 2014
  8. Jan 09, 2014
  9. Jan 08, 2014
  10. Jan 07, 2014
  11. Jan 05, 2014
    • ayanamist's avatar
      stream: writes may return false but forget to emit drain · b922b5e9
      ayanamist authored
      If a write is above the highWaterMark, _write still manages to
      fully send it synchronously, _writableState.length will be adjusted down
      to 0 synchronously with the write returning false, but 'drain' will
      not be emitted until process.nextTick.
      
      If another small write which is below highWaterMark is issued before
      process.nextTick happens, _writableState.needDrain will be reset to false,
      and the drain event will never be fired.
      
      So we should check needDrain before setting it up, which prevents it
      from inproperly resetting to false.
      b922b5e9
  12. Jan 01, 2014
  13. Dec 31, 2013
  14. Dec 28, 2013
  15. Dec 26, 2013
  16. Dec 21, 2013
  17. Dec 20, 2013
  18. Dec 19, 2013
    • Timothy J Fontaine's avatar
      2013.12.18, Version 0.10.24 (Stable) · b7fd6bc8
      Timothy J Fontaine authored
      * uv: Upgrade to v0.10.21
      
      * npm: upgrade to 1.3.21
      
      * v8: backport fix for CVE-2013-{6639|6640}
      
      * build: unix install node and dep library headers (Timothy J Fontaine)
      
      * cluster, v8: fix --logfile=%p.log (Ben Noordhuis)
      
      * module: only cache package main (Wyatt Preul)
      b7fd6bc8
    • Timothy J Fontaine's avatar
      uv: Upgrade to v0.10.21 · 9371be0a
      Timothy J Fontaine authored
      9371be0a
    • Ben Noordhuis's avatar
      cluster, v8: fix --logfile=%p.log · 2eaef9f6
      Ben Noordhuis authored
      The %p is replaced with the current PID.  This used to work in node.js
      v0.9.7 but it seems to have been lost somewhere along the way.
      
      This commit makes the fix from 6b713b52 ("cluster: make --prof work for
      workers") work again.  Without it, all log data ends up in a single
      file and is unusable because the addresses are all wrong.
      2eaef9f6
    • Timothy J Fontaine's avatar
      build: unix install node and dep library headers · 32478acf
      Timothy J Fontaine authored
      Restores functionality from v0.8 where module authors may not be
      relying on gyp for building their modules.
      32478acf
  19. Dec 18, 2013