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: ec57ecc982df
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: fc52ed85f606
Choose a head ref
  • 12 commits
  • 224 files changed
  • 8 contributors

Commits on Jan 5, 2014

  1. stream: writes may return false but forget to emit drain

    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.
    ayanamist authored and indutny committed Jan 5, 2014
    3
    Copy the full SHA
    b922b5e View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2014

  1. npm: Upgrade to 1.3.23

    isaacs committed Jan 7, 2014
    Copy the full SHA
    1be9365 View commit details
    Browse the repository at this point in the history
  2. uv: Upgrade to v0.10.22

    tjfontaine committed Jan 7, 2014
    Copy the full SHA
    30b3bc2 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2014

  1. doc: fix typo in cluster page

    lorenzleutgeb authored and indutny committed Jan 8, 2014
    Copy the full SHA
    fc7e217 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2014

  1. src: OnFatalError handler must abort()

    We are in an unrecoverable state if v8 throws a FatalError, actually
    ask the operating system to dump core in this case.
    
    Fixes #6836
    tjfontaine committed Jan 9, 2014
    Copy the full SHA
    270c2de View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2014

  1. Copy the full SHA
    56913d2 View commit details
    Browse the repository at this point in the history
  2. v8: backport codereview.chromium.org/11362182

    Keep the number of descriptors below
    DescriptorArray::kMaxNumberOfDescriptors even for accessors
    
    Review URL: https://codereview.chromium.org/11362182
    svenpanne@chromium.org authored and indutny committed Jan 10, 2014
    Copy the full SHA
    196184d View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2014

  1. src: return empty set on ENOSYS for interfaces

    If node was compiled with --no-ifaddrs to support older operating
    systems, don't throw instead simply return an empty object
    
    Fixes #6846
    tjfontaine committed Jan 12, 2014
    Copy the full SHA
    8753bb3 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2014

  1. test: close debug client in test-debugger-client

    Killing the debuggee without first closing the socket can result
    in an ECONNRESET error.
    orangemocha authored and tjfontaine committed Jan 13, 2014
    Copy the full SHA
    1b74892 View commit details
    Browse the repository at this point in the history
  2. doc: streams must be open to be passed to child

    spawn stdio options can be a 'stream', but the following code
    fails with "Incorrect value for stdio stream: [object Object]",
    despite being a stream. The problem is the test isn't really
    for a stream, its for an object with a numeric `.fd` property,
    and streams do not have an fd until their async 'open' event
    has occurred. This is reasonable, but was not documented.
    
        child_process.spawn('date', [], {stdio: [
          'ignore',
          fs.createWriteStream('out.txt',{flags:'a'}),
          'ignore']})
    sam-github authored and indutny committed Jan 13, 2014
    Copy the full SHA
    7bd6e33 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'upstream/v0.10'

    Conflicts:
    	deps/uv/ChangeLog
    	deps/uv/build.mk
    	deps/uv/src/version.c
    	deps/uv/test/test-ipc.c
    	deps/v8/src/objects.cc
    	src/node.cc
    	src/node_os.cc
    tjfontaine committed Jan 13, 2014
    Copy the full SHA
    429b587 View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    fc52ed8 View commit details
    Browse the repository at this point in the history