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: 6a91eab0970a
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 97db62b4d9f7
Choose a head ref
  • 14 commits
  • 232 files changed
  • 5 contributors

Commits on Jan 4, 2013

  1. doc: improve example of process.hrtime()

    The example clarifies now that diff[0] * 1000000000 + diff[1] equals
    the result in nanoseconds.
    jhnns authored and bnoordhuis committed Jan 4, 2013
    Copy the full SHA
    872cb0d View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2013

  1. dgram: don't assert on send('string')

    Raise a TypeError when the argument to send() or sendto() is anything
    but a Buffer.
    
    Fixes the following assertion:
    
      $ node -e 'require("dgram").createSocket("udp4").send("BAM")'
      node: ../../src/udp_wrap.cc:220: static v8::Handle<v8::Value>
      node::UDPWrap::DoSend(const v8::Arguments&, int): Assertion
      `Buffer::HasInstance(args[0])' failed.
      Aborted (core dumped)
    
    Fixes #4496.
    bnoordhuis committed Jan 8, 2013
    Copy the full SHA
    ad6769f View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2013

  1. object_wrap: add missing HandleScope

    by Sven Panne's suggestion, see [0] for details.
    
    [0]: https://code.google.com/p/v8/issues/detail?id=2468
    indutny committed Jan 9, 2013
    Copy the full SHA
    7a2ae4c View commit details
    Browse the repository at this point in the history
  2. npm: Upgrade to v1.2.0

    isaacs committed Jan 9, 2013
    Copy the full SHA
    aa742dd View commit details
    Browse the repository at this point in the history
  3. typed arrays: fix 32 bit size/index overflow

    Fix an out-of-bound read/write bug due to integer wrapping. Reported by
    Dean McNamee.
    bnoordhuis committed Jan 9, 2013
    Copy the full SHA
    ed825f4 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2013

  1. 2012.01.09, Version 0.8.17 (Stable)

    * npm: Upgrade to v1.2.0
      - peerDependencies (Domenic Denicola)
      - node-gyp v0.8.2 (Nathan Rajlich)
      - Faster installs from github user/project shorthands (Nathan Zadoks)
    
    * typed arrays: fix 32 bit size/index overflow (Ben Noordhuis)
    
    * http: Improve performance of single-packet responses (Ben Noordhuis)
    
    * install: fix openbsd man page location (Ben Noordhuis)
    
    * http: bubble up parser errors to ClientRequest (Brian White)
    isaacs committed Jan 10, 2013
    Copy the full SHA
    c50c33e View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    c4b080f View commit details
    Browse the repository at this point in the history
  3. Now working on 0.8.18

    isaacs committed Jan 10, 2013
    Copy the full SHA
    daf4666 View commit details
    Browse the repository at this point in the history
  4. blog: Post about v0.8.17

    isaacs committed Jan 10, 2013
    Copy the full SHA
    1388171 View commit details
    Browse the repository at this point in the history
  5. Copy the full SHA
    6d9ee4b View commit details
    Browse the repository at this point in the history
  6. Copy the full SHA
    be54423 View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    8e37a58 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2013

  1. make binary: allow custom config flags

    For example, to cross-compile from my OS X laptop for Raspberry Pi, you would
    do something like:
    
      $ make binary BINARYNAME=node-v`python tools/getnodeversion.py`-linux-arm-pi \
          DESTCPU=arm CONFIG_FLAGS="--dest-os=linux"
    TooTallNate committed Jan 11, 2013
    Copy the full SHA
    4fa3fd1 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'ry/v0.8' into master

    Conflicts:
    	AUTHORS
    	ChangeLog
    	Makefile
    	src/node_version.h
    isaacs committed Jan 11, 2013
    Copy the full SHA
    97db62b View commit details
    Browse the repository at this point in the history