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: a0a180a0adba
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: c20b209dbb7e
Choose a head ref
  • 9 commits
  • 133 files changed
  • 7 contributors

Commits on Mar 27, 2014

  1. build: windows signing should include timestamps

    Previously the build artifacts did not include a signed timestamp, so
    when the certificate expired the validation of the artifact would fail.
    Now we sign against a timestamp server such that the artifact will
    always be valid regardless of the disposition of the certificate.
    
    Closes #7360 and #7059.
    daguej authored and tjfontaine committed Mar 27, 2014
    Copy the full SHA
    a9d2224 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2014

  1. doc: typo clean up in tls

    9Y5 authored and tjfontaine committed Mar 31, 2014
    Copy the full SHA
    47bed48 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2014

  1. docs: correct tls docs. server -> client

    when a pfx file is passed to tls.connection,
    it is the client private key, not the server's private key.
    dominictarr authored and indutny committed Apr 2, 2014
    Copy the full SHA
    cdc093b View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2014

  1. doc: add missing space

    Signed-off-by: Fedor Indutny <fedor@indutny.com>
    mscdex authored and indutny committed Apr 7, 2014
    Copy the full SHA
    c2d32f4 View commit details
    Browse the repository at this point in the history
  2. http: do not emit EOF non-readable socket

    Socket may become not `readable`, but http should not rely on this
    property and should not think that it means that no data will ever
    arrive from it. In fact, it may arrive in a next tick and, since
    `this.push(null)` was already called, it will result in a error like
    this:
    
        Error: stream.push() after EOF
            at readableAddChunk (_stream_readable.js:143:15)
            at IncomingMessage.Readable.push (_stream_readable.js:123:10)
            at HTTPParser.parserOnBody (_http_common.js:132:22)
            at Socket.socketOnData (_http_client.js:277:20)
            at Socket.EventEmitter.emit (events.js:101:17)
            at Socket.Readable.read (_stream_readable.js:367:10)
            at Socket.socketCloseListener (_http_client.js:196:10)
            at Socket.EventEmitter.emit (events.js:123:20)
            at TCP.close (net.js:479:12)
    
    fix #6784
    indutny committed Apr 7, 2014
    Copy the full SHA
    f2b297c View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    d6fd118 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2014

  1. Merge branch 'v0.10'

    Conflicts:
    	deps/openssl/asm/x64-elf-gas/aes/vpaes-x86_64.s
    	deps/openssl/asm/x64-macosx-gas/aes/vpaes-x86_64.s
    	deps/openssl/asm/x64-win32-masm/aes/vpaes-x86_64.asm
    	deps/openssl/openssl/CHANGES
    	deps/openssl/openssl/Makefile
    	deps/openssl/openssl/Makefile.org
    	deps/openssl/openssl/NEWS
    	deps/openssl/openssl/README
    	deps/openssl/openssl/crypto/opensslv.h
    	deps/openssl/openssl/openssl.spec
    	deps/openssl/openssl/ssl/s23_clnt.c
    	lib/http.js
    	test/simple/test-http-client-readable.js
    indutny committed Apr 8, 2014
    Copy the full SHA
    de7c0e8 View commit details
    Browse the repository at this point in the history
  2. test: fix test-crypto

    indutny committed Apr 8, 2014
    Copy the full SHA
    3054dec View commit details
    Browse the repository at this point in the history
  3. openssl: fix keypress requirement in apps on win32

    Re-applying commit 153784b, which
    was overwritten by the update to openssl 1.0.1f.
    
    Original source:
    
    http://openssl.6102.n7.nabble.com/PATCH-s-client-Fix-keypress-requirement-with-redirected-input-on-Windows-td46787.html
    orangemocha authored and indutny committed Apr 8, 2014
    Copy the full SHA
    c20b209 View commit details
    Browse the repository at this point in the history