1. Jun 23, 2015
  2. Jun 19, 2015
    • Julien Gilli's avatar
      2015.06.18, Version 0.10.39 (Maintenance) · 615a35cc
      Julien Gilli authored
      * openssl: upgrade to 1.0.1o (Addressing multiple CVEs)
      
      * install: fix source path for openssl headers (Oguz Bastemur)
      
      * install: make sure opensslconf.h is overwritten (Oguz Bastemur)
      
      * timers: fix timeout when added in timer's callback (Julien Gilli)
      
      * windows: broadcast WM_SETTINGCHANGE after install (Mathias Küsel)
      615a35cc
    • Julien Gilli's avatar
      tls: revert disable RC4 and cipher lists changes · dcb7ef2e
      Julien Gilli authored
      This reverts commit 67d9a562.
      
      This commit actually reverts both
      67d9a562 and
      02a549ed (both related to ciphers list
      changes). It does it in one commit because reverting
      02a549ed results in an empty commit.
      
      These changes are not yet ready to be released, and before they are we
      want to be able to publish new releases. We're reverting them so that we
      can submit a new PR that will contain all these changes plus what's
      necessary to be able to land them properly.
      
      Conflicts:
      	src/node.cc
      
      PR: #25511
      PR-URL: https://github.com/joyent/node/pull/25511
      
      
      Reviewed-By: default avatarShigeki Ohtsu <ohtsu@iij.ad.jp>
      dcb7ef2e
  3. Jun 18, 2015
  4. May 11, 2015
  5. Apr 24, 2015
  6. Apr 16, 2015
  7. Apr 11, 2015
  8. Apr 09, 2015
  9. Mar 24, 2015
  10. Mar 12, 2015
  11. Mar 11, 2015
  12. Mar 07, 2015
  13. 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
  14. Mar 05, 2015
  15. 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
  16. Feb 10, 2015