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: 2f8627528b7f
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: bd988a590a38
Choose a head ref
  • 20 commits
  • 274 files changed
  • 13 contributors

Commits on May 2, 2014

  1. 2014.05.01, Version 0.10.28 (Stable)

    * npm: upgrade to v1.4.9
    tjfontaine committed May 2, 2014
    Copy the full SHA
    b148cbe View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d857d5a View commit details
    Browse the repository at this point in the history
  3. Now working on 0.10.29

    tjfontaine committed May 2, 2014
    Copy the full SHA
    bfe1fdb View commit details
    Browse the repository at this point in the history
  4. deps: backport 23f2736a from v8 upstream

    Original text:
    
        Fix corner case in x64 compare stubs.
    
        BUG=v8:2416
    
        Review URL: https://codereview.chromium.org/11413087
    
    fix #7528
    indutny committed May 2, 2014
    1
    Copy the full SHA
    a960d17 View commit details
    Browse the repository at this point in the history
  5. constants: export O_NONBLOCK

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    indutny committed May 2, 2014
    Copy the full SHA
    00890e4 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2014

  1. npm: upgrade to 1.4.10

    * Don't set referer if already set
    * fetch: Send referer and npm-session headers
    * run-script: Support --parseable and --json
    * list runnable scripts (Evan Lucas)
    * Use marked instead of ronn for html docs
    isaacs committed May 6, 2014
    Copy the full SHA
    120f7cf View commit details
    Browse the repository at this point in the history

Commits on May 7, 2014

  1. lib: name EventEmitter prototype methods

    Before this commit the EventEmitter methods were anonymous functions.
    V8 tries to infer names for anonymous functions based on the execution
    context but it frequently gets it wrong and when that happens, the
    stack trace is usually confusing and unhelpful.  This commit names all
    methods so V8 can fall back to the method.name property.
    
    The above gotcha applies to all anonymous functions but is exacerbated
    for EventEmitter methods because those are invoked with a plenitude of
    different receivers.
    
    Signed-off-by: Trevor Norris <trev.norris@gmail.com>
    bnoordhuis authored and trevnorris committed May 7, 2014
    Copy the full SHA
    17fbdc1 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2014

  1. child_process: spawn() does not throw TypeError

    Ensure TypeError is thrown, fix a bug where `env` option was
    assuming the option was actually an object.
    
    This case is especially bad because it then sets `env == null`
    instead of using `process.env`.
    
    Fix #7456
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    baseprime authored and indutny committed May 13, 2014
    6
    Copy the full SHA
    9287550 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2014

  1. src: fix _XOPEN_SOURCE redefinition warning

    Fix the following compiler warning on systems where _XOPEN_SOURCE is
    defined by default:
    
        ../src/node_constants.cc:35:0: warning: "_XOPEN_SOURCE" redefined
         #define _XOPEN_SOURCE 500
    
    Move the (re)definition of _XOPEN_SOURCE to the top of the file while
    we're here.  Commit 00890e4 adds a `#define _XOPEN_SOURCE 500` in order
    to make <fcntl.h> expose O_NONBLOCK but it does so after other system
    headers have been included.  If those headers include <fcntl.h>, then
    the #include in node_constants.cc will be a no-op and O_NONBLOCK won't
    be visible.
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    bnoordhuis authored and indutny committed May 14, 2014
    Copy the full SHA
    885142a View commit details
    Browse the repository at this point in the history

Commits on May 15, 2014

  1. child_process: do not set args before throwing

    No point in setting args and options if TypeError
    is being thrown.
    
    fix #7456
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    baseprime authored and indutny committed May 15, 2014
    Copy the full SHA
    7bd08c5 View commit details
    Browse the repository at this point in the history
  2. crypto: improve memory usage

    ClientHelloParser used to contain an 18k buffer that was kept around
    for the life of the connection, even though it was not needed in many
    situations. I changed it to be deallocated when it's determined to
    be no longer needed.
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    orangemocha authored and indutny committed May 15, 2014
    Copy the full SHA
    c064957 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2014

  1. configure: allow V8 snapshot for cross-compilation

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    bsnote authored and indutny committed May 16, 2014
    Copy the full SHA
    1d90b5b View commit details
    Browse the repository at this point in the history

Commits on May 21, 2014

  1. doc: clarify end vs finish in streams

    Adds a section to the transform stream docs to clarify the
    difference between the `end` event and the `finish` events.
    Also clarifies the wording on the `end` event.
    calvinmetcalf authored and tjfontaine committed May 21, 2014
    Copy the full SHA
    31150df View commit details
    Browse the repository at this point in the history

Commits on May 22, 2014

  1. doc: document url slashes property

    Slashes should be documented, because 3rd-party protocols -- those
    postfixed with `://` -- would incorrectly `format` and `parse` if they
    didn't set/get the `slashes` option.
    
    Signed-off-by: Timothy J Fontaine <tjfontaine@gmail.com>
    yorkie authored and tjfontaine committed May 22, 2014
    Copy the full SHA
    e86c942 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2014

  1. tls: fix performance issue

    See https://github.com/orangemocha/node-connection-drop
    
    I have pinpointed the performance degradation to
    ac2263b
    
    This change brings performance back to the orginal levels.
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    orangemocha authored and indutny committed May 23, 2014
    4
    Copy the full SHA
    c862c03 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2014

  1. fs: close file if fstat() fails in readFile()

    Currently, if fstat() fails in readFile(), the callback
    is invoked without closing the file. This commit closes
    the file before calling back.
    
    Closes #7697
    cjihrig authored and piscisaureus committed May 29, 2014
    Copy the full SHA
    72cc66e View commit details
    Browse the repository at this point in the history

Commits on May 31, 2014

  1. doc: fixed wording in child_process

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    cb1kenobi authored and indutny committed May 31, 2014
    Copy the full SHA
    715bb7f View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2014

  1. 3
    Copy the full SHA
    a7dd0e5 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'v0.10'

    Conflicts:
    	ChangeLog
    	lib/events.js
    	lib/tls.js
    	src/node_constants.cc
    	src/node_crypto.cc
    	src/node_crypto.h
    	src/node_version.h
    indutny committed Jun 5, 2014
    Copy the full SHA
    9920ae6 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    bd988a5 View commit details
    Browse the repository at this point in the history