1. Jul 08, 2012
  2. Jul 07, 2012
  3. Jul 06, 2012
  4. Jul 05, 2012
    • Nathan Rajlich's avatar
      repl: fix passing an empty line inserting "undefined" into the buffer · 9126dd2d
      Nathan Rajlich authored
      There was a possiblity of insering the string "undefined" into the repl's
      command buffer, which would cause interesting results while evaluating.
      9126dd2d
    • Maciej Małecki's avatar
      repl: fix crashes when buffering command · 6a11f3ed
      Maciej Małecki authored
      Wrong order of operands was causing problems while trying to use command
      buffering:
      
          > {
          ...   a: 3,
          ...
      
          repl.js:284
                  if (cmd.trim().match(/^npm /) && !self.bufferedCommand) {
                          ^
          TypeError: Cannot call method 'trim' of undefined
              at finish (repl.js:284:17)
              at REPLServer.self.eval (repl.js:118:5)
              at rli.on.e (repl.js:260:20)
              at REPLServer.self.eval (repl.js:118:5)
              at Interface.<anonymous> (repl.js:250:12)
              at Interface.EventEmitter.emit (events.js:88:17)
              at Interface._onLine (readline.js:183:10)
              at Interface._line (readline.js:502:8)
              at Interface._ttyWrite (readline.js:720:14)
              at ReadStream.<anonymous> (readline.js:105:12)
      
      Test included.
      
      Closes #3515.
      Closes #3517.
      Closes #3621.
      6a11f3ed
  5. Jul 04, 2012
  6. Jul 03, 2012
  7. Jul 02, 2012
  8. Jun 30, 2012
  9. Jun 29, 2012
    • isaacs's avatar
      2012.06.29, Version 0.8.1 (stable) · 2134aa3d
      isaacs authored
      * V8: upgrade to v3.11.10.12
      
      * npm: upgrade to v1.1.33
        - Support for parallel use of the cache folder
        - Retry on registry timeouts or network failures (Trent Mick)
        - Reduce 'engines' failures to a warning
        - Use new zsh completion if aviailable (Jeremy Cantrell)
      
      * Fix #3577 Un-break require('sys')
      
      * util: speed up formatting of large arrays/objects (Ben Noordhuis)
      
      * windows: make fs.realpath(Sync) work with UNC paths (Bert Belder)
      
      * build: fix --shared-v8 option (Ben Noordhuis)
      
      * doc: `detached` is a boolean (Andreas Madsen)
      
      * build: use proper python interpreter (Ben Noordhuis)
      
      * build: expand ~ in `./configure --prefix=~/a/b/c` (Ben Noordhuis)
      
      * build: handle CC env var with spaces (Gabriel de Perthuis)
      
      * build: fix V8 build when compiling with gcc 4.5 (Ben Noordhuis)
      
      * build: fix --shared-v8 option (Ben Noordhuis)
      
      * windows msi: Fix icon issue which caused huge file size (Bert Belder)
      
      * unix: assume that dlopen() may clobber dlerror() (Ben Noordhui...
      2134aa3d
    • isaacs's avatar
      blog: Require posts to have a date · 40f70673
      isaacs authored
      40f70673