1. Jan 24, 2012
  2. Jan 23, 2012
  3. Jan 22, 2012
    • koichik's avatar
      test: fix test/simple/test-net-server-max-connections.js is racey · 82718009
      koichik authored
      Fixes #1333.
      82718009
    • koichik's avatar
      test: for #2109 · 93298afc
      koichik authored
      93298afc
    • Brandon Benvie's avatar
      util: use getOwnPropertyDescripter · f9014438
      Brandon Benvie authored
      Change formatProperty in util.js to use Object.getOwnPropertyDescriptor
      instead of __lookup[GS]etter__.
      
      Use the cached value from the descriptor to reduce number of property
      lookups from 3 to 1.
      
      Fallback to standard lookup if the descriptor is empty. This doesn't
      ever happen with normal JS objects (this function is called only when
      the key exists) but apparently does with Node's custom ENV interface.
      
      Fixes: #2109.
      f9014438
    • koichik's avatar
      http: keep-alive should default with HTTP/1.1 server · 3df7c90c
      koichik authored
      As RFC 2616 says we should, assume that servers will provide a persistent
      connection by default.
      
      > A significant difference between HTTP/1.1 and earlier versions of
      > HTTP is that persistent connections are the default behavior of any
      > HTTP connection. That is, unless otherwise indicated, the client
      > SHOULD assume that the server will maintain a persistent connection,
      > even after error responses from the server.
      
      > HTTP/1.1 applications that do not support persistent connections MUST
      > include the "close" connection option in every message.
      
      Fixes #2436.
      3df7c90c
  4. Jan 21, 2012
  5. Jan 20, 2012
    • isaacs's avatar
      Now working on 0.6.9 · ec1d1ee6
      isaacs authored
      ec1d1ee6
    • isaacs's avatar
      2012.01.19, Version 0.6.8 (stable) · d18cebaf
      isaacs authored
      * Update V8 to 3.6.6.19
      
      * Numeric key hash collision fix for V8 (Erik Corry, Fedor Indutny)
      
      * Add missing TTY key translations for F1-F5 on Windows (Brandon Benvie)
      
      * path.extname bugfix with . and .. paths (Bert Belder)
      
      * cluster: don't always kill the master on uncaughtException (Ben
      * Noordhuis)
      
      * Update npm to 1.1.0-2 (isaacs)
      
      * typed arrays: set class name (Ben Noordhuis)
      
      * zlib binding cleanup (isaacs, Bert Belder)
      
      * dgram: use slab memory allocator (Michael Bernstein)
      
      * fix segfault #2473
      d18cebaf
    • isaacs's avatar
      Upgrade V8 to 3.6.6.19 · 4afc46d7
      isaacs authored
      4afc46d7
  6. Jan 19, 2012
  7. Jan 18, 2012
  8. Jan 17, 2012
  9. Jan 14, 2012
    • Ben Noordhuis's avatar
      net: make .write() throw on bad input · f0c1376e
      Ben Noordhuis authored
      Passing a non-buffer or non-string argument to Socket.prototype.write triggered
      an assert:
      
        Assertion failed: (Buffer::HasInstance(args[0])), function Write,
        file ../src/stream_wrap.cc, line 289.
      
      Fixes #2532.
      f0c1376e
  10. Jan 13, 2012