From: Shigeki Ohtsu Date: Wed, 14 Jan 2015 02:36:13 +0000 (+0900) Subject: doc: add missed new features in CHANGELOG X-Git-Tag: v1.0.0~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7cbceb3c83d1cabd500d5cd7656915cb9d65ed2;p=platform%2Fupstream%2Fnodejs.git doc: add missed new features in CHANGELOG Some new features were missed in Buffer and process. PR: https://github.com/iojs/io.js/pull/359 Reviewed-by: Bert Belder --- diff --git a/CHANGELOG.md b/CHANGELOG.md index ee67887..bf21060 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ https://iojs.org/api/buffer.html - Added `Buffer.compare()` which does a `memcmp()` on two Buffer instances. Instances themselves also have a `compare()`. - Added `buffer.equals()` that checks equality of Buffers by their contents. - `SlowBuffer`'s semantics were tweaked. +- Added `buf.writeUIntLE`, `buf.writeUIntBE`, `buf.writeIntLE`, `buf.writeIntBE`, `buf.readUIntLE`, `buf.readUIntBE`, `buf.readIntLE` and `buf.readIntBE` that read and write value up to 6 bytes. ### child_process @@ -125,6 +126,13 @@ https://iojs.org/api/path.html - Added `path.win32` and `path.posix` objects that contain platform-specific versions of the various `path` functions. - `path.join` is now faster. +### process + +https://iojs.org/api/process.html + +- Added `process.mainModule` and `process.exitCode`. +- Added `beforeExit` event. + ### querystring https://iojs.org/api/querystring.html