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: 7018c99a31d2
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: e7bfbaf89196
Choose a head ref
  • 9 commits
  • 11 files changed
  • 8 contributors

Commits on May 15, 2014

  1. docs: Update docs on TEST single test run.

    The Contributing docs now clarify how to run a single test.
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    markstos authored and indutny committed May 15, 2014
    Copy the full SHA
    8a6c36d View commit details
    Browse the repository at this point in the history

Commits on May 16, 2014

  1. crypto: check protocol version at handshake header

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    yorkie authored and indutny committed May 16, 2014
    7
    Copy the full SHA
    89cb740 View commit details
    Browse the repository at this point in the history
  2. crypto: fix version check in hello parser

    This is a follow up for 89cb740
    indutny committed May 16, 2014
    Copy the full SHA
    4a2c349 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2014

  1. readline: fixes scoping bug

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    dbkaplun authored and indutny committed May 17, 2014
    3
    Copy the full SHA
    655ec21 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2014

  1. net: don't throw on net.Server.close()

    When close() is called on a non-listening server, a synchronous
    error is thrown. This commit causes the error to be passed to
    the asynchronous callback function instead.
    
    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    cjihrig authored and indutny committed May 18, 2014
    Copy the full SHA
    f1dc55d View commit details
    Browse the repository at this point in the history

Commits on May 21, 2014

  1. test: rewrite spawnsync test

    The spawnsync test was written wrong, the timeout can never fire before
    the sync process has returned, the delta is immaterial and times when
    it was succeeding are not reliable cases.
    
    Instead verify that the timeout doesn't fire while the sync process is
    happening.
    tjfontaine committed May 21, 2014
    Copy the full SHA
    58cc362 View commit details
    Browse the repository at this point in the history
  2. tls_wrap: do not store TLSCallbacks in SSL_CTX

    Storing it in SSL_CTX is incorrect as it may go away and get destructed
    earlier, also it'll yield invalid results in SelectSNIContextCallback.
    
    Use `SSL_get_app_data()` instead.
    
    fix #7484
    
    Signed-off-by: Timothy J Fontaine <tjfontaine@gmail.com>
    indutny authored and tjfontaine committed May 21, 2014
    Copy the full SHA
    765b032 View commit details
    Browse the repository at this point in the history
  3. string_bytes: ucs2 support big endian

    64bit constants are keyed for x64 platforms only, add PowerPC based
    platform constants.
    
    Node's "ucs2" encoding wants LE character data stored in the Buffer, so
    we need to reorder on BE platforms.  See
    http://nodejs.org/api/buffer.html regarding Node's "ucs2" encoding
    specification
    
    Signed-off-by: Timothy J Fontaine <tjfontaine@gmail.com>
    andrewlow authored and tjfontaine committed May 21, 2014
    Copy the full SHA
    929e2ed View commit details
    Browse the repository at this point in the history
  4. v8: backport no handle zapping for release builds

    BUG=318206
    LOG=y
    R=danno@chromium.org
    
    Review URL: https://codereview.chromium.org/295673002
    
    git-svn-id: https://v8.googlecode.com/svn/branches/3.26@21367 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
    jeisinger authored and tjfontaine committed May 21, 2014
    1
    Copy the full SHA
    e7bfbaf View commit details
    Browse the repository at this point in the history