Activity

From 07/16/2012 to 08/14/2012

08/15/2012

11:27 PM Revision 3ccee087 (main_repo): npm: Upgrade to 1.1.49
- node-gyp@0.6.5
- abstracted-out configs
- publishing over proxies
- bugfixes to all the deps
isaacs
08:15 PM Revision 2c13cbbc (main_repo): crypto: fix uninitialized memory access in openssl
ASN1_STRING_to_UTF8() passes an ASN1_STRING to ASN1_STRING_set() but forgot to
initialize the `length` field.
Fixes ...
Ben Noordhuis

08/14/2012

07:37 PM Revision 90ea6810 (main_repo): test: fix up `make valgrind-test`
* valgrind complained too much about memory leaks from the V8 heap to be
useful, run it with --leak-check=no. Not i...
Ben Noordhuis
05:11 PM Revision bcb5bdeb (main_repo): test: raise pummel/test-net-throttle write req size
pummel/test-net-throttle assumes that a couple of big write requests result in
some of them getting queued because th...
Ben Noordhuis
05:06 PM Revision de32b389 (main_repo): addon: remove node-waf, superseded by node-gyp
Ben Noordhuis
05:00 PM Revision 786e1e87 (main_repo): buffer, crypto: fix buffer decoding
Before this commit, DecodeWrite() mistakenly tried to convert buffers to
UTF-8 strings which:
a) produced invalid ...
Ben Noordhuis

08/13/2012

04:07 PM Revision 22804a9e (main_repo): module: use 'repl' as the filename arg if missing
Fix #3859 isaacs
01:04 PM Revision 50c7d80f (main_repo): events: emitter.listeners() should not have side effects
Fixes #3803 isaacs
12:52 PM Revision 8eccc417 (main_repo): bench: fetch port from env
http_simple.js honors $PORT, http_simple_bench.sh should too. jbergstroem
12:10 PM Revision c492d43f (main_repo): tls: fix segfault in pummel/test-tls-ci-reneg-attack
Commit 4e5fe2d changed the way how process.nextTick() works:
process.nextTick(function foo() {
process.nex...
Ben Noordhuis
09:33 AM Revision 100e163d (main_repo): build: compile with -fno-tree-vrp when gcc >= 4.0
Ben Noordhuis
09:33 AM Revision 9f26130a (main_repo): deps: upgrade libuv to 2c3e8b6
Ben Noordhuis

08/12/2012

05:49 PM Revision 00fa8864 (main_repo): tools: remove "addon.gypi" and "gyp_addon"
They've been merged into `node-gyp` and aren't serving any purpose
in the node repo. Fixes #3760.
Nathan Rajlich
03:48 PM Revision 6b18e88b (main_repo): tls: handle multiple CN fields when verifying cert
Fixes #3861. Ben Noordhuis

08/11/2012

07:15 PM Revision 320ae691 (main_repo): timers: make unref'd timeouts execute in a domain
Timothy J Fontaine
06:08 PM Revision 4ef808ec (main_repo): doc: remove unused util from child_process
Kyle Robinson Young
06:07 PM Revision 382f22f2 (main_repo): timers: implement setImmediate
Timothy J Fontaine

08/10/2012

06:55 AM Revision d15bfc04 (main_repo): path: small speed improvements
Felix Böhm
08:11 PM Revision 64ac54a6 (main_repo): Makefile: add a better check to ensure a node "release"
Closes #3841.
Closes #3842.
Nathan Rajlich

08/09/2012

07:25 PM Revision 9693d333 (main_repo): node: remove process.uvCounters()
Ben Noordhuis

08/08/2012

07:02 PM Revision 6b588007 (main_repo): test: fix pummel/test-net-connect-econnrefused
The test relied on a peculiarity of process.nextTick() that was changed in
commit 4e5fe2d. Before that commit, each n...
Ben Noordhuis
06:06 PM Revision 67705555 (main_repo): test: raise pummel/test-net-throttle write req size
pummel/test-net-throttle assumes that a couple of big write requests result in
some of them getting queued because th...
Ben Noordhuis
05:07 PM Revision 5fba3b85 (main_repo): fs: fix ReferenceError in truncateSync()
Fixes a minor oversight introduced in 168a555, resulting in the following error:
fs.js:467
return fs.ftrunca...
Ben Noordhuis
02:25 PM Revision 08b382c2 (main_repo): installer: remove c-ares header files
Fixes #3847. Ben Noordhuis

08/07/2012

03:05 PM Revision c82e2889 (main_repo): blog post for 0.8.6
isaacs
03:02 PM Revision e8bc2eda (main_repo): Now working on 0.8.7
isaacs
03:02 PM Revision e8834dc1 (main_repo): Merge branch 'v0.8.6-release' into v0.8
isaacs
02:56 PM Revision 0544a586 (main_repo): 2012.08.07, Version 0.8.6 (Stable)
* npm: Upgrade to v1.1.48
* Add 'make binary' to build binary tarballs for all Unixes (Nathan Rajlich)
* zlib: Emit...
isaacs
10:09 PM Revision f11a3dfc (main_repo): npm: Upgrade to 1.1.48
Fixes an issue with publishing readmes that are not called
'README.md', so that they still end up on the website
isaacs

08/06/2012

07:58 PM Revision 658cf43b (main_repo): uv: upgrade to 41b1265
Bert Belder
07:57 PM Revision acea4c41 (main_repo): dns: use uv_inet_ntop/uv_inet_pton instead of c-ares equivalents
Bert Belder
07:57 PM Revision e0a603a4 (main_repo): uv: upgrade to 3a8bb3b
Bert Belder
07:57 PM Revision 9e55ba7d (main_repo): dns: don't rely on libuv for c-ares integration
Bert Belder
07:49 PM Revision 22d03c91 (main_repo): node.cc: include ares.h
Bert Belder
07:49 PM Revision 81791ff3 (main_repo): Add c-ares dependency
This is the c-ares code that used to live in the libuv source tree.
It is based on c-ares 1.9.0.
Bert Belder
05:55 PM Revision 4c150ca0 (main_repo): net: fix listen() regression, revert patches
This commit reverts the following commits (in reverse chronological order):
74d076c errnoException must be done im...
Ben Noordhuis
04:25 PM Revision 7b367a93 (main_repo): net: add support for IPv6 addresses ending in ::
Modified net.isIP Ipv6 regex to allow for addresses ending in "::".
Added tests for new IPv6 matching reqex.
Josh Erickson
04:22 PM Revision 093be8b1 (main_repo): install: prevent a KeyError from being thrown when PORTABLE is not...
Nathan Rajlich
04:07 PM Revision caf69aa9 (main_repo): npm: Upgrade to 1.1.47
isaacs
03:40 PM Revision 9badc002 (main_repo): uv: Upgrade to dfb6be0
isaacs
03:25 PM Revision a23df771 (main_repo): Merge branch 'binary-tarballs' into v0.8
Nathan Rajlich
02:57 PM Revision cc6034ac (main_repo): email-footer: add links to the expected common binary packages
We can do other OSs like 32 and 64-bit OS X, but we should encourage
users to use the installer on OS X so we'll omit...
Nathan Rajlich
02:41 PM Revision dc818135 (main_repo): Makefile: move the release verification logic into a `make release...
Nathan Rajlich
02:40 PM Revision dc9ae01e (main_repo): Makefile: allow the dest-cpu to be specified for `make binary`
Needed for 64-bit Solaris, and 32-bit OS X Nathan Rajlich
02:40 PM Revision 8b11f29c (main_repo): Makefile: properly set the ARCH variable when forcing a DESTCPU
Nathan Rajlich
02:40 PM Revision eadc2ec5 (main_repo): Makefile: add `make binary` helper target
Nathan Rajlich
02:40 PM Revision bd10bf44 (main_repo): Makefile: add `make tar` helper target
Nathan Rajlich
01:22 PM Revision 42aac41b (main_repo): Makefile: add target for precompiled binary tarballs
This target compiles node with "/" as the prefix and installs into a directory
like: "node-v0.8.6-darwin-x86_64". The...
Nathan Rajlich
01:18 PM Revision 7a9db6cf (main_repo): install: add a "portable" mode to the shebang-rewriting logic
This "portable" mode rewrites the npm shebang to use the "node" executable
in the same directory relative to the "npm...
Nathan Rajlich
01:16 PM Revision 6bdd4d02 (main_repo): install: install the "wafadmin/Tools" files into the correct dir
Previously they were going into just "wafadmin" and node-waf wasn't working. Nathan Rajlich
11:40 AM Revision 168a5557 (main_repo): fs: fix naming of truncate/ftruncate functions
For backwards compatibility, fs.truncate(<number>) will proxy to
fs.ftruncate.
Fix #3805
isaacs
11:23 AM Revision 0414e147 (main_repo): doc: util.pump is deprecated. Use Stream.pipe
Conflicts:
doc/api/util.markdown
isaacs

08/05/2012

06:45 PM Revision 2f7e0f2d (main_repo): fs: remove undocumented .destroy callbacks
The destroy() method of fs.ReadStream and fs.WriteStream takes a callback.
It's a leftover from the node 0.1 days, un...
Ben Noordhuis
06:13 PM Revision bc7479d2 (main_repo): doc: fix typos in child_process
Kyle Robinson Young
05:47 PM Revision 4ff56aa1 (main_repo): doc: util.pump is deprecated. Use Stream.pipe
isaacs
05:42 PM Revision 7bb814f9 (main_repo): errnoException must be done immediately
isaacs
05:40 PM Revision 624788df (main_repo): Makefile: DRY js lint
Ben Noordhuis
05:40 PM Revision 3219616f (main_repo): util: mark util.pump() as deprecated
Ben Noordhuis
05:33 PM Revision 93be4ffd (main_repo): test-message: fix message output
1. The net changes add a stack frame to stdin errors.
2. The error line numbers were overly strict in many places.
isaacs
05:22 PM Revision 74d076ca (main_repo): errnoException must be done immediately
isaacs
05:02 PM Revision 3254cace (main_repo): install: use os.path.join() to create the npm shebang
Prettier formatting for the shebang if the "prefix" ends with a / Nathan Rajlich
04:53 PM Revision 99ad0561 (main_repo): test-message: fix message output
1. The net changes add a stack frame to stdin errors.
2. The error line numbers were overly strict in many places.
isaacs
04:53 PM Revision 085a0987 (main_repo): cluster: do not use internal server API
Andreas Madsen
04:53 PM Revision ddb02b97 (main_repo): net: support Server.listen(Pipe)
Andreas Madsen
01:13 AM Revision d1388751 (main_repo): net: lazy listen on handler
This allow the server to be shared without the need to handle connection
from master
Andreas Madsen

08/04/2012

04:04 PM Revision f4a4ef7a (main_repo): zlib: Emit 'close' on destroy().
Dominic Tarr
02:30 PM Revision b48684c6 (main_repo): child_process: Fix stdout=null when stdio=['pipe']
Previously, a command with a short stdio array would result in the child's
stdout and stderr objects set to null. For...
Tyler Neylon
02:30 PM Revision a7f3288a (main_repo): blog post for 0.6.21
isaacs
03:10 AM Revision 57f78515 (main_repo): install: install the "wafadmin" files into the correct directory
Before they were just being copied into "lib/node/".
Now they go into "lib/node/wafadmin/".
Nathan Rajlich
08:41 PM Revision 110e499f (main_repo): installer: prevent ETXTBSY errors
The installer does what amounts to `cp -p`. If the node binary is in use at
the time of the copy, it'd fail with a ET...
Ben Noordhuis
08:18 PM Revision b21c8e0b (main_repo): installer: honor --without-npm, default install path
* honor the --without-waf and --without-npm configure switches
* a small logic bug made the installer script install...
Ben Noordhuis

08/03/2012

07:23 PM Revision 3bf1846b (main_repo): Merge remote-tracking branch 'ry/v0.8'
Conflicts:
ChangeLog
deps/uv/src/unix/sunos.c
deps/uv/test/test-tcp-unexpected-read.c
src/node_version.h
isaacs
11:11 AM Revision 5fdeebd9 (main_repo): net: make pause work with connecting sockets
This fixes the problem that calling pause() on a socket would not
actually prevent 'data' events from being emitted. ...
Bert Belder

08/02/2012

06:00 PM Revision 585388bb (main_repo): blog: Fix date on 0.8.5 release
isaacs
05:59 PM Revision 575c12bb (main_repo): Blog post about 0.8.5
isaacs
05:58 PM Revision 02dae998 (main_repo): Now working on 0.8.6
isaacs
05:57 PM Revision 2bee3aee (main_repo): Merge branch 'v0.8.5-release' into v0.8
isaacs
04:56 PM Revision 9b86a445 (main_repo): 2012.08.02, Version 0.8.5 (Stable)
* node: tag Encode and friends NODE_EXTERN (Ben Noordhuis)
* fs: fix ReadStream / WriteStream missing callback (Gil ...
isaacs
04:56 PM Revision 2dd710e7 (main_repo): build: Sign pkg installer for OS X
This makes the installer work on Mountain Lion. isaacs
11:47 AM Revision 93153776 (main_repo): doc: improve cluster.workers documentation
Ben Noordhuis
11:11 AM Revision 37537d57 (main_repo): test: stdin error messages
isaacs
11:09 AM Revision f5c07b65 (main_repo): npm: Upgrade to 1.1.46
isaacs
07:51 AM Revision 50e00de9 (main_repo): installer: fix cross-compile installs
The old installer was a JS script, which didn't work if node had been
cross-compiled for another architecture. Replac...
Ben Noordhuis
07:37 AM Revision 34c750d7 (main_repo): net: fix .listen({fd:0})
Ben Noordhuis
06:20 AM Revision 6db9e12d (main_repo): deps: remove openssl apps and tests
Shrinks the tarball by a few hundred kilobytes and fixes a broken symlinks
issue on Windows.
Fixes #3813.
Ben Noordhuis

08/01/2012

07:35 PM Revision 53f3b128 (main_repo): node: tag Encode and friends NODE_EXTERN
Makes the symbols visible on Windows. They were already visible on Unices.
Fixes #3811.
Ben Noordhuis
07:25 PM Revision f1fba8d1 (main_repo): fs: fix ReadStream / WriteStream missing callback
The (undocumented) callback argument to .destroy() was not called if the
stream was no longer readable / writable.
Gil Pedersen
02:30 PM Revision 23f09d7e (main_repo): fs: fix readFileSync("/proc/cpuinfo") regression
Don't use positional reads. Not all proc files support pread(), especially on
older linux kernels.
Fixes #3808.
Ben Noordhuis
01:14 PM Revision fd56981b (main_repo): blog: Remove all windows line endings once and for all
isaacs
01:11 PM Revision fe659a60 (main_repo): update profiling blog post to use shell redirection instead of -o
Dave Pacheco
01:11 PM Revision f70be41d (main_repo): blog: Remove ^M chars from profiling-node-js blog post
isaacs
07:39 AM Revision cccce60b (main_repo): installer: don't assume bash is installed
Use `/bin/sh` instead of `bash` when running the relocate.sh script. Ben Noordhuis

07/31/2012

07:45 PM Revision 285a46d1 (main_repo): uv: upgrade to 6209fe5
Bert Belder
07:45 PM Revision af699c47 (main_repo): doc: http: document res.write() `drain` return value
Eugen Dueck
06:52 PM Revision 2981f01b (main_repo): v8: don't show performance warnings when compiling with msvc
Patch sent upstream: http://codereview.chromium.org/10829109/ Bert Belder
03:38 PM Revision 9e2319f9 (main_repo): docs: remove unused require from example
Closes GH-3801 Bert Belder
03:26 PM Revision 80ab9a89 (main_repo): uv: upgrade to 69c2ef8
Bert Belder
07:45 AM Revision de16da53 (main_repo): deps, tools: remove stray reject files
Ben Noordhuis
09:09 PM Revision 2eb6a62f (main_repo): doc: document child_process.fork() limitation
Ben Noordhuis

07/30/2012

02:01 PM Revision f8dab6ac (main_repo): doc: Remove timeout arg in child_process.fork
Fix #3784 isaacs
01:15 PM Revision 5b37da2a (main_repo): doc: fix domains example
Need `utf8` encoding for JSON.parse and fix to avoid JSON.parse error when only
one argument is passed in domain.bind
Shigeki Ohtsu
11:21 AM Revision b3cf3f35 (main_repo): Report errors properly from --eval and stdin
isaacs

07/29/2012

06:48 AM Revision 72bc4dcd (main_repo): assert: fix throws() throws an error without message property
Fixes #2893. koichik
08:07 PM Revision aa0650f4 (main_repo): cluster: fix libuv assert in net.listen()
Problem: calling `server.listen()` (no port) on a net.Server triggered the
following libuv assertion:
node: ../dep...
Ben Noordhuis

07/28/2012

07:28 PM Revision c05f52c2 (main_repo): child_process: improve maxBuffer error message
Mention what buffer (stdout, stderr) overflowed. Tom Hughes-Croucher
10:50 AM Revision 879d329a (main_repo): deps: upgrade libuv to 4fe1916
Ben Noordhuis
08:10 AM Revision d559bed0 (main_repo): node: use variadic functions in ev-emul.h
Fixes #3786. Ben Noordhuis

07/27/2012

02:28 PM Revision 20e12e4b (main_repo): events: make .listeners() return a copy
Make EventEmitter.listeners(event) return a copy of the listeners array instead
of the array itself.
Fixes #3442.
Joe Andaverde
02:03 PM Revision f70b138f (main_repo): always link sunos builds with libumem
Trent Mick

07/26/2012

07:19 PM Revision f6923470 (main_repo): node: don't scan add-on for "init" symbol
From this commit onwards, use of the NODE_MODULE macro is mandatory. This lets
node guard against modules that are AB...
Ben Noordhuis
06:55 PM Revision c3d4c356 (main_repo): node: bump NODE_MODULE_VERSION
Bump NODE_MODULE_VERSION so old modules won't load without recompiling when
the next major release (v0.10) comes out....
Ben Noordhuis
06:02 PM Revision 2a30d328 (main_repo): crypto: add sync interface to crypto.pbkdf2()
Fixes #3766. Ben Noordhuis
05:55 PM Revision edd3de8f (main_repo): test: update dgram tests after API change
Timothy J Fontaine
05:55 PM Revision 105c6ec8 (main_repo): test: suppress simple/test-dgram-pingpong chatter
Ben Noordhuis
05:55 PM Revision 332fea5a (main_repo): dgram: make .bind() always asynchronous
Ben Noordhuis
05:38 PM Revision 90efdb3a (main_repo): build: improve armv7 / hard-float detection
Adam Malcontenti-Wilson
04:32 PM Revision 59b584c9 (main_repo): node: remove PrepareTick() and CheckTick()
Superfluous after commit 430d94e. Pointed out by Shigeki Ohtsu. Ben Noordhuis
02:58 PM Revision e5498331 (main_repo): Merge remote-tracking branch 'ry/v0.8'
Conflicts:
AUTHORS
ChangeLog
src/node_version.h
isaacs

07/25/2012

04:38 PM Revision b0c0111b (main_repo): https: Use host header as effective servername
isaacs
01:41 PM Revision 9eddaebb (main_repo): assert: remove unnecessary use of __proto__
AssertionError already inherits from Error above using util.inherits(),
so this extra line was redundant.
test/simpl...
Nathan Rajlich
01:38 PM Revision b207e24b (main_repo): Blog post for 0.8.4
isaacs
01:28 PM Revision 3d34590f (main_repo): Now working on v0.8.5
isaacs
01:26 PM Revision 32141844 (main_repo): Merge branch 'v0.8.4-release' into v0.8
isaacs
01:25 PM Revision 8656c265 (main_repo): Fix #3761 build: Default to V=1
isaacs
08:06 PM Revision f98562fc (main_repo): 2012.07.25, Version 0.8.4 (Stable)
* V8: Upgrade to 3.11.10.17
* npm: Upgrade to 1.1.45
* net: fix Socket({ fd: 42 }) api (Ben Noordhuis)
* readline:...
isaacs
08:06 PM Revision 7fd3cb66 (main_repo): Build: add jslintfix
isaacs
08:05 PM Revision 5809426d (main_repo): net.js: lint
isaacs

07/24/2012

06:53 PM Revision 1513848f (main_repo): net: fix Socket({ fd: 42 }) api
Make the implementation match the documentation. This should work:
var s = new net.Socket({ fd: 42, allowHalfOpen:...
Ben Noordhuis
06:36 PM Revision e4c9c9f4 (main_repo): readline: Remove event listeners on close
Fix #3756 isaacs
05:19 PM Revision 2c487669 (main_repo): v8: Reapply floating patches
isaacs
05:18 PM Revision f4f0daa4 (main_repo): V8: Upgrade to 3.11.10.17
isaacs
03:34 PM Revision 0a0002b4 (main_repo): npm: Upgrade to 1.1.45
This includes node-gyp 0.6.1 isaacs

07/23/2012

12:34 PM Revision febffc10 (main_repo): Merge branch 'v0.8'
Conflicts:
lib/tls.js
Bert Belder
12:31 PM Revision 77945d7f (main_repo): add unref/ref tests for socket/server/timers
Timothy J Fontaine
12:31 PM Revision bdd1a740 (main_repo): add docs for socket/server/timer unref and ref
Timothy J Fontaine
12:31 PM Revision cd6122ed (main_repo): add ref/unref to setTimeout timers
Timothy J Fontaine
12:31 PM Revision 2637b5c2 (main_repo): ref/unref for net.Socket net.Server dgram.Socket
Timothy J Fontaine
12:31 PM Revision 19d43f85 (main_repo): export HandleWrap Unref Ref in tcp/udp/timer/pipe
Timothy J Fontaine
07:55 AM Revision 43a0c881 (main_repo): windows: correctly prep long path for fs.exists(Sync)
Closes GH-3739 Bert Belder
07:15 AM Revision 688859af (main_repo): debugger: wake up the event loop when a debugger command is dispat...
When the event loop was blocked in epoll / kqueue or similar, debugger
commands wouldn't be processed. This patch fix...
Peter Rybin
05:35 AM Revision e06b5d7a (main_repo): http: remove duplicate assignments
Closes GH-3754 Brian White

07/21/2012

01:33 PM Revision bc30c90a (main_repo): doc: remove duplicate section
Fixes #3750. koichik

07/20/2012

02:56 PM Revision 5bb2fe66 (main_repo): Blog post about 0.9.0
isaacs
02:51 PM Revision ec299a13 (main_repo): Now working on 0.9.0
isaacs
02:50 PM Revision 839dfe75 (main_repo): Merge branch 'v0.9.0-release'
isaacs
02:08 PM Revision f9b237f4 (main_repo): 2012.07.20, Version 0.9.0 (Unstable)
* punycode: update to v1.1.1 (Mathias Bynens)
* c-ares: upgrade to 1.9.0 (Saúl Ibarra Corretgé)
* dns: ignore rogue...
isaacs
02:08 PM Revision e16d506a (main_repo): uv: Upgrade to ad382bca
isaacs
02:07 PM Revision 42c6952e (main_repo): tls: pass linting
Fedor Indutny
02:07 PM Revision 85185bbb (main_repo): tls: pass linting
Fedor Indutny
01:48 PM Revision 92e7433f (main_repo): tls: fix 'hostless' tls connection verification
And fix last failing tests Fedor Indutny
01:48 PM Revision 1ccdde9a (main_repo): Revert "http/https: pass request to .createConnection()"
This reverts commit 53716eb0b5338999761d115fad9d392077836e63. Fedor Indutny
01:43 PM Revision 50122fed (main_repo): tls: fix 'hostless' tls connection verification
And fix last failing tests Fedor Indutny
01:13 PM Revision 93d496a4 (main_repo): tls: revert accidental API change
socket.authorizationError should always be string. Also make sni test
pass.
Fedor Indutny
01:10 PM Revision 5950db19 (main_repo): tls: revert accidental API change
socket.authorizationError should always be string. Also make sni test
pass.
Fedor Indutny
12:51 PM Revision 4aa09d1e (main_repo): tls: localhost is valid against identity-check
Fedor Indutny
12:51 PM Revision e43fe5c8 (main_repo): Revert "http/https: pass request to .createConnection()"
This reverts commit 53716eb0b5338999761d115fad9d392077836e63. Fedor Indutny
12:47 PM Revision 0cf23541 (main_repo): tls: localhost is valid against identity-check
Fedor Indutny

07/19/2012

05:49 PM Revision eb2ca104 (main_repo): tls: veryify server's identity
Fedor Indutny
05:49 PM Revision 53716eb0 (main_repo): http/https: pass request to .createConnection()
It's useful for passing some additional options of request object to the
underlying API
Fedor Indutny
05:49 PM Revision 1fa0bca2 (main_repo): net: ignore socket.setTimeout(Infinity) (and NaN)
Fedor Indutny
04:53 PM Revision 8ba189b8 (main_repo): tls: veryify server's identity
Fedor Indutny
04:45 PM Revision 2b3ba3f5 (main_repo): http/https: pass request to .createConnection()
It's useful for passing some additional options of request object to the
underlying API
Fedor Indutny
04:43 PM Revision b0950cbe (main_repo): net: ignore socket.setTimeout(Infinity) (and NaN)
Fedor Indutny
04:06 PM Revision 3c998945 (main_repo): Merge remote-tracking branch 'ry/v0.8' into master
Conflicts:
src/node_version.h
isaacs
04:03 PM Revision d9057cc0 (main_repo): npm: Upgrade to 1.1.44
isaacs
01:29 PM Revision 430d94ef (main_repo): nextTick: Preserve depth in error/reentry cases
When there is an error that is thrown in a nextTick function, which is
then handled by a domain or other process.on('...
isaacs
01:20 PM Revision f6484842 (main_repo): Blog post about v0.8.3
isaacs
01:19 PM Revision 02ff9741 (main_repo): Now working on 0.8.4
isaacs
01:19 PM Revision 4439f7b8 (main_repo): Merge branch 'v0.8.3-release' into v0.8
isaacs
01:01 PM Revision 60bf2d6c (main_repo): 2012.07.19, Version 0.8.3 (Stable)
* V8: upgrade to 3.11.10.15
* npm: Upgrade to 1.1.43
* net: fix net.Server.listen({fd:x}) error reporting (Ben Noor...
isaacs
12:33 PM Revision 0c91b0e4 (main_repo): uv: Upgrade to 94355e4
isaacs
12:32 PM Revision 845b9e92 (main_repo): uv: Upgrade to 94355e4
isaacs
12:20 PM Revision b2648934 (main_repo): build: unbreak ustack on smartos
I disabled the -ffunction-sections and -fdata-sections switches in 202df30
because they're horribly buggy with some g...
Ben Noordhuis

07/18/2012

06:08 PM Revision 5a5e1281 (main_repo): build: link with -rdynamic, not -Wl,--export-dynamic
The system linker on SunOS doesn't understand --export-dynamic. Ben Noordhuis
05:26 PM Revision 98b1ce91 (main_repo): build: fix mksnapshot crash on sunos
Unconditionally compile V8 with -fno-strict-aliasing on all platforms.
gcc 4.5.2 on sunos generates bad code when -f...
Ben Noordhuis
08:23 AM Revision beb7425c (main_repo): doc: build requires GNU make 3.81+
Ben Noordhuis
07:56 AM Revision f6f2d42e (main_repo): node: make ev-emul.h compile with -Wextra -Werror
Explicitly cast double to int64_t, it was making add-ons that compile with
`-Wall -Wextra -Werror` fail to build.
Do...
Ben Noordhuis
09:46 PM Revision e8af3405 (main_repo): doc: advise *strongly* against uncaughtException
Ben Noordhuis
08:09 PM Revision e1fb7b76 (main_repo): uv: Upgrade to b49d6f7
isaacs

07/17/2012

06:56 PM Revision 648fdc56 (main_repo): tools: speed up genv8constants
genv8constants was much slower than necessary due to lack of pipe buffering. Dave Pacheco
02:44 PM Revision 868ffed7 (main_repo): v8: Reapply floating patches
isaacs
02:43 PM Revision a0a0062d (main_repo): v8: upgrade to 3.11.10.15
isaacs
02:40 PM Revision 7397ab2c (main_repo): uv: Upgrade to a9f6f06
isaacs
02:37 PM Revision c383befd (main_repo): npm: Upgrade to 1.1.43
isaacs
10:13 AM Revision a52a44e0 (main_repo): doc: nextTick semantics and justification
isaacs
12:05 AM Revision 19ecc17e (main_repo): nextTick: explicitly no-op when _exiting
isaacs
12:05 AM Revision 4e5fe2d4 (main_repo): nextTick: Handle tick callbacks after each tick
isaacs
09:45 PM Revision 0109a9f9 (main_repo): Move MakeCallback to JS
isaacs
09:35 PM Revision 8973c3d2 (main_repo): Merge remote-tracking branch 'ry/v0.8'
isaacs
09:32 PM Revision ff140075 (main_repo): Enable color customization of `util.inspect`
This is rewrite of #3701 and #3603 before.
This patch introduce `util.inspect.styles`
and `util.inspect.colors` obje...
Pavel Lang
09:04 PM Revision d6b78d0e (main_repo): domain: Fix stack leak on error
isaacs

07/16/2012

07:28 PM Revision b8d86155 (main_repo): test-eio-limit: Remove confusing broken incorrect test
isaacs
 

Also available in: Atom