isaacs
97db62b4d9
Merge remote-tracking branch 'ry/v0.8' into master
...
Conflicts:
AUTHORS
ChangeLog
Makefile
src/node_version.h
2013-01-11 10:18:07 -08:00
isaacs
a993f740f0
stream: Add readable.push(chunk) method
2013-01-10 13:49:53 -08:00
isaacs
8e37a589a6
blog, changelog: 0.8.17 was released in 2013, not 2012
2013-01-10 07:47:09 -08:00
isaacs
be54423782
blog: Correct shasums for v0.8.17
2013-01-09 19:05:37 -08:00
isaacs
6d9ee4b184
blog: Add security notice to v0.8.17 post
2013-01-09 17:21:16 -08:00
isaacs
1388171d96
blog: Post about v0.8.17
2013-01-09 17:08:24 -08:00
Tim Bradshaw
e6acfed9cc
doc: os.cpus() returns times in milliseconds
2013-01-08 05:38:36 +01:00
Bradley Meck
70ad9bbcbd
child_process: make fork() execPath configurable
...
Allows for arbitrary path to executable spawned using `fork`. This
fixes some issues around running multiple versions of node with workers
and allows arbitrary IPC with compatible executables.
Fixes #3248 .
2013-01-06 22:55:30 +01:00
James Hight
3f76419a04
net: add localAddress and localPort to Socket
2013-01-05 17:05:13 +01:00
Johannes Ewald
872cb0d7fa
doc: improve example of process.hrtime()
...
The example clarifies now that diff[0] * 1000000000 + diff[1] equals
the result in nanoseconds.
2013-01-04 23:06:40 +01:00
Ben Noordhuis
a7d8c21bca
Merge remote-tracking branch 'origin/v0.8'
...
Conflicts:
configure
deps/uv/src/unix/core.c
deps/uv/test/test-fs-event.c
src/node_version.h
2013-01-03 20:02:31 +01:00
isaacs
44ceb5d8f5
blog: Post for v0.9.5
2012-12-29 17:26:32 -08:00
isaacs
ec8ebaf300
domain: use camelCase instead of snake_case
...
While it's true that error objects have a history of getting snake_case
properties attached by the host system, it's a point of confusion to
Node users that comes up a lot. It's still 'experimental', so best to
change this sooner rather than later.
2012-12-29 10:37:31 -08:00
Luke Arduini
192192a09e
Colorize API stabilitity index headers in docs
...
Noted in @shtylman's #3898 , API stability notes are easy to overlook
in the html documentation. This can be especially troublesome if the API
is deprecated. This commit gives visual feedback by adding in a class
to the html docs when they're generated. The API headers with
corresponding colors are also listed in the 'About this Documentation'
page for easy reference.
2012-12-27 18:38:56 -08:00
Andreas Madsen
ce30683012
doc: document the finish event
...
Since the stream implementer is not expected to overwrite
.end() the finish event is necessary in order to know when
no more data can be written
2012-12-26 14:56:02 -08:00
isaacs
6738e68592
blog: Post about v0.9.4
2012-12-21 12:37:39 -08:00
isaacs
982981442d
doc: Nudge formatting to make json generator happy
...
Starting a line with `**bold**` text makes it think that it's a link,
and get confused.
This should really be fixed properly in the doc generator, but for now,
it's not a major issue. It's probably just a matter of updating marked.
2012-12-21 11:32:29 -08:00
isaacs
f119effc9f
Merge remote-tracking branch 'ry/v0.8'
2012-12-21 11:08:32 -08:00
isaacs
9d0103d22e
blog: More streams2 wordsmithing
2012-12-21 00:46:40 +00:00
isaacs
0c867ae618
blog: Update blog post re streams2
2012-12-21 00:08:50 +00:00
Ben Noordhuis
79ae8b7ae2
Merge remote-tracking branch 'origin/v0.8'
2012-12-20 12:39:04 +01:00
Farid Neshat
dcaebec208
fs: add autoClose=true option to fs.createReadStream
2012-12-20 11:25:39 +01:00
isaacs
04adf0e5a1
blog: post about streams2 feature
2012-12-18 08:45:03 -08:00
Nicolas Chambrier
496c0bd936
doc: add Google+ French community
2012-12-17 17:21:35 +01:00
isaacs
20a88feb8f
docs: streams2
2012-12-14 10:52:29 -08:00
isaacs
4a32d53155
doc: Crypto streaming interface
2012-12-14 10:52:27 -08:00
isaacs
77ed12fe7a
Merge remote-tracking branch 'ry/v0.8' into master
...
Conflicts:
AUTHORS
ChangeLog
deps/uv/test/test-spawn.c
deps/uv/uv.gyp
src/cares_wrap.cc
src/node.cc
src/node_version.h
test/simple/test-buffer.js
tools/gyp/pylib/gyp/common.py
tools/install.py
2012-12-13 16:57:58 -08:00
isaacs
45cdb0e4c1
blog: Post for 0.8.16
2012-12-13 11:50:47 -08:00
isaacs
92e92b0215
doc: Add nodejstr to community page
2012-12-10 16:56:49 -08:00
Ben Noordhuis
c79fd0e167
doc: remove broken require.extensions example
...
Fixes #4384 .
2012-12-06 21:58:36 +01:00
Ben Noordhuis
5b65638124
tls, https: add tls handshake timeout
...
Don't allow connections to stall indefinitely if the SSL/TLS handshake does
not complete.
Adds a new tls.Server and https.Server configuration option, handshakeTimeout.
Fixes #4355 .
2012-12-06 17:39:24 +01:00
Ben Noordhuis
3ece130ea2
process: add getgroups(), setgroups(), initgroups()
...
DRY the getuid(), getgid(), etc. functions while we're at it.
2012-12-06 17:14:58 +01:00
Ben Noordhuis
a80434736b
fs: fix 'object is not a function' callback errors
...
Use a default callback if the user omitted one. Avoids errors like the one
below:
fs.js:777
if (err) return callback(err);
^
TypeError: object is not a function
at fs.appendFile (fs.js:777:21)
at Object.oncomplete (fs.js:297:15)
This commit fixes the behavior of fs.lchmod(), fs.lchown() and fs.readFile()
when the callback is omitted. Before, they silently swallowed errors.
Fixes #4352 .
2012-12-04 08:05:55 +01:00
Lewuathe
4d0fcd515f
Fix dropped html tag
2012-11-30 18:14:26 -08:00
Kyle Robinson Young
acad8d9a77
website: typo fixes
2012-11-29 23:00:09 +01:00
Ryunosuke SATO
83161455bd
doc: Fix missing link target to 'https.request()'
2012-11-27 18:11:40 -08:00
isaacs
122ac4e1f2
blog: Post for v0.8.15
2012-11-26 09:20:07 -08:00
Trevor Norris
bb867c0fa6
doc: Add lines about additonal uses of Buffer
...
That Buffers can be used with Typed Array Views and DataViews. Included
are a couple simple examples.
Closes #4257 .
2012-11-22 09:30:18 -08:00
Tim Kuijsten
6f9ed28fac
doc: fix typo in setPrivateKey function signature
2012-11-20 18:02:56 +01:00
Stephen Gallagher
38809e3985
build: allow linking against system libuv
2012-11-16 23:34:13 +01:00
Nathan Rajlich
5e4e87ade5
os: add os.endianness() function
2012-11-08 12:31:45 -08:00
Stephen Gallagher
73ff653a8d
build: allow linking against system c-ares
2012-11-06 00:18:35 +01:00
Stephen Gallagher
bfd78b69fc
build: allow linking against system http_parser
2012-11-06 00:18:35 +01:00
Francois Marier
44dd2c392a
doc: remove duplicate set of options
2012-10-30 01:20:17 +01:00
Francois Marier
326bce91d6
doc: reflect hostname v. host preference in examples
...
The documentation for http.request and https.request states that
`hostname` is preferred over `host` so the code examples should
use that option name.
2012-10-29 20:34:03 +01:00
isaacs
5f0a10ad21
blog: Correct shasums for v0.8.14
2012-10-25 14:42:47 -07:00
isaacs
7fe1671727
blog: Post for v0.8.14
2012-10-25 14:17:43 -07:00
isaacs
d130bb060e
blog: Post for v0.8.13
2012-10-25 12:54:00 -07:00
Ben Noordhuis
9b61f570d8
Merge remote-tracking branch 'origin/v0.8'
...
Conflicts:
configure
deps/v8/build/common.gypi
2012-10-25 16:08:58 +02:00
isaacs
82a72e9591
blog: Post for v0.9.3 release
2012-10-24 10:08:58 -07:00