1. Jun 19, 2015
  2. Jun 18, 2015
  3. May 11, 2015
  4. Apr 24, 2015
  5. Apr 16, 2015
  6. Apr 11, 2015
  7. Apr 09, 2015
  8. Mar 24, 2015
  9. Mar 12, 2015
  10. Mar 11, 2015
  11. Mar 07, 2015
  12. Mar 06, 2015
    • Florin-Cristian Gavrila's avatar
      http: fix performance regression for GET requests · 8bcd0a4c
      Florin-Cristian Gavrila authored
      A significant performance regressions has been introduced in 1fddc1fe for
      GET requests which send data through response.end(). The number of
      requests per second dropped to somewhere around 6% of their previous
      level.
      
      The fix consists of removing a part of the lines added by 1fddc1fe,
      lines which were supposed to affect only HEAD requests, but interfered
      with GET requests instead.
      
      The lines removed would not have affected the behaviour in the case of
      a HEAD request as this._hasBody would always be false. Therefore, they
      were not required to fix the issue reported in #8361.
      
      Fixes #8940.
      
      PR: #9026
      PR-URL: https://github.com/joyent/node/pull/9026
      
      
      Reviewed-By: default avatarJulien Gilli <julien.gilli@joyent.com>
      8bcd0a4c
  13. Mar 05, 2015
  14. Feb 18, 2015
    • Julien Gilli's avatar
      console: allow Object.prototype fields as labels · c8239c08
      Julien Gilli authored
      This is a backport of 6c3647c3 from
      v0.12 to v0.10.
      
      Console.prototype.timeEnd() returns NaN if the timer label
      corresponds to a property on Object.prototype. In v0.12, this was fixed
      by using Object.create(null) to construct the _times object
      
      However, the version of V8 in the v0.10 branch makes this fix not work
      as expected. In v0.10, this commit changes the _times object into a
      array of objects of the form:
      
      { label: someLabel, time: staringWallClockTime }
      
      someLabel can thus be any string, including any string that represents
      any Object.prototype field.
      
      Fixes #9116.
      
      PR: #9215
      PR-URL: https://github.com/joyent/node/pull/9215
      
      
      Reviewed-By: default avatarColin Ihrig <cjihrig@gmail.com>
      c8239c08
  15. Feb 10, 2015
  16. Feb 05, 2015
  17. Jan 27, 2015