From d7cbceb3c83d1cabd500d5cd7656915cb9d65ed2 Mon Sep 17 00:00:00 2001 From: Shigeki Ohtsu Date: Wed, 14 Jan 2015 11:36:13 +0900 Subject: [PATCH] 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 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.7.4