Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: ef4344311e19
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: a995a6a776f1
Choose a head ref
  • 5 commits
  • 199 files changed
  • 3 contributors

Commits on Mar 3, 2015

  1. tests: fix race in test-http-curl-chunk-problem

    This test setups two event listeners: one on a child process' exit event
    , another for the same child process' stdandard output's 'data' event.
    The data even listener writes to a stream, and the exit event listener
    ends it.
    
    Because the exit event can be emitted before the data event, there is a
    chance that something will be written to the stream after it's ended,
    and that an error is thrown.
    
    This change makes the test end the stream in the listener for the child
    process' standard output's end event, which is guaranteed to be emitted
    after the last data event, thus avoiding the race.
    
    PR: #9301
    PR-URL: #9301
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: James M Snell <jasnell@users.noreply.github.com>
    Reviewed-By: Bert Belder <bertbelder@gmail.com>
    Julien Gilli committed Mar 3, 2015
    Copy the full SHA
    d9a309f View commit details
    Browse the repository at this point in the history
  2. deps: upgrade npm to 2.6.1

    PR: #9297
    PR-URL: #9297
    Reviewed-By: Julien Gilli <julien.gilli@joyent.com>
    Reviewed-By: Trevor Norris <trev.norris@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    othiym23 authored and Julien Gilli committed Mar 3, 2015
    Copy the full SHA
    63fbd10 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2015

  1. buffer: reword Buffer.concat error message

    this brings the error messaging in line with
    other node TypeError messages.
    
    fixes #7766.
    
    PR: #8723
    PR-URL: #8723
    Reviewed-By: James M Snell <jasnell@users.noreply.github.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    chrisdickinson authored and Julien Gilli committed Mar 5, 2015
    Copy the full SHA
    d01a900 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'upstream/v0.10' into v0.12

    Conflicts:
    	lib/buffer.js
    Julien Gilli committed Mar 5, 2015
    Copy the full SHA
    b0425f0 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'upstream/v0.12'

    Julien Gilli committed Mar 5, 2015
    Copy the full SHA
    a995a6a View commit details
    Browse the repository at this point in the history