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: fc3547bc828d
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 3d7818fc42c5
Choose a head ref
  • 18 commits
  • 14 files changed
  • 6 contributors

Commits on Jan 11, 2013

  1. blog: release v0.9.6

    isaacs committed Jan 11, 2013
    Copy the full SHA
    4c9de9d View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2013

  1. http: fix "Cannot call method 'emit' of null"

    Fix the following exception:
    
      http.js:974
        this._httpMessage.emit('close');
                          ^
      TypeError: Cannot call method 'emit' of null
          at Socket.onServerResponseClose (http.js:974:21)
          at Socket.EventEmitter.emit (events.js:124:20)
          at net.js:421:10
          at process._tickCallback (node.js:386:13)
          at process._makeCallback (node.js:304:15)
    
    Fixes #4586.
    bnoordhuis committed Jan 14, 2013
    Copy the full SHA
    f3e78bd View commit details
    Browse the repository at this point in the history
  2. tls: allow wildcards in common name

    see #4592
    indutny committed Jan 14, 2013
    Copy the full SHA
    45024e7 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    a6b8f63 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2013

  1. install: add simplejson fallback

    Make tools/install.py work with python 2.5
    
    2.5 is still fairly widespread and does not include a json lib as
    standard. Most python folk will have simplejson if they are in that
    boat.
    
    In general it seems a bit tricky to solve this perfectly...
    cdent authored and bnoordhuis committed Jan 15, 2013
    Copy the full SHA
    6b4a935 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2013

  1. buffer: reject negative SlowBuffer offsets

    Reject negative offsets in SlowBuffer::MakeFastBuffer(), it allows
    the creation of buffers that point to arbitrary addresses.
    
    Reported by Trevor Norris.
    bnoordhuis committed Jan 17, 2013
    Copy the full SHA
    498200b View commit details
    Browse the repository at this point in the history
  2. test: add cluster 'bind twice' test

    This test starts two clustered HTTP servers on the same port.
    It expects the first cluster to succeed and the second cluster
    to fail with EADDRINUSE.
    
    Reapplies commit cacd3ae, accidentally reverted in a2851b6.
    bnoordhuis committed Jan 17, 2013
    Copy the full SHA
    08ac9fe View commit details
    Browse the repository at this point in the history
  3. Revert "tls: allow wildcards in common name"

    This reverts commit 45024e7.
    
    It's making test/simple/test-tls-check-server-identity.js fail:
    
      AssertionError: Test#4 failed: { host: 'b.a.com',
        cert: { subject: { CN: '*.a.com' } },
        result: false }
          at <omitted>/test/simple/test-tls-check-server-identity.js:201:10
    bnoordhuis committed Jan 17, 2013
    Copy the full SHA
    30e2370 View commit details
    Browse the repository at this point in the history
  4. Revert "Revert "tls: allow wildcards in common name""

    This reverts commit 30e2370.
    
    Works properly with b4b750b
    indutny committed Jan 17, 2013
    Copy the full SHA
    e70d1bf View commit details
    Browse the repository at this point in the history
  5. tls: follow RFC6125 more stricly

    * Allow wildcards only in left-most part of hostname identifier.
    * Do not match CN if altnames are present
    indutny committed Jan 17, 2013
    Copy the full SHA
    31583be View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2013

  1. dns: make error message match errno

    danmilon authored and bnoordhuis committed Jan 18, 2013
    Copy the full SHA
    7295bb9 View commit details
    Browse the repository at this point in the history
  2. blog: Post for v0.9.7 release

    isaacs committed Jan 18, 2013
    Copy the full SHA
    1c35ee8 View commit details
    Browse the repository at this point in the history
  3. npm: Upgrade to v1.2.2

    isaacs committed Jan 18, 2013
    Copy the full SHA
    4d32fc5 View commit details
    Browse the repository at this point in the history
  4. 2013.01.18, Version 0.8.18 (Stable)

    * npm: Upgrade to v1.2.2
    
    * dns: make error message match errno (Dan Milon)
    
    * tls: follow RFC6125 more stricly (Fedor Indutny)
    
    * buffer: reject negative SlowBuffer offsets (Ben Noordhuis)
    
    * install: add simplejson fallback (Chris Dent)
    
    * http: fix "Cannot call method 'emit' of null" (Ben Noordhuis)
    isaacs committed Jan 18, 2013
    Copy the full SHA
    2c4eef0 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    f05cf3b View commit details
    Browse the repository at this point in the history
  6. Now working on 0.8.19

    isaacs committed Jan 18, 2013
    Copy the full SHA
    4598a4c View commit details
    Browse the repository at this point in the history
  7. blog: Post for v0.8.18 release

    isaacs committed Jan 18, 2013
    Copy the full SHA
    9c2c845 View commit details
    Browse the repository at this point in the history
  8. Merge remote-tracking branch 'ry/v0.8' into master

    Conflicts:
    	AUTHORS
    	ChangeLog
    	src/node_version.h
    	test/simple/test-buffer.js
    isaacs committed Jan 18, 2013
    Copy the full SHA
    3d7818f View commit details
    Browse the repository at this point in the history