Skip to content

Commit

Permalink
Update to 4.0.0
Browse files Browse the repository at this point in the history
* OpenSSL 1.0.2 or later is required.

Changelog:
## 2015-09-08, Version 4.0.0 (Stable), @rvagg

### Notable changes

This list of changes is relative to the last io.js v3.x branch release, v3.3.0. Please see the list of notable changes in the v3.x, v2.x and v1.x releases for a more complete list of changes from 0.12.x. Note, that some changes in the v3.x series as well as major breaking changes in this release constitute changes required for full convergence of the Node.js and io.js projects.

* **child_process**: `ChildProcess.prototype.send()` and `process.send()` operate asynchronously across all platforms so an optional callback parameter has been introduced that will be invoked once the message has been sent, i.e. `.send(message[, sendHandle][, callback])` (Ben Noordhuis) [#2620](https:/nodejs/node/pull/2620).
* **node**: Rename "io.js" code to "Node.js" (cjihrig) [#2367](https:/nodejs/node/pull/2367).
* **node-gyp**: This release bundles an updated version of node-gyp that works with all versions of Node.js and io.js including nightly and release candidate builds. From io.js v3 and Node.js v4 onward, it will only download a headers tarball when building addons rather than the entire source. (Rod Vagg) [#2700](https:/nodejs/node/pull/2700)
* **npm**: Upgrade to version 2.14.2 from 2.13.3, includes a security update, see https:/npm/npm/releases/tag/v2.14.2 for more details, (Kat Marchán) [#2696](https:/nodejs/node/pull/2696).
* **timers**: Improved timer performance from porting the 0.12 implementation, plus minor fixes (Jeremiah Senkpiel) [#2540](https:/nodejs/node/pull/2540), (Julien Gilli) [nodejs/node-v0.x-archive#8751](https:/nodejs/node-v0.x-archive/pull/8751) [nodejs/node-v0.x-archive#8905](https:/nodejs/node-v0.x-archive/pull/8905)
* **util**: The `util.is*()` functions have been deprecated, beginning with deprecation warnings in the documentation for this release, users are encouraged to seek more robust alternatives in the npm registry, (Sakthipriyan Vairamani) [#2447](https:/nodejs/node/pull/2447).
* **v8**: Upgrade to version 4.5.103.30 from 4.4.63.30 (Ali Ijaz Sheikh) [#2632](https:/nodejs/node/pull/2632).
 - Implement new `TypedArray` prototype methods: `copyWithin()`, `every()`, `fill()`, `filter()`, `find()`, `findIndex()`, `forEach()`, `indexOf()`, `join()`, `lastIndexOf()`, `map()`, `reduce()`, `reduceRight()`, `reverse()`, `slice()`, `some()`, `sort()`. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray for further information.
 - Implement new `TypedArray.from()` and `TypedArray.of()` functions. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray for further information.
 - Implement arrow functions, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions for further information.
 - Full ChangeLog available at https:/v8/v8-git-mirror/blob/4.5.103/ChangeLog

### Known issues

See https:/nodejs/node/labels/confirmed-bug for complete and current list of known issues.

* Some uses of computed object shorthand properties are not handled correctly by the current version of V8. e.g. `[{ [prop]: val }]` evaluates to `[{}]`. [#2507](https:/nodejs/node/issues/2507)
* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https:/nodejs/node/issues/1264).
* Surrogate pair in REPL can freeze terminal. [#690](https:/nodejs/node/issues/690)
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https:/nodejs/node/issues/894)
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https:/nodejs/node/issues/1435).

### Commits

* [[`4f50d3fb90`](https:/nodejs/node/commit/4f50d3fb90)] - **(SEMVER-MAJOR)** This commit sets the value of process.release.name to "node". (cjihrig) [#2367](https:/nodejs/node/pull/2367)
* [[`d3178d8b1b`](https:/nodejs/node/commit/d3178d8b1b)] - **buffer**: SlowBuffer only accept valid numeric values (Michaël Zasso) [#2635](https:/nodejs/node/pull/2635)
* [[`0cb0f4a6e4`](https:/nodejs/node/commit/0cb0f4a6e4)] - **build**: fix v8_enable_handle_zapping override (Karl Skomski) [#2731](https:/nodejs/node/pull/2731)
* [[`a7596d7efc`](https:/nodejs/node/commit/a7596d7efc)] - **build**: remote commands on staging in single session (Rod Vagg) [#2717](https:/nodejs/node/pull/2717)
* [[`be427e9efa`](https:/nodejs/node/commit/be427e9efa)] - **build**: make .msi install to "nodejs", not "node" (Rod Vagg) [#2701](https:/nodejs/node/pull/2701)
* [[`5652ce0dbc`](https:/nodejs/node/commit/5652ce0dbc)] - **build**: fix .pkg creation tooling (Rod Vagg) [#2687](https:/nodejs/node/pull/2687)
* [[`101db80111`](https:/nodejs/node/commit/101db80111)] - **build**: add --enable-asan with builtin leakcheck (Karl Skomski) [#2376](https:/nodejs/node/pull/2376)
* [[`2c3939c9c0`](https:/nodejs/node/commit/2c3939c9c0)] - **child_process**: use stdio.fd even if it is 0 (Evan Lucas) [#2727](https:/nodejs/node/pull/2727)
* [[`609db5a1dd`](https:/nodejs/node/commit/609db5a1dd)] - **child_process**: check execFile and fork args (James M Snell) [#2667](https:/nodejs/node/pull/2667)
* [[`d010568c23`](https:/nodejs/node/commit/d010568c23)] - **(SEMVER-MAJOR)** **child_process**: add callback parameter to .send() (Ben Noordhuis) [#2620](https:/nodejs/node/pull/2620)
* [[`c60857a81a`](https:/nodejs/node/commit/c60857a81a)] - **cluster**: allow shared reused dgram sockets (Fedor Indutny) [#2548](https:/nodejs/node/pull/2548)
* [[`b2ecbb6191`](https:/nodejs/node/commit/b2ecbb6191)] - **contextify**: ignore getters during initialization (Fedor Indutny) [#2091](https:/nodejs/node/pull/2091)
* [[`3711934095`](https:/nodejs/node/commit/3711934095)] - **cpplint**: make it possible to run outside git repo (Ben Noordhuis) [#2710](https:/nodejs/node/pull/2710)
* [[`03f900ab25`](https:/nodejs/node/commit/03f900ab25)] - **crypto**: replace rwlocks with simple mutexes (Ben Noordhuis) [#2723](https:/nodejs/node/pull/2723)
* [[`847459c29b`](https:/nodejs/node/commit/847459c29b)] - **(SEMVER-MAJOR)** **crypto**: show exponent in decimal and hex (Chad Johnston) [#2320](https:/nodejs/node/pull/2320)
* [[`e1c976184d`](https:/nodejs/node/commit/e1c976184d)] - **deps**: improve ArrayBuffer performance in v8 (Fedor Indutny) [#2732](https:/nodejs/node/pull/2732)
* [[`cc0ab17a23`](https:/nodejs/node/commit/cc0ab17a23)] - **deps**: float node-gyp v3.0.0 (Rod Vagg) [#2700](https:/nodejs/node/pull/2700)
* [[`b2c3c6d727`](https:/nodejs/node/commit/b2c3c6d727)] - **deps**: create .npmrc during npm tests (Kat Marchán) [#2696](https:/nodejs/node/pull/2696)
* [[`babdbfdbd5`](https:/nodejs/node/commit/babdbfdbd5)] - **deps**: upgrade to npm 2.14.2 (Kat Marchán) [#2696](https:/nodejs/node/pull/2696)
* [[`155783d876`](https:/nodejs/node/commit/155783d876)] - **deps**: backport 75e43a6 from v8 upstream (again) (saper) [#2692](https:/nodejs/node/pull/2692)
* [[`5424d6fcf0`](https:/nodejs/node/commit/5424d6fcf0)] - **deps**: upgrade V8 to 4.5.103.30 (Ali Ijaz Sheikh) [#2632](https:/nodejs/node/pull/2632)
* [[`c43172578e`](https:/nodejs/node/commit/c43172578e)] - **(SEMVER-MAJOR)** **deps**: upgrade V8 to 4.5.103.24 (Ali Ijaz Sheikh) [#2509](https:/nodejs/node/pull/2509)
* [[`714e96e8b9`](https:/nodejs/node/commit/714e96e8b9)] - **deps**: backport 75e43a6 from v8 upstream (saper) [#2636](https:/nodejs/node/pull/2636)
* [[`8637755cbf`](https:/nodejs/node/commit/8637755cbf)] - **doc**: add TSC meeting minutes 2015-09-02 (Rod Vagg) [#2674](https:/nodejs/node/pull/2674)
* [[`d3d5b93214`](https:/nodejs/node/commit/d3d5b93214)] - **doc**: update environment vars in manpage and --help (Roman Reiss) [#2690](https:/nodejs/node/pull/2690)
* [[`29f586ac0a`](https:/nodejs/node/commit/29f586ac0a)] - **doc**: update url doc to account for escaping (Jeremiah Senkpiel) [#2605](https:/nodejs/node/pull/2605)
* [[`ba50cfebef`](https:/nodejs/node/commit/ba50cfebef)] - **doc**: reorder collaborators by their usernames (Johan Bergström) [#2322](https:/nodejs/node/pull/2322)
* [[`8a9a3bf798`](https:/nodejs/node/commit/8a9a3bf798)] - **doc**: update changelog for io.js v3.3.0 (Rod Vagg) [#2653](https:/nodejs/node/pull/2653)
* [[`6cd0e2664b`](https:/nodejs/node/commit/6cd0e2664b)] - **doc**: update io.js reference (Ben Noordhuis) [#2580](https:/nodejs/node/pull/2580)
* [[`f9539c19e8`](https:/nodejs/node/commit/f9539c19e8)] - **doc**: update changelog for io.js v3.2.0 (Rod Vagg) [#2512](https:/nodejs/node/pull/2512)
* [[`cded6e7993`](https:/nodejs/node/commit/cded6e7993)] - **doc**: fix CHANGELOG.md on master (Roman Reiss) [#2513](https:/nodejs/node/pull/2513)
* [[`93e2830686`](https:/nodejs/node/commit/93e2830686)] - **(SEMVER-MINOR)** **doc**: document deprecation of util.is* functions (Sakthipriyan Vairamani) [#2447](https:/nodejs/node/pull/2447)
* [[`7038388558`](https:/nodejs/node/commit/7038388558)] - **doc,test**: enable recursive file watching in Windows (Sakthipriyan Vairamani) [#2649](https:/nodejs/node/pull/2649)
* [[`f3696f64a1`](https:/nodejs/node/commit/f3696f64a1)] - **events,lib**: don't require EE#listenerCount() (Jeremiah Senkpiel) [#2661](https:/nodejs/node/pull/2661)
* [[`45a2046f5d`](https:/nodejs/node/commit/45a2046f5d)] - **(SEMVER-MAJOR)** **installer**: fix installers for node.js rename (Frederic Hemberger) [#2367](https:/nodejs/node/pull/2367)
* [[`7a999a1376`](https:/nodejs/node/commit/7a999a1376)] - **(SEMVER-MAJOR)** **lib**: add net.Socket#localFamily property (Ben Noordhuis) [#956](https:/nodejs/node/pull/956)
* [[`de88255b0f`](https:/nodejs/node/commit/de88255b0f)] - ***Revert*** "**lib,src**: add unix socket getsockname/getpeername" (Ben Noordhuis) [#2584](https:/nodejs/node/pull/2584)
* [[`f337595441`](https:/nodejs/node/commit/f337595441)] - **(SEMVER-MAJOR)** **lib,src**: add unix socket getsockname/getpeername (Ben Noordhuis) [#956](https:/nodejs/node/pull/956)
* [[`3b602527d1`](https:/nodejs/node/commit/3b602527d1)] - **(SEMVER-MAJOR)** **node**: additional cleanup for node rename (cjihrig) [#2367](https:/nodejs/node/pull/2367)
* [[`a69ab27ab4`](https:/nodejs/node/commit/a69ab27ab4)] - **(SEMVER-MAJOR)** **node**: rename from io.js to node (cjihrig) [#2367](https:/nodejs/node/pull/2367)
* [[`9358eee9dd`](https:/nodejs/node/commit/9358eee9dd)] - **node-gyp**: float 3.0.1, minor fix for download url (Rod Vagg) [#2737](https:/nodejs/node/pull/2737)
* [[`d2d981252b`](https:/nodejs/node/commit/d2d981252b)] - **src**: s/ia32/x86 for process.release.libUrl for win (Rod Vagg) [#2699](https:/nodejs/node/pull/2699)
* [[`eba3d3dccd`](https:/nodejs/node/commit/eba3d3dccd)] - **src**: use standard conform snprintf on windows (Karl Skomski) [#2404](https:/nodejs/node/pull/2404)
* [[`cddbec231f`](https:/nodejs/node/commit/cddbec231f)] - **src**: fix buffer overflow for long exception lines (Karl Skomski) [#2404](https:/nodejs/node/pull/2404)
* [[`dd3f3417c7`](https:/nodejs/node/commit/dd3f3417c7)] - **src**: re-enable fast math on arm (Michaël Zasso) [#2592](https:/nodejs/node/pull/2592)
* [[`e137c1177c`](https:/nodejs/node/commit/e137c1177c)] - **(SEMVER-MAJOR)** **src**: enable vector ics on arm again (Ali Ijaz Sheikh) [#2509](https:/nodejs/node/pull/2509)
* [[`7ce749d722`](https:/nodejs/node/commit/7ce749d722)] - **src**: replace usage of v8::Handle with v8::Local (Michaël Zasso) [#2202](https:/nodejs/node/pull/2202)
* [[`b1a2d9509f`](https:/nodejs/node/commit/b1a2d9509f)] - **src**: enable v8 deprecation warnings and fix them (Ben Noordhuis) [#2091](https:/nodejs/node/pull/2091)
* [[`808de0da03`](https:/nodejs/node/commit/808de0da03)] - **(SEMVER-MAJOR)** **src**: apply debug force load fixups from 41e63fb (Ali Ijaz Sheikh) [#2509](https:/nodejs/node/pull/2509)
* [[`5201cb0ff1`](https:/nodejs/node/commit/5201cb0ff1)] - **src**: fix memory leak in ExternString (Karl Skomski) [#2402](https:/nodejs/node/pull/2402)
* [[`2308a27c0a`](https:/nodejs/node/commit/2308a27c0a)] - **src**: only set v8 flags if argc > 1 (Evan Lucas) [#2646](https:/nodejs/node/pull/2646)
* [[`384effed20`](https:/nodejs/node/commit/384effed20)] - **test**: fix use of `common` before required (Rod Vagg) [#2685](https:/nodejs/node/pull/2685)
* [[`f146f686b7`](https:/nodejs/node/commit/f146f686b7)] - **(SEMVER-MAJOR)** **test**: fix test-repl-tab-complete.js for V8 4.5 (Ali Ijaz Sheikh) [#2509](https:/nodejs/node/pull/2509)
* [[`fe4b309fd3`](https:/nodejs/node/commit/fe4b309fd3)] - **test**: refactor to eliminate flaky test (Rich Trott) [#2609](https:/nodejs/node/pull/2609)
* [[`619721e6b8`](https:/nodejs/node/commit/619721e6b8)] - **test**: mark eval_messages as flaky (Alexis Campailla) [#2648](https:/nodejs/node/pull/2648)
* [[`93ba585b66`](https:/nodejs/node/commit/93ba585b66)] - **test**: mark test-vm-syntax-error-stderr as flaky (João Reis) [#2662](https:/nodejs/node/pull/2662)
* [[`367140bca0`](https:/nodejs/node/commit/367140bca0)] - **test**: mark test-repl-persistent-history as flaky (João Reis) [#2659](https:/nodejs/node/pull/2659)
* [[`f6b093343d`](https:/nodejs/node/commit/f6b093343d)] - **timers**: minor `_unrefActive` fixes and improvements (Jeremiah Senkpiel) [#2540](https:/nodejs/node/pull/2540)
* [[`403d7ee7d1`](https:/nodejs/node/commit/403d7ee7d1)] - **timers**: don't mutate unref list while iterating it (Julien Gilli) [#2540](https:/nodejs/node/pull/2540)
* [[`7a8c3e08c3`](https:/nodejs/node/commit/7a8c3e08c3)] - **timers**: Avoid linear scan in `_unrefActive`. (Julien Gilli) [#2540](https:/nodejs/node/pull/2540)
* [[`b630ebaf43`](https:/nodejs/node/commit/b630ebaf43)] - **win,msi**: Upgrade from old upgrade code (João Reis) [#2439](https:/nodejs/node/pull/2439)

## 2015-09-02, Version 3.3.0, @rvagg

### Notable changes

* **build**: Add a `--link-module` option to `configure` that can be used to bundle additional JavaScript modules into a built binary (Bradley Meck) [#2497](https:/nodejs/node/pull/2497)
* **docs**: Merge outstanding doc updates from joyent/node (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* **http_parser**: Significant performance improvement by having `http.Server` consume all initial data from its `net.Socket` and parsing directly without having to enter JavaScript. Any `'data'` listeners on the `net.Socket` will result in the data being "unconsumed" into JavaScript, thereby undoing any performance gains. (Fedor Indutny) [#2355](https:/nodejs/node/pull/2355)
* **libuv**: Upgrade to 1.7.3 (from 1.6.1), see [ChangeLog](https:/libuv/libuv/blob/v1.x/ChangeLog) for details (Saúl Ibarra Corretgé) [#2310](https:/nodejs/node/pull/2310)
* **V8**: Upgrade to 4.4.63.30 (from 4.4.63.26) (Michaël Zasso) [#2482](https:/nodejs/node/pull/2482)

### Known issues

See https:/nodejs/io.js/labels/confirmed-bug for complete and current list of known issues.

* Some uses of computed object shorthand properties are not handled correctly by the current version of V8. e.g. `[{ [prop]: val }]` evaluates to `[{}]`. [#2507](https:/nodejs/node/issues/2507)
* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https:/nodejs/io.js/issues/1264).
* Surrogate pair in REPL can freeze terminal. [#690](https:/nodejs/io.js/issues/690)
* `process.send()` is not synchronous as the docs suggest, a regression introduced in 1.0.2, see [#760](https:/nodejs/io.js/issues/760).
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https:/nodejs/io.js/issues/894)
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https:/nodejs/io.js/issues/1435).

### Commits

* [[`1a531b4e44`](https:/nodejs/node/commit/1a531b4e44)] - **(SEMVER-MINOR)** Introduce --link-module to ./configure (Bradley Meck) [#2497](https:/nodejs/node/pull/2497)
* [[`d2f314c190`](https:/nodejs/node/commit/d2f314c190)] - **build**: fix borked chmod call for release uploads (Rod Vagg) [#2645](https:/nodejs/node/pull/2645)
* [[`3172e9c541`](https:/nodejs/node/commit/3172e9c541)] - **build**: set file permissions before uploading (Rod Vagg) [#2623](https:/nodejs/node/pull/2623)
* [[`a860d7fae1`](https:/nodejs/node/commit/a860d7fae1)] - **build**: change staging directory on new server (Rod Vagg) [#2623](https:/nodejs/node/pull/2623)
* [[`50c0baa8d7`](https:/nodejs/node/commit/50c0baa8d7)] - **build**: rename 'doc' directory to 'docs' for upload (Rod Vagg) [#2623](https:/nodejs/node/pull/2623)
* [[`0a0577cf5f`](https:/nodejs/node/commit/0a0577cf5f)] - **build**: fix bad cherry-pick for vcbuild.bat build-release (Rod Vagg) [#2625](https:/nodejs/node/pull/2625)
* [[`34de90194b`](https:/nodejs/node/commit/34de90194b)] - **build**: only define NODE_V8_OPTIONS if not empty (Evan Lucas) [#2532](https:/nodejs/node/pull/2532)
* [[`944174b189`](https:/nodejs/node/commit/944174b189)] - **build**: make ci test addons in test/addons (Ben Noordhuis) [#2428](https:/nodejs/node/pull/2428)
* [[`e955f9a1b0`](https:/nodejs/node/commit/e955f9a1b0)] - **crypto**: Use OPENSSL_cleanse to shred the data. (Сковорода Никита Андреевич) [#2575](https:/nodejs/node/pull/2575)
* [[`395d736b9d`](https:/nodejs/node/commit/395d736b9d)] - **debugger**: use strict equality comparison (Minwoo Jung) [#2558](https:/nodejs/node/pull/2558)
* [[`1d0e5210a8`](https:/nodejs/node/commit/1d0e5210a8)] - **deps**: upgrade libuv to 1.7.3 (Saúl Ibarra Corretgé) [#2310](https:/nodejs/node/pull/2310)
* [[`34ef53364f`](https:/nodejs/node/commit/34ef53364f)] - **deps**: update V8 to 4.4.63.30 (Michaël Zasso) [#2482](https:/nodejs/node/pull/2482)
* [[`23579a5f4a`](https:/nodejs/node/commit/23579a5f4a)] - **doc**: add TSC meeting minutes 2015-08-12 (Rod Vagg) [#2438](https:/nodejs/node/pull/2438)
* [[`0cc59299a4`](https:/nodejs/node/commit/0cc59299a4)] - **doc**: add TSC meeting minutes 2015-08-26 (Rod Vagg) [#2591](https:/nodejs/node/pull/2591)
* [[`6efa96e33a`](https:/nodejs/node/commit/6efa96e33a)] - **doc**: merge CHANGELOG.md with joyent/node ChangeLog (P.S.V.R) [#2536](https:/nodejs/node/pull/2536)
* [[`f75d54607b`](https:/nodejs/node/commit/f75d54607b)] - **doc**: clarify cluster behaviour with no workers (Jeremiah Senkpiel) [#2606](https:/nodejs/node/pull/2606)
* [[`8936302121`](https:/nodejs/node/commit/8936302121)] - **doc**: minor clarification in buffer.markdown (Сковорода Никита Андреевич) [#2574](https:/nodejs/node/pull/2574)
* [[`0db0e53753`](https:/nodejs/node/commit/0db0e53753)] - **doc**: add @jasnell and @sam-github to release team (Rod Vagg) [#2455](https:/nodejs/node/pull/2455)
* [[`c16e100593`](https:/nodejs/node/commit/c16e100593)] - **doc**: reorg release team to separate section (Rod Vagg) [#2455](https:/nodejs/node/pull/2455)
* [[`e3e00143fd`](https:/nodejs/node/commit/e3e00143fd)] - **doc**: fix bad merge on modules.markdown (James M Snell)
* [[`2f62455880`](https:/nodejs/node/commit/2f62455880)] - **doc**: minor additional corrections and improvements (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`3bd08aac4b`](https:/nodejs/node/commit/3bd08aac4b)] - **doc**: minor grammatical update in crypto.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`f707189370`](https:/nodejs/node/commit/f707189370)] - **doc**: minor grammatical update (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`6c98cf0266`](https:/nodejs/node/commit/6c98cf0266)] - **doc**: remove repeated statement in globals.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`48e6ccf8c2`](https:/nodejs/node/commit/48e6ccf8c2)] - **doc**: remove 'dudes' from documentation (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`b5d68f8076`](https:/nodejs/node/commit/b5d68f8076)] - **doc**: update tense in child_process.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`242e3fe3ba`](https:/nodejs/node/commit/242e3fe3ba)] - **doc**: fixed worker.id type (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`ea9ee15c21`](https:/nodejs/node/commit/ea9ee15c21)] - **doc**: port is optional for socket.bind() (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`0ff6657a50`](https:/nodejs/node/commit/0ff6657a50)] - **doc**: fix minor types and grammar in fs docs (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`94d83c04f2`](https:/nodejs/node/commit/94d83c04f2)] - **doc**: update parameter name in net.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`04111ce40f`](https:/nodejs/node/commit/04111ce40f)] - **doc**: small typo in domain.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`c9fdd1bbbf`](https:/nodejs/node/commit/c9fdd1bbbf)] - **doc**: fixed typo in net.markdown (missing comma) (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`27c07b3f8e`](https:/nodejs/node/commit/27c07b3f8e)] - **doc**: update description of fs.exists in fs.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`52018e73d9`](https:/nodejs/node/commit/52018e73d9)] - **doc**: clarification on the 'close' event (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`f6d3b87a25`](https:/nodejs/node/commit/f6d3b87a25)] - **doc**: improve working in stream.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`b5da89431a`](https:/nodejs/node/commit/b5da89431a)] - **doc**: update path.extname documentation (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`1d4ea609db`](https:/nodejs/node/commit/1d4ea609db)] - **doc**: small clarifications to modules.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`c888985591`](https:/nodejs/node/commit/c888985591)] - **doc**: code style cleanups in repl.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`105b493595`](https:/nodejs/node/commit/105b493595)] - **doc**: correct grammar in cluster.markdown (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`51b86ccac7`](https:/nodejs/node/commit/51b86ccac7)] - **doc**: Clarify the module.parent is set once (James M Snell) [#2378](https:/nodejs/node/pull/2378)
* [[`d2ffecba2d`](https:/nodejs/node/commit/d2ffecba2d)] - **doc**: add internal modules notice (Jeremiah Senkpiel) [#2523](https:/nodejs/node/pull/2523)
* [[`b36debd5cb`](https:/nodejs/node/commit/b36debd5cb)] - **env**: introduce `KickNextTick` (Fedor Indutny) [#2355](https:/nodejs/node/pull/2355)
* [[`1bc446863f`](https:/nodejs/node/commit/1bc446863f)] - **http_parser**: consume StreamBase instance (Fedor Indutny) [#2355](https:/nodejs/node/pull/2355)
* [[`ce04b735cc`](https:/nodejs/node/commit/ce04b735cc)] - **src**: only memcmp if length > 0 in Buffer::Compare (Karl Skomski) [#2544](https:/nodejs/node/pull/2544)
* [[`31823e37c7`](https:/nodejs/node/commit/31823e37c7)] - **src**: DRY getsockname/getpeername code (Ben Noordhuis) [#956](https:/nodejs/node/pull/956)
* [[`13fd96dda3`](https:/nodejs/node/commit/13fd96dda3)] - **src**: missing Exception::Error in node_http_parser (Jeremiah Senkpiel) [#2550](https:/nodejs/node/pull/2550)
* [[`42e075ae02`](https:/nodejs/node/commit/42e075ae02)] - **test**: improve performance of stringbytes test (Trevor Norris) [#2544](https:/nodejs/node/pull/2544)
* [[`fc726399fd`](https:/nodejs/node/commit/fc726399fd)] - **test**: unmark test-process-argv-0.js as flaky (Rich Trott) [#2613](https:/nodejs/node/pull/2613)
* [[`7727ba1394`](https:/nodejs/node/commit/7727ba1394)] - **test**: lint and refactor to avoid autocrlf issue (Roman Reiss) [#2494](https:/nodejs/node/pull/2494)
* [[`c56aa829f0`](https:/nodejs/node/commit/c56aa829f0)] - **test**: use tmpDir instead of fixturesDir (Sakthipriyan Vairamani) [#2583](https:/nodejs/node/pull/2583)
* [[`5e65181ea4`](https:/nodejs/node/commit/5e65181ea4)] - **test**: handling failure cases properly (Sakthipriyan Vairamani) [#2206](https:/nodejs/node/pull/2206)
* [[`c48b95e847`](https:/nodejs/node/commit/c48b95e847)] - **test**: initial list of flaky tests (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`94e88498ba`](https:/nodejs/node/commit/94e88498ba)] - **test**: pass args to test-ci via env variable (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`09987c7a1c`](https:/nodejs/node/commit/09987c7a1c)] - **test**: support flaky tests in test-ci (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`08b83c8b45`](https:/nodejs/node/commit/08b83c8b45)] - **test**: add test configuration templates (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`8f8ab6fa57`](https:/nodejs/node/commit/8f8ab6fa57)] - **test**: runner should return 0 on flaky tests (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`0cfd3be9c6`](https:/nodejs/node/commit/0cfd3be9c6)] - **test**: runner support for flaky tests (Alexis Campailla) [#2424](https:/nodejs/node/pull/2424)
* [[`3492d2d4c6`](https:/nodejs/node/commit/3492d2d4c6)] - **test**: make test-process-argv-0 robust (Rich Trott) [#2541](https:/nodejs/node/pull/2541)
* [[`a96cc31710`](https:/nodejs/node/commit/a96cc31710)] - **test**: speed up test-child-process-spawnsync.js (Rich Trott) [#2542](https:/nodejs/node/pull/2542)
* [[`856baf4c67`](https:/nodejs/node/commit/856baf4c67)] - **test**: make spawnSync() test robust (Rich Trott) [#2535](https:/nodejs/node/pull/2535)
* [[`3aa6bbb648`](https:/nodejs/node/commit/3aa6bbb648)] - **tools**: update release.sh to work with new website (Rod Vagg) [#2623](https:/nodejs/node/pull/2623)
* [[`f2f0fe45ff`](https:/nodejs/node/commit/f2f0fe45ff)] - **tools**: make add-on scraper print filenames (Ben Noordhuis) [#2428](https:/nodejs/node/pull/2428)
* [[`bb24c4a418`](https:/nodejs/node/commit/bb24c4a418)] - **win,msi**: correct installation path registry keys (João Reis) [#2565](https:/nodejs/node/pull/2565)
* [[`752977b888`](https:/nodejs/node/commit/752977b888)] - **win,msi**: change InstallScope to perMachine (João Reis) [#2565](https:/nodejs/node/pull/2565)

## 2015-08-25, Version 3.2.0, @rvagg

### Notable changes

* **events**: Added `EventEmitter#listenerCount(event)` as a replacement for `EventEmitter.listenerCount(emitter, event)`, which has now been marked as deprecated in the docs. (Sakthipriyan Vairamani) [#2349](https:/nodejs/node/pull/2349)
* **module**: Fixed an error with preloaded modules when the current working directory doesn't exist. (Bradley Meck) [#2353](https:/nodejs/node/pull/2353)
* **node**: Startup time is now about 5% faster when not passing V8 flags. (Evan Lucas) [#2483](https:/nodejs/node/pull/2483)
* **repl**: Tab-completion now works better with arrays. (James M Snell) [#2409](https:/nodejs/node/pull/2409)
* **string_bytes**: Fixed an unaligned write in the handling of UCS2 encoding. (Fedor Indutny) [#2480](https:/nodejs/node/pull/2480)
* **tls**: Added a new `--tls-cipher-list` flag that can be used to override the built-in default cipher list. (James M Snell) [#2412](https:/nodejs/node/pull/2412) _Note: it is suggested you use the built-in cipher list as it has been carefully selected to reflect current security best practices and risk mitigation._

### Known issues

See https:/nodejs/io.js/labels/confirmed-bug for complete and current list of known issues.

* Some uses of computed object shorthand properties are not handled correctly by the current version of V8. e.g. `[{ [prop]: val }]` evaluates to `[{}]`. [#2507](https:/nodejs/node/issues/2507)
* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https:/nodejs/io.js/issues/1264).
* Surrogate pair in REPL can freeze terminal. [#690](https:/nodejs/io.js/issues/690)
* `process.send()` is not synchronous as the docs suggest, a regression introduced in 1.0.2, see [#760](https:/nodejs/io.js/issues/760).
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https:/nodejs/io.js/issues/894)
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https:/nodejs/io.js/issues/1435).

### Commits

* [[`1cd794f129`](https:/nodejs/node/commit/1cd794f129)] - **buffer**: reapply 07c0667 (Fedor Indutny) [#2487](https:/nodejs/node/pull/2487)
* [[`156781dedd`](https:/nodejs/node/commit/156781dedd)] - **build**: use required platform in android-configure (Evan Lucas) [#2501](https:/nodejs/node/pull/2501)
* [[`77075ec906`](https:/nodejs/node/commit/77075ec906)] - **crypto**: fix mem {de}allocation in ExportChallenge (Karl Skomski) [#2359](https:/nodejs/node/pull/2359)
* [[`cb30414d9e`](https:/nodejs/node/commit/cb30414d9e)] - **doc**: sync CHANGELOG.md from master (Roman Reiss) [#2524](https:/nodejs/node/pull/2524)
* [[`9330f5ef45`](https:/nodejs/node/commit/9330f5ef45)] - **doc**: make the deprecations consistent (Sakthipriyan Vairamani) [#2450](https:/nodejs/node/pull/2450)
* [[`09437e0146`](https:/nodejs/node/commit/09437e0146)] - **doc**: fix comments in tls_wrap.cc and _http_client.js (Minwoo Jung) [#2489](https:/nodejs/node/pull/2489)
* [[`c9867fed29`](https:/nodejs/node/commit/c9867fed29)] - **doc**: document response.finished in http.markdown (hackerjs) [#2414](https:/nodejs/node/pull/2414)
* [[`7f23a83c42`](https:/nodejs/node/commit/7f23a83c42)] - **doc**: update AUTHORS list (Rod Vagg) [#2505](https:/nodejs/node/pull/2505)
* [[`cd0c362f67`](https:/nodejs/node/commit/cd0c362f67)] - **doc**: update AUTHORS list (Rod Vagg) [#2318](https:/nodejs/node/pull/2318)
* [[`2c7b9257ea`](https:/nodejs/node/commit/2c7b9257ea)] - **doc**: add TSC meeting minutes 2015-07-29 (Rod Vagg) [#2437](https:/nodejs/node/pull/2437)
* [[`aaefde793e`](https:/nodejs/node/commit/aaefde793e)] - **doc**: add TSC meeting minutes 2015-08-19 (Rod Vagg) [#2460](https:/nodejs/node/pull/2460)
* [[`51ef9106f5`](https:/nodejs/node/commit/51ef9106f5)] - **doc**: add TSC meeting minutes 2015-06-03 (Rod Vagg) [#2453](https:/nodejs/node/pull/2453)
* [[`7130b4cf1d`](https:/nodejs/node/commit/7130b4cf1d)] - **doc**: fix links to original converged repo (Rod Vagg) [#2454](https:/nodejs/node/pull/2454)
* [[`14f2aee1df`](https:/nodejs/node/commit/14f2aee1df)] - **doc**: fix links to original gh issues for TSC meetings (Rod Vagg) [#2454](https:/nodejs/node/pull/2454)
* [[`87a9ef0a40`](https:/nodejs/node/commit/87a9ef0a40)] - **doc**: add audio recording links to TSC meeting minutes (Rod Vagg) [#2454](https:/nodejs/node/pull/2454)
* [[`f5cf24afbc`](https:/nodejs/node/commit/f5cf24afbc)] - **doc**: add TSC meeting minutes 2015-07-22 (Rod Vagg) [#2436](https:/nodejs/node/pull/2436)
* [[`3f821b96eb`](https:/nodejs/node/commit/3f821b96eb)] - **doc**: fix spelling mistake in node.js comment (Jacob Edelman) [#2391](https:/nodejs/node/pull/2391)
* [[`3e6a6fcdd6`](https:/nodejs/node/commit/3e6a6fcdd6)] - **(SEMVER-MINOR)** **events**: deprecate static listenerCount function (Sakthipriyan Vairamani) [#2349](https:/nodejs/node/pull/2349)
* [[`023386c852`](https:/nodejs/node/commit/023386c852)] - **fs**: replace bad_args macro with concrete error msg (Roman Klauke) [#2495](https:/nodejs/node/pull/2495)
* [[`d1c27b2e29`](https:/nodejs/node/commit/d1c27b2e29)] - **module**: fix module preloading when cwd is ENOENT (Bradley Meck) [#2353](https:/nodejs/node/pull/2353)
* [[`5d7486941b`](https:/nodejs/node/commit/5d7486941b)] - **repl**: filter integer keys from repl tab complete list (James M Snell) [#2409](https:/nodejs/node/pull/2409)
* [[`7f02443a9a`](https:/nodejs/node/commit/7f02443a9a)] - **repl**: dont throw ENOENT on NODE_REPL_HISTORY_FILE (Todd Kennedy) [#2451](https:/nodejs/node/pull/2451)
* [[`56a2ae9cef`](https:/nodejs/node/commit/56a2ae9cef)] - **src**: improve startup time (Evan Lucas) [#2483](https:/nodejs/node/pull/2483)
* [[`14653c7429`](https:/nodejs/node/commit/14653c7429)] - **stream**: rename poorly named function (Ben Noordhuis) [#2479](https:/nodejs/node/pull/2479)
* [[`1c6e014bfa`](https:/nodejs/node/commit/1c6e014bfa)] - **stream**: micro-optimize high water mark calculation (Ben Noordhuis) [#2479](https:/nodejs/node/pull/2479)
* [[`f1f4b4c46d`](https:/nodejs/node/commit/f1f4b4c46d)] - **stream**: fix off-by-factor-16 error in comment (Ben Noordhuis) [#2479](https:/nodejs/node/pull/2479)
* [[`2d3f09bd76`](https:/nodejs/node/commit/2d3f09bd76)] - **stream_base**: various improvements (Fedor Indutny) [#2351](https:/nodejs/node/pull/2351)
* [[`c1ce423b35`](https:/nodejs/node/commit/c1ce423b35)] - **string_bytes**: fix unaligned write in UCS2 (Fedor Indutny) [#2480](https:/nodejs/node/pull/2480)
* [[`e4d0e86165`](https:/nodejs/node/commit/e4d0e86165)] - **test**: refactor test-https-simple.js (Rich Trott) [#2433](https:/nodejs/node/pull/2433)
* [[`0ea5c8d737`](https:/nodejs/node/commit/0ea5c8d737)] - **test**: remove test-timers-first-fire (João Reis) [#2458](https:/nodejs/node/pull/2458)
* [[`536c3d0537`](https:/nodejs/node/commit/536c3d0537)] - **test**: use reserved IP in test-net-connect-timeout (Rich Trott) [#2257](https:/nodejs/node/pull/2257)
* [[`5df06fd8df`](https:/nodejs/node/commit/5df06fd8df)] - **test**: add spaces after keywords (Brendan Ashworth)
* [[`e714b5620e`](https:/nodejs/node/commit/e714b5620e)] - **test**: remove unreachable code (Michaël Zasso) [#2289](https:/nodejs/node/pull/2289)
* [[`3579f3a2a4`](https:/nodejs/node/commit/3579f3a2a4)] - **test**: disallow unreachable code (Michaël Zasso) [#2289](https:/nodejs/node/pull/2289)
* [[`3545e236fc`](https:/nodejs/node/commit/3545e236fc)] - **test**: reduce timeouts in test-net-keepalive (Brendan Ashworth) [#2429](https:/nodejs/node/pull/2429)
* [[`b60e690023`](https:/nodejs/node/commit/b60e690023)] - **test**: improve test-net-server-pause-on-connect (Brendan Ashworth) [#2429](https:/nodejs/node/pull/2429)
* [[`11d1b8fcaf`](https:/nodejs/node/commit/11d1b8fcaf)] - **test**: improve test-net-pingpong (Brendan Ashworth) [#2429](https:/nodejs/node/pull/2429)
* [[`5fef5c6562`](https:/nodejs/node/commit/5fef5c6562)] - **(SEMVER-MINOR)** **tls**: add --tls-cipher-list command line switch (James M Snell) [#2412](https:/nodejs/node/pull/2412)
* [[`d9b70f9cbf`](https:/nodejs/node/commit/d9b70f9cbf)] - **tls**: handle empty cert in checkServerIndentity (Mike Atkins) [#2343](https:/nodejs/node/pull/2343)
* [[`4f8e34c202`](https:/nodejs/node/commit/4f8e34c202)] - **tools**: add license boilerplate to check-imports.sh (James M Snell) [#2386](https:/nodejs/node/pull/2386)
* [[`b76b9197f9`](https:/nodejs/node/commit/b76b9197f9)] - **tools**: enable space-after-keywords in eslint (Brendan Ashworth)
* [[`64a8f30a70`](https:/nodejs/node/commit/64a8f30a70)] - **tools**: fix anchors in generated documents (Sakthipriyan Vairamani) [#2491](https:/nodejs/node/pull/2491)
* [[`22e344ea10`](https:/nodejs/node/commit/22e344ea10)] - **win**: fix custom actions for WiX older than 3.9 (João Reis) [#2365](https:/nodejs/node/pull/2365)
* [[`b5bd3ebfc8`](https:/nodejs/node/commit/b5bd3ebfc8)] - **win**: fix custom actions on Visual Studio != 2013 (Julien Gilli) [#2365](https:/nodejs/node/pull/2365)

## 2015-08-18, Version 3.1.0, @Fishrock123

### Notable changes

* **buffer**: Fixed a couple large memory leaks (Ben Noordhuis) [#2352](https:/nodejs/node/pull/2352).
* **crypto**:
  - Fixed a couple of minor memory leaks (Karl Skomski) [#2375](https:/nodejs/node/pull/2375).
  - Signing now checks for OpenSSL errors (P.S.V.R) [#2342](https:/nodejs/node/pull/2342). **Note that this may expose previously hidden errors in user code.**
* **intl**: Intl support using small-icu is now enabled by default in builds (Steven R. Loomis) [#2264](https:/nodejs/node/pull/2264).
  - [`String#normalize()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize) can now be used for unicode normalization.
  - The [`Intl`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Intl) object and various `String` and `Number` methods are present, but only support the English locale.
  - For support of all locales, node must be built with [full-icu](https:/nodejs/node#build-with-full-icu-support-all-locales-supported-by-icu).
* **tls**: Fixed tls throughput being much lower after an incorrect merge (Fedor Indutny) [#2381](https:/nodejs/node/pull/2381).
* **tools**: The v8 tick processor now comes bundled with node (Matt Loring) [#2090](https:/nodejs/node/pull/2090).
  - This can be used by producing performance profiling output by running node with `--perf`, then running your appropriate platform's script on the output as found in [tools/v8-prof](https:/nodejs/node/tree/master/tools/v8-prof).
* **util**: `util.inspect(obj)` now prints the constructor name of the object if there is one (Christopher Monsanto) [#1935](https:/nodejs/io.js/pull/1935).

### Known issues

See https:/nodejs/io.js/labels/confirmed-bug for complete and current list of known issues.

* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https:/nodejs/io.js/issues/1264).
* Surrogate pair in REPL can freeze terminal. [#690](https:/nodejs/io.js/issues/690)
* `process.send()` is not synchronous as the docs suggest, a regression introduced in 1.0.2, see [#760](https:/nodejs/io.js/issues/760).
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https:/nodejs/io.js/issues/894)
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https:/nodejs/io.js/issues/1435).

### Commits

* [[`3645dc62ed`](https:/nodejs/node/commit/3645dc62ed)] - **build**: work around VS2015 issue in ICU <56 (Steven R. Loomis) [#2283](https:/nodejs/node/pull/2283)
* [[`1f12e03266`](https:/nodejs/node/commit/1f12e03266)] - **(SEMVER-MINOR)** **build**: intl: converge from joyent/node (Steven R. Loomis) [#2264](https:/nodejs/node/pull/2264)
* [[`071640abdd`](https:/nodejs/node/commit/071640abdd)] - **build**: Intl: bump ICU4C from 54 to 55 (Steven R. Loomis) [#2293](https:/nodejs/node/pull/2293)
* [[`07a88b0c8b`](https:/nodejs/node/commit/07a88b0c8b)] - **build**: update manifest to include Windows 10 (Lucien Greathouse) [#2332](https:/nodejs/io.js/pull/2332)
* [[`0bb099f444`](https:/nodejs/node/commit/0bb099f444)] - **build**: expand ~ in install prefix early (Ben Noordhuis) [#2307](https:/nodejs/io.js/pull/2307)
* [[`7fe6dd8f5d`](https:/nodejs/node/commit/7fe6dd8f5d)] - **crypto**: check for OpenSSL errors when signing (P.S.V.R) [#2342](https:/nodejs/node/pull/2342)
* [[`605f6ee904`](https:/nodejs/node/commit/605f6ee904)] - **crypto**: fix memory leak in PBKDF2Request (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`ba6eb8af12`](https:/nodejs/node/commit/ba6eb8af12)] - **crypto**: fix memory leak in ECDH::SetPrivateKey (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`6a16368611`](https:/nodejs/node/commit/6a16368611)] - **crypto**: fix memory leak in PublicKeyCipher::Cipher (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`a760a87803`](https:/nodejs/node/commit/a760a87803)] - **crypto**: fix memory leak in SafeX509ExtPrint (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`f45487cd6e`](https:/nodejs/node/commit/f45487cd6e)] - **crypto**: fix memory leak in SetDHParam (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`2ff183dd86`](https:/nodejs/node/commit/2ff183dd86)] - **doc**: Update FIPS instructions in README.md (Michael Dawson) [#2278](https:/nodejs/node/pull/2278)
* [[`6483bc2e8f`](https:/nodejs/node/commit/6483bc2e8f)] - **doc**: clarify options for fs.watchFile() (Rich Trott) [#2425](https:/nodejs/node/pull/2425)
* [[`e76822f454`](https:/nodejs/node/commit/e76822f454)] - **doc**: multiple documentation updates cherry picked from v0.12 (James M Snell) [#2302](https:/nodejs/io.js/pull/2302)
* [[`1738c9680b`](https:/nodejs/node/commit/1738c9680b)] - **net**: ensure Socket reported address is current (Ryan Graham) [#2095](https:/nodejs/io.js/pull/2095)
* [[`844d3f0e3e`](https:/nodejs/node/commit/844d3f0e3e)] - **path**: use '===' instead of '==' for comparison (Sam Stites) [#2388](https:/nodejs/node/pull/2388)
* [[`7118b8a882`](https:/nodejs/node/commit/7118b8a882)] - **path**: remove dead code in favor of unit tests (Nathan Woltman) [#2282](https:/nodejs/io.js/pull/2282)
* [[`34f2cfa806`](https:/nodejs/node/commit/34f2cfa806)] - **src**: better error message on failed Buffer malloc (Karl Skomski) [#2422](https:/nodejs/node/pull/2422)
* [[`b196c1da3c`](https:/nodejs/node/commit/b196c1da3c)] - **src**: fix memory leak in DLOpen (Karl Skomski) [#2375](https:/nodejs/node/pull/2375)
* [[`d1307b2995`](https:/nodejs/node/commit/d1307b2995)] - **src**: don't use fopen() in require() fast path (Ben Noordhuis) [#2377](https:/nodejs/node/pull/2377)
* [[`455ec570d1`](https:/nodejs/node/commit/455ec570d1)] - **src**: rename Buffer::Use() to Buffer::New() (Ben Noordhuis) [#2352](https:/nodejs/node/pull/2352)
* [[`fd63e1ce2b`](https:/nodejs/node/commit/fd63e1ce2b)] - **src**: introduce internal Buffer::Copy() function (Ben Noordhuis) [#2352](https:/nodejs/node/pull/2352)
* [[`5586ceca13`](https:/nodejs/node/commit/5586ceca13)] - **src**: move internal functions out of node_buffer.h (Ben Noordhuis) [#2352](https:/nodejs/node/pull/2352)
* [[`bff9bcddb6`](https:/nodejs/node/commit/bff9bcddb6)] - **src**: plug memory leaks (Ben Noordhuis) [#2352](https:/nodejs/node/pull/2352)
* [[`ccf12df4f3`](https:/nodejs/node/commit/ccf12df4f3)] - **(SEMVER-MINOR)** **src**: add total_available_size to v8 statistics (Roman Klauke) [#2348](https:/nodejs/io.js/pull/2348)
* [[`194eeb841b`](https:/nodejs/node/commit/194eeb841b)] - **test**: drop Isolate::GetCurrent() from addon tests (Ben Noordhuis) [#2427](https:/nodejs/node/pull/2427)
* [[`46cdb2f6e2`](https:/nodejs/node/commit/46cdb2f6e2)] - **test**: lint addon tests (Ben Noordhuis) [#2427](https:/nodejs/node/pull/2427)
* [[`850c794882`](https:/nodejs/node/commit/850c794882)] - **test**: refactor test-fs-watchfile.js (Rich Trott) [#2393](https:/nodejs/node/pull/2393)
* [[`a3160c0a33`](https:/nodejs/node/commit/a3160c0a33)] - **test**: correct spelling of 'childProcess' (muddletoes) [#2389](https:/nodejs/node/pull/2389)
* [[`e51f90d747`](https:/nodejs/node/commit/e51f90d747)] - **test**: option to run a subset of tests (João Reis) [#2260](https:/nodejs/io.js/pull/2260)
* [[`cc46d3bca3`](https:/nodejs/node/commit/cc46d3bca3)] - **test**: clarify dropMembership() call (Rich Trott) [#2062](https:/nodejs/io.js/pull/2062)
* [[`0ee4df9c7a`](https:/nodejs/node/commit/0ee4df9c7a)] - **test**: make listen-fd-cluster/server more robust (Sam Roberts) [#1944](https:/nodejs/io.js/pull/1944)
* [[`cf9ba81398`](https:/nodejs/node/commit/cf9ba81398)] - **test**: address timing issues in simple http tests (Gireesh Punathil) [#2294](https:/nodejs/io.js/pull/2294)
* [[`cbb75c4f86`](https:/nodejs/node/commit/cbb75c4f86)] - **tls**: fix throughput issues after incorrect merge (Fedor Indutny) [#2381](https:/nodejs/node/pull/2381)
* [[`94b765f409`](https:/nodejs/node/commit/94b765f409)] - **tls**: fix check for reused session (Fedor Indutny) [#2312](https:/nodejs/io.js/pull/2312)
* [[`e83a41ad65`](https:/nodejs/node/commit/e83a41ad65)] - **tls**: introduce internal `onticketkeycallback` (Fedor Indutny) [#2312](https:/nodejs/io.js/pull/2312)
* [[`fb0f5d733f`](https:/nodejs/node/commit/fb0f5d733f)] - **(SEMVER-MINOR)** **tools**: run the tick processor without building v8 (Matt Loring) [#2090](https:/nodejs/node/pull/2090)
* [[`7606bdb897`](https:/nodejs/node/commit/7606bdb897)] - **(SEMVER-MINOR)** **util**: display constructor when inspecting objects (Christopher Monsanto) [#1935](https:/nodejs/io.js/pull/1935)

## 2015-08-04, Version 3.0.0, @rvagg

### Notable changes

* **buffer**:
  - Due to changes in V8, it has been necessary to reimplement `Buffer` on top of V8's `Uint8Array`. Every effort has been made to minimize the performance impact, however `Buffer` instantiation is measurably slower. Access operations may be faster in some circumstances but the exact performance profile and difference over previous versions will depend on how `Buffer` is used within applications. (Trevor Norris) [#1825](https:/nodejs/node/pull/1825).
  - `Buffer` can now take `ArrayBuffer`s as a constructor argument (Trevor Norris) [#2002](https:/nodejs/node/pull/2002).
  - When a single buffer is passed to `Buffer.concat()`, a new, copied `Buffer` object will be returned; previous behavior was to return the original `Buffer` object (Sakthipriyan Vairamani) [#1937](https:/nodejs/node/pull/1937).
* **build**: PPC support has been added to core to allow compiling on pLinux BE and LE (AIX support coming soon) (Michael Dawson) [#2124](https:/nodejs/node/pull/2124).
* **dgram**: If an error occurs within `socket.send()` and a callback has been provided, the error is only passed as the first argument to the callback and not emitted on the `socket` object; previous behavior was to do both (Matteo Collina & Chris Dickinson) [#1796](https:/nodejs/node/pull/1796)
* **freelist**: Deprecate the undocumented `freelist` core module (Sakthipriyan Vairamani) [#2176](https:/nodejs/node/pull/2176).
* **http**:
  - Status codes now all use the official [IANA names](http://www.iana.org/assignments/http-status-codes) as per [RFC7231](https://tools.ietf.org/html/rfc7231), e.g. `http.STATUS_CODES[414]` now returns `'URI Too Long'` rather than `'Request-URI Too Large'` (jomo) [#1470](https:/nodejs/node/pull/1470).
  - Calling .getName() on an HTTP agent no longer returns a trailing colon, HTTPS agents will no longer return an extra colon near the middle of the string (Brendan Ashworth) [#1617](https:/nodejs/node/pull/1617).
* **node**:
  - `NODE_MODULE_VERSION` has been bumped to `45` to reflect the break in ABI (Rod Vagg) [#2096](https:/nodejs/node/pull/2096).
  - Introduce a new `process.release` object that contains a `name` property set to `'io.js'` and `sourceUrl`, `headersUrl` and `libUrl` (Windows only) properties containing URLs for the relevant resources; this is intended to be used by node-gyp (Rod Vagg) [#2154](https:/nodejs/node/pull/2154).
  - The version of node-gyp bundled with io.js now downloads and uses a tarball of header files from iojs.org rather than the full source for compiling native add-ons; it is hoped this is a temporary floating patch and the change will be upstreamed to node-gyp soon (Rod Vagg) [#2066](https:/nodejs/node/pull/2066).
* **repl**: Persistent history is now enabled by default. The history file is located at ~/.node_repl_history, which can be overridden by the new environment variable `NODE_REPL_HISTORY`. This deprecates the previous `NODE_REPL_HISTORY_FILE` variable. Additionally, the format of the file has been changed to plain text to better handle file corruption. (Jeremiah Senkpiel) [#2224](https:/nodejs/node/pull/2224).
* **smalloc**: The `smalloc` module has been removed as it is no longer possible to provide the API due to changes in V8 (Ben Noordhuis) [#2022](https:/nodejs/node/pull/2022).
* **tls**: Add `server.getTicketKeys()` and `server.setTicketKeys()` methods for [TLS session key](https://www.ietf.org/rfc/rfc5077.txt) rotation (Fedor Indutny) [#2227](https:/nodejs/node/pull/2227).
* **v8**: Upgraded to 4.4.63.26
  - ES6: Enabled [computed property names](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#Computed_property_names)
  - ES6: `Array` can now be subclassed in strict mode
  - ES6: Implement [rest parameters](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/rest_parameters) in staging, use the `--harmony-rest-parameters` command line flag
  - ES6: Implement the [spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator) in staging, use the `--harmony-spreadcalls` command line flag
  - Removed `SetIndexedPropertiesToExternalArrayData` and related APIs, forcing a shift to `Buffer` to be reimplemented based on `Uint8Array`
  - Introduction of `Maybe` and `MaybeLocal` C++ API for objects which _may_ or _may not_ have a value.
  - Added support for PPC

See also https:/nodejs/node/wiki/Breaking-Changes#300-from-2x for a summary of the breaking changes (SEMVER-MAJOR).

### Known issues

See https:/nodejs/node/labels/confirmed-bug for complete and current list of known issues.

* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https:/nodejs/node/issues/1264).
* Surrogate pair in REPL can freeze terminal. [#690](https:/nodejs/node/issues/690)
* `process.send()` is not synchronous as the docs suggest, a regression introduced in 1.0.2, see [#760](https:/nodejs/node/issues/760).
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https:/nodejs/node/issues/894)
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https:/nodejs/node/issues/1435).

### Commits

* [[`60a974d200`](https:/nodejs/node/commit/60a974d200)] - **buffer**: fix missing null/undefined check (Trevor Norris) [#2195](https:/nodejs/node/pull/2195)
* [[`e6ab2d92bc`](https:/nodejs/node/commit/e6ab2d92bc)] - **buffer**: fix not return on error (Trevor Norris) [#2225](https:/nodejs/node/pull/2225)
* [[`1057d1186b`](https:/nodejs/node/commit/1057d1186b)] - **buffer**: rename internal/buffer_new.js to buffer.js (Ben Noordhuis) [#2022](https:/nodejs/node/pull/2022)
* [[`4643b8b667`](https:/nodejs/node/commit/4643b8b667)] - **(SEMVER-MINOR)** **buffer**: allow ArrayBuffer as Buffer argument (Trevor Norris) [#2002](https:/nodejs/node/pull/2002)
* [[`e5ada116cd`](https:/nodejs/node/commit/e5ada116cd)] - **buffer**: minor cleanup from rebase (Trevor Norris) [#2003](https:/nodejs/node/pull/2003)
* [[`b625ab4242`](https:/nodejs/node/commit/b625ab4242)] - **buffer**: fix usage of kMaxLength (Trevor Norris) [#2003](https:/nodejs/node/pull/2003)
* [[`eea66e2a7b`](https:/nodejs/node/commit/eea66e2a7b)] - **(SEMVER-MAJOR)** **buffer**: fix case of one buffer passed to concat (Sakthipriyan Vairamani) [#1937](https:/nodejs/node/pull/1937)
* [[`8664084166`](https:/nodejs/node/commit/8664084166)] - **buffer**: make additional changes to native API (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`36f78f4c1c`](https:/nodejs/node/commit/36f78f4c1c)] - **buffer**: switch API to return MaybeLocal<T> (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`571ec13841`](https:/nodejs/node/commit/571ec13841)] - **buffer**: switch to using Maybe<T> API (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`d75f5c8d0e`](https:/nodejs/node/commit/d75f5c8d0e)] - **buffer**: finish implementing FreeCallback (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`63da0dfd3a`](https:/nodejs/node/commit/63da0dfd3a)] - **buffer**: implement Uint8Array backed Buffer (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`23be6ca189`](https:/nodejs/node/commit/23be6ca189)] - **buffer**: allow ARGS_THIS to accept a name (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`971de5e417`](https:/nodejs/node/commit/971de5e417)] - **build**: prepare Windows installer for i18n support (Frederic Hemberger) [#2247](https:/nodejs/node/pull/2247)
* [[`2ba8b23661`](https:/nodejs/node/commit/2ba8b23661)] - **build**: add 'x86' option back in to configure (Rod Vagg) [#2233](https:/nodejs/node/pull/2233)
* [[`b4226e797a`](https:/nodejs/node/commit/b4226e797a)] - **build**: first set of updates to enable PPC support (Michael Dawson) [#2124](https:/nodejs/node/pull/2124)
* [[`24dd016deb`](https:/nodejs/node/commit/24dd016deb)] - **build**: produce symbol map files on windows (Ali Ijaz Sheikh) [#2243](https:/nodejs/node/pull/2243)
* [[`423d8944ce`](https:/nodejs/node/commit/423d8944ce)] - **cluster**: do not unconditionally set --debug-port (cjihrig) [#1949](https:/nodejs/node/pull/1949)
* [[`fa98b97171`](https:/nodejs/node/commit/fa98b97171)] - **cluster**: add handle ref/unref stubs in rr mode (Ben Noordhuis) [#2274](https:/nodejs/node/pull/2274)
* [[`944f68046c`](https:/nodejs/node/commit/944f68046c)] - **crypto**: remove kMaxLength on randomBytes() (Trevor Norris) [#1825](https:/nodejs/node/pull/1825)
* [[`3d3c687012`](https:/nodejs/node/commit/3d3c687012)] - **deps**: update V8 to 4.4.63.26 (Michaël Zasso) [#2220](https:/nodejs/node/pull/2220)
* [[`3aad4fa89a`](https:/nodejs/node/commit/3aad4fa89a)] - **deps**: upgrade v8 to 4.4.63.12 (Ben Noordhuis) [#2092](https:/nodejs/node/pull/2092)
* [[`70d1f32f56`](https:/nodejs/node/commit/70d1f32f56)] - **(SEMVER-MAJOR)** **deps**: update v8 to 4.4.63.9 (Ben Noordhuis) [#2022](https:/nodejs/node/pull/2022)
* [[`deb7ee93a7`](https:/nodejs/node/commit/deb7ee93a7)] - **deps**: backport 7b24219346 from v8 upstream (Rod Vagg) [#1805](https:/nodejs/node/pull/1805)
* [[`d58e780504`](https:/nodejs/node/commit/d58e780504)] - **(SEMVER-MAJOR)** **deps**: update v8 to 4.3.61.21 (Chris Dickinson) [iojs/io.js#1632](https:/iojs/io.js/pull/1632)
* [[`2a63cf612b`](https:/nodejs/node/commit/2a63cf612b)] - **deps**: make node-gyp work with io.js (cjihrig) [iojs/io.js#990](https:/iojs/io.js/pull/990)
* [[`bf63266460`](https:/nodejs/node/commit/bf63266460)] - **deps**: upgrade to npm 2.13.3 (Kat Marchán) [#2284](https:/nodejs/node/pull/2284)
* [[`ef2c8cd4ec`](https:/nodejs/node/commit/ef2c8cd4ec)] - **(SEMVER-MAJOR)** **dgram**: make send cb act as "error" event handler (Matteo Collina) [#1796](https:/nodejs/node/pull/1796)
* [[`3da057fef6`](https:/nodejs/node/commit/3da057fef6)] - **(SEMVER-MAJOR)** **dgram**: make send cb act as "error" event handler (Chris Dickinson) [#1796](https:/nodejs/node/pull/1796)
* [[`df1994fe53`](https:/nodejs/node/commit/df1994fe53)] - ***Revert*** "**dns**: remove AI_V4MAPPED hint flag on FreeBSD" (cjihrig) [iojs/io.js#1555](https:/iojs/io.js/pull/1555)
* [[`1721968b22`](https:/nodejs/node/commit/1721968b22)] - **doc**: document repl persistent history changes (Jeremiah Senkpiel) [#2224](https:/nodejs/node/pull/2224)
* [[`d12df7f159`](https:/nodejs/node/commit/d12df7f159)] - **doc**: update v8 flags in man page (Michaël Zasso) [iojs/io.js#1701](https:/iojs/io.js/pull/1701)
* [[`d168d01b04`](https:/nodejs/node/commit/d168d01b04)] - **doc**: properly inheriting from EventEmitter (Sakthipriyan Vairamani) [#2168](https:/nodejs/node/pull/2168)
* [[`500f2538cc`](https:/nodejs/node/commit/500f2538cc)] - **doc**: a listener, not "an" listener (Sam Roberts) [#1025](https:/nodejs/node/pull/1025)
* [[`54627a919d`](https:/nodejs/node/commit/54627a919d)] - **doc**: server close event does not have an argument (Sam Roberts) [#1025](https:/nodejs/node/pull/1025)
* [[`ed85c95a9c`](https:/nodejs/node/commit/ed85c95a9c)] - **doc,test**: documents behaviour of non-existent file (Sakthipriyan Vairamani) [#2169](https:/nodejs/node/pull/2169)
* [[`2965442308`](https:/nodejs/node/commit/2965442308)] - **(SEMVER-MAJOR)** **http**: fix agent.getName() and add tests (Brendan Ashworth) [#1617](https:/nodejs/node/pull/1617)
* [[`2d9456e3e6`](https:/nodejs/node/commit/2d9456e3e6)] - **(SEMVER-MAJOR)** **http**: use official IANA Status Codes (jomo) [#1470](https:/nodejs/node/pull/1470)
* [[`11e4249227`](https:/nodejs/node/commit/11e4249227)] - **(SEMVER-MAJOR)** **http_server**: `prefinish` vs `finish` (Fedor Indutny) [#1411](https:/nodejs/node/pull/1411)
* [[`9bc2e26720`](https:/nodejs/node/commit/9bc2e26720)] - **net**: do not set V4MAPPED on FreeBSD (Julien Gilli) [iojs/io.js#1555](https:/iojs/io.js/pull/1555)
* [[`ba9ccf227e`](https:/nodejs/node/commit/ba9ccf227e)] - **node**: remove redundant --use-old-buffer (Rod Vagg) [#2275](https:/nodejs/node/pull/2275)
* [[`ef65321083`](https:/nodejs/node/commit/ef65321083)] - **(SEMVER-MAJOR)** **node**: do not override `message`/`stack` of error (Fedor Indutny) [#2108](https:/nodejs/node/pull/2108)
* [[`9f727f5e03`](https:/nodejs/node/commit/9f727f5e03)] - **node-gyp**: detect RC build with x.y.z-rc.n format (Rod Vagg) [#2171](https:/nodejs/node/pull/2171)
* [[`e52f963632`](https:/nodejs/node/commit/e52f963632)] - **node-gyp**: download header tarball for compile (Rod Vagg) [#2066](https:/nodejs/node/pull/2066)
* [[`902c9ca51d`](https:/nodejs/node/commit/902c9ca51d)] - **node-gyp**: make aware of nightly, next-nightly & rc (Rod Vagg) [#2066](https:/nodejs/node/pull/2066)
* [[`4cffaa3f55`](https:/nodejs/node/commit/4cffaa3f55)] - **(SEMVER-MINOR)** **readline**: allow tabs in input (Rich Trott) [#1761](https:/nodejs/node/pull/1761)
* [[`ed6c249104`](https:/nodejs/node/commit/ed6c249104)] - **(SEMVER-MAJOR)** **repl**: persist history in plain text (Jeremiah Senkpiel) [#2224](https:/nodejs/node/pull/2224)
* [[`f7d5e4c618`](https:/nodejs/node/commit/f7d5e4c618)] - **(SEMVER-MINOR)** **repl**: default persistence to ~/.node_repl_history (Jeremiah Senkpiel) [#2224](https:/nodejs/node/pull/2224)
* [[`ea05e760cd`](https:/nodejs/node/commit/ea05e760cd)] - **repl**: don't clobber RegExp.$ properties (Sakthipriyan Vairamani) [#2137](https:/nodejs/node/pull/2137)
* [[`d20093246b`](https:/nodejs/node/commit/d20093246b)] - **src**: disable vector ICs on arm (Michaël Zasso) [#2220](https:/nodejs/node/pull/2220)
* [[`04fd4fad46`](https:/nodejs/node/commit/04fd4fad46)] - **(SEMVER-MINOR)** **src**: introduce process.release object (Rod Vagg) [#2154](https:/nodejs/node/pull/2154)
* [[`9d34bd1147`](https:/nodejs/node/commit/9d34bd1147)] - **src**: increment NODE_MODULE_VERSION to 45 (Rod Vagg) [#2096](https:/nodejs/node/pull/2096)
* [[`ceee8d2807`](https:/nodejs/node/commit/ceee8d2807)] - **test**: add tests for persistent repl history (Jeremiah Senkpiel) [#2224](https:/nodejs/node/pull/2224)
* [[`8e1a8ffe24`](https:/nodejs/node/commit/8e1a8ffe24)] - **test**: remove two obsolete pummel tests (Ben Noordhuis) [#2022](https:/nodejs/node/pull/2022)
* [[`ae731ec0fa`](https:/nodejs/node/commit/ae731ec0fa)] - **test**: don't use arguments.callee (Ben Noordhuis) [#2022](https:/nodejs/node/pull/2022)
* [[`21d31c08e7`](https:/nodejs/node/commit/21d31c08e7)] - **test**: remove obsolete harmony flags (Chris Dickinson)
* [[`64cf71195c`](https:/nodejs/node/commit/64cf71195c)] - **test**: change the hostname to an invalid name (Sakthipriyan Vairamani) [#2287](https://github.co…
  • Loading branch information
ryoon committed Sep 9, 2015
1 parent f6986cc commit 33b3766
Show file tree
Hide file tree
Showing 9 changed files with 321 additions and 282 deletions.
4 changes: 2 additions & 2 deletions lang/nodejs/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.38 2015/07/10 06:29:44 fhajny Exp $
# $NetBSD: Makefile,v 1.39 2015/09/09 00:04:54 ryoon Exp $

DISTNAME= node-v0.12.7
DISTNAME= node-v4.0.0
CATEGORIES= devel
MASTER_SITES= http://nodejs.org/dist/${DISTNAME:S/node-//}/
PKGNAME= ${DISTNAME:S/-v/js-/}
Expand Down
445 changes: 239 additions & 206 deletions lang/nodejs/PLIST

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions lang/nodejs/distinfo
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
$NetBSD: distinfo,v 1.34 2015/08/26 06:57:01 rumko Exp $
$NetBSD: distinfo,v 1.35 2015/09/09 00:04:54 ryoon Exp $

SHA1 (node-v0.12.7.tar.gz) = 6d59007212a964c7a4defc5520aedacdbcb008e1
RMD160 (node-v0.12.7.tar.gz) = 947daa1eac347a0c42fb67c5e316f85a12d8bd26
Size (node-v0.12.7.tar.gz) = 20063992 bytes
SHA1 (patch-common.gypi) = 07bab46c26a402d7a9a45e1f1cbe1805ca27b72f
SHA1 (node-v4.0.0.tar.gz) = d4791cb483492aea74574f49eee9d6949ecbc759
RMD160 (node-v4.0.0.tar.gz) = d63849be4143fe5af829c43e4ffbcab8ebddb1eb
Size (node-v4.0.0.tar.gz) = 22498912 bytes
SHA1 (patch-common.gypi) = 8086dd5d2be6266447cbc171dd98b88d638582b9
SHA1 (patch-deps_cares_cares.gyp) = 2235eb44bc984fa2e745fdf1786f1ae6de6ef80f
SHA1 (patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py) = 78d6ddd37ae30e869e0da666a78baad86a638c50
SHA1 (patch-deps_uv_common.gypi) = af1c707cbc02a4aeccebebf6691d5a8680646a0d
SHA1 (patch-deps_v8_src_base_platform_platform-freebsd.cc) = 686c2054838a25cfeed7fb9870a959e48dc4de35
SHA1 (patch-deps_v8_src_base_platform_platform-posix.cc) = 309abf9fcad65a6f8c7b729201a096a211530f01
SHA1 (patch-deps_v8_src_base_platform_semaphore.cc) = c78ecdc332996a93b7bf63093a461742eb814452
SHA1 (patch-deps_v8_tools_gyp_v8.gyp) = a7e13e7ef8cc078a812a1f6f37da71c84eedaf6f
SHA1 (patch-deps_v8_src_base_platform_platform-posix.cc) = eff609b75125dab536934bd8afa640955dcee674
SHA1 (patch-deps_v8_src_base_platform_semaphore.cc) = dd8cafadd2668f069dab8625f57fbd71a304db3e
SHA1 (patch-deps_v8_tools_gyp_v8.gyp) = d80f4716f9f2b53357cbcbc6ad003c8541f57049
SHA1 (patch-deps_v8_tools_run-llprof.sh) = 39aa3faf77492ef8dd35b411b7b0e4605b469af3
SHA1 (patch-src_cares__wrap.cc) = d9510afd0cd4b0156a604d9197d9f97d6e3b291f
SHA1 (patch-tools_gyp_pylib_gyp_common.py) = 132008f362ea696e43a4d19bf9d8a0ac754ef55c
SHA1 (patch-tools_gyp_pylib_gyp_generator_make.py) = be3cc1aaa85c3d59b6f2758df813cb5ad8d8f74e
SHA1 (patch-tools_install.py) = 42e4c080f8384d03fd0ebaf091f8290150cf5c6c
SHA1 (patch-tools_install.py) = 5d60a30fdd412ae27972c645018df6448bd377dd
3 changes: 2 additions & 1 deletion lang/nodejs/options.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.5 2015/06/03 18:23:24 fhajny Exp $
# $NetBSD: options.mk,v 1.6 2015/09/09 00:04:54 ryoon Exp $

PKG_OPTIONS_VAR= PKG_OPTIONS.node
PKG_SUPPORTED_OPTIONS= openssl dtrace icu
Expand Down Expand Up @@ -26,6 +26,7 @@ CONFIGURE_ARGS+= --with-intl=system-icu
.endif

.if !empty(PKG_OPTIONS:Mopenssl)
BUILDLINK_API_DEPENDS.openssl+= openssl>=1.0.2
.include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --shared-openssl
.else
Expand Down
8 changes: 4 additions & 4 deletions lang/nodejs/patches/patch-common.gypi
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
$NetBSD: patch-common.gypi,v 1.2 2015/04/30 15:04:56 ryoon Exp $
$NetBSD: patch-common.gypi,v 1.3 2015/09/09 00:04:54 ryoon Exp $

Add support for NetBSD.

--- common.gypi.orig 2015-03-31 22:13:01.000000000 +0000
--- common.gypi.orig 2015-09-08 15:30:34.000000000 +0000
+++ common.gypi
@@ -171,7 +171,7 @@
@@ -221,7 +221,7 @@
'cflags': [ '-pthread', ],
'ldflags': [ '-pthread' ],
}],
- [ 'OS in "linux freebsd openbsd solaris android"', {
+ [ 'OS in "linux freebsd openbsd solaris android netbsd"', {
'cflags': [ '-Wall', '-Wextra', '-Wno-unused-parameter', ],
'cflags_cc': [ '-fno-rtti', '-fno-exceptions' ],
'cflags_cc': [ '-fno-rtti', '-fno-exceptions', '-std=gnu++0x' ],
'ldflags': [ '-rdynamic' ],
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
$NetBSD: patch-deps_v8_src_base_platform_platform-posix.cc,v 1.2 2015/08/26 06:57:01 rumko Exp $
$NetBSD: patch-deps_v8_src_base_platform_platform-posix.cc,v 1.3 2015/09/09 00:04:54 ryoon Exp $

Use sysconf(_SC_THREAD_STACK_MIN) instead of PTHREAD_STACK_MIN.
Cast explicitly.

--- deps/v8/src/base/platform/platform-posix.cc.orig 2015-03-31 22:13:01.000000000 +0000
--- deps/v8/src/base/platform/platform-posix.cc.orig 2015-09-08 15:30:38.000000000 +0000
+++ deps/v8/src/base/platform/platform-posix.cc
@@ -327,6 +327,8 @@ int OS::GetCurrentThreadId() {
@@ -329,6 +329,8 @@ int OS::GetCurrentThreadId() {
return static_cast<int>(syscall(__NR_gettid));
#elif V8_OS_ANDROID
return static_cast<int>(gettid());
+#elif V8_OS_NETBSD || V8_OS_FREEBSD
+ return static_cast<int>(reinterpret_cast<intptr_t>(pthread_self()));
#else
return static_cast<int>(pthread_self());
#endif
@@ -519,8 +521,13 @@ Thread::Thread(const Options& options)
#elif V8_OS_AIX
return static_cast<int>(thread_self());
#elif V8_OS_SOLARIS
@@ -535,8 +537,13 @@ Thread::Thread(const Options& options)
: data_(new PlatformData),
stack_size_(options.stack_size()),
start_semaphore_(NULL) {
Expand All @@ -28,7 +28,7 @@ Cast explicitly.
}
set_name(options.name());
}
@@ -536,7 +543,7 @@ static void SetThreadName(const char* na
@@ -552,7 +559,7 @@ static void SetThreadName(const char* na
pthread_set_name_np(pthread_self(), name);
#elif V8_OS_NETBSD
STATIC_ASSERT(Thread::kMaxThreadNameLength <= PTHREAD_MAX_NAMELEN_NP);
Expand Down
49 changes: 14 additions & 35 deletions lang/nodejs/patches/patch-deps_v8_src_base_platform_semaphore.cc
Original file line number Diff line number Diff line change
@@ -1,47 +1,26 @@
$NetBSD: patch-deps_v8_src_base_platform_semaphore.cc,v 1.3 2015/06/03 18:23:24 fhajny Exp $
$NetBSD: patch-deps_v8_src_base_platform_semaphore.cc,v 1.4 2015/09/09 00:04:54 ryoon Exp $
Work around lack of sem_timedwait(3) in NetBSD < 6.99.4.
Adapted from d4f11c0cf476dd854eaebec1cbacb1afc7bea18e of the Chromium V8 sources.

--- deps/v8/src/base/platform/semaphore.cc.orig 2015-03-31 22:13:01.000000000 +0000
+++ deps/v8/src/base/platform/semaphore.cc 2015-05-14 12:47:08.000000000 +0000
@@ -9,9 +9,14 @@
#include <mach/task.h>
#endif
--- deps/v8/src/base/platform/semaphore.cc.orig 2015-09-08 15:30:38.000000000 +0000
+++ deps/v8/src/base/platform/semaphore.cc
@@ -11,6 +11,10 @@

#include <errno.h>

+#if V8_OS_NETBSD
+#include <sys/param.h> // for __NetBSD_Version__
+#include <sys/param.h> // for __NetBSD_Version__
+#endif
+
#include <errno.h>

#include "src/base/logging.h"
+#include "src/base/platform/elapsed-timer.h"
#include "src/base/platform/elapsed-timer.h"
#include "src/base/platform/time.h"

namespace v8 {
@@ -106,6 +111,17 @@
@@ -107,7 +111,7 @@ void Semaphore::Wait() {


bool Semaphore::WaitFor(const TimeDelta& rel_time) {
+#if V8_OS_NACL || (V8_OS_NETBSD && __NetBSD_Version__ - 0 < 699000400)
+ // PNaCL and older NetBSD doesn't support sem_timedwait, do ugly busy waiting.
+ ElapsedTimer timer;
+ timer.Start();
+ do {
+ int result = sem_trywait(&native_handle_);
+ if (result == 0) return true;
+ DCHECK(errno == EAGAIN || errno == EINTR);
+ } while (!timer.HasExpired(rel_time));
+ return false;
+#else
// Compute the time for end of timeout.
const Time time = Time::NowFromSystemTime() + rel_time;
const struct timespec ts = time.ToTimespec();
@@ -129,6 +145,7 @@
DCHECK_EQ(-1, result);
DCHECK_EQ(EINTR, errno);
}
+#endif
}

#elif V8_OS_WIN
-#if V8_OS_NACL
+#if defined(V8_OS_NACL) || (defined(V8_OS_NETBSD) && (__NetBSD_Version__ - 0 < 699000400))
// PNaCL doesn't support sem_timedwait, do ugly busy waiting.
ElapsedTimer timer;
timer.Start();
52 changes: 39 additions & 13 deletions lang/nodejs/patches/patch-deps_v8_tools_gyp_v8.gyp
Original file line number Diff line number Diff line change
@@ -1,19 +1,36 @@
$NetBSD: patch-deps_v8_tools_gyp_v8.gyp,v 1.2 2015/04/30 15:04:56 ryoon Exp $
$NetBSD: patch-deps_v8_tools_gyp_v8.gyp,v 1.3 2015/09/09 00:04:54 ryoon Exp $

Fix path to Python.

--- deps/v8/tools/gyp/v8.gyp.orig 2015-03-31 22:13:01.000000000 +0000
--- deps/v8/tools/gyp/v8.gyp.orig 2015-09-08 15:30:44.000000000 +0000
+++ deps/v8/tools/gyp/v8.gyp
@@ -1355,7 +1355,7 @@
'outputs': [
'<(PRODUCT_DIR)/natives_blob.bin',
@@ -1696,14 +1696,14 @@
'<(PRODUCT_DIR)/natives_blob_host.bin',
],
'action': [
- 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob_host.bin'
+ '@PYTHONBIN@', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob_host.bin'
],
}, {
'outputs': [
'<(PRODUCT_DIR)/natives_blob.bin',
],
'action': [
- 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin'
+ '@PYTHONBIN@', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin'
],
}],
],
@@ -1712,7 +1712,7 @@
'<(PRODUCT_DIR)/natives_blob.bin',
],
'action': [
- 'python', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin'
+ '@PYTHONBIN@', '<@(_inputs)', '<(PRODUCT_DIR)/natives_blob.bin'
],
}],
],
- 'action': ['python', '<@(_inputs)', '<@(_outputs)'],
+ 'action': ['@PYTHONBIN@', '<@(_inputs)', '<@(_outputs)'],
}],
}],
['want_separate_host_toolset==1', {
@@ -1437,7 +1437,7 @@
@@ -1812,7 +1812,7 @@
'<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
],
'action': [
Expand All @@ -22,7 +39,7 @@ Fix path to Python.
'../../tools/js2c.py',
'<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
'CORE',
@@ -1464,7 +1464,7 @@
@@ -1838,7 +1838,7 @@
'<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
],
'action': [
Expand All @@ -31,7 +48,16 @@ Fix path to Python.
'../../tools/js2c.py',
'<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
'EXPERIMENTAL',
@@ -1502,7 +1502,7 @@
@@ -1863,7 +1863,7 @@
'<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
],
'action': [
- 'python',
+ '@PYTHONBIN@',
'../../tools/js2c.py',
'<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
'EXTRAS',
@@ -1900,7 +1900,7 @@
'<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
],
'action': [
Expand Down
8 changes: 4 additions & 4 deletions lang/nodejs/patches/patch-tools_install.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$NetBSD: patch-tools_install.py,v 1.2 2015/04/30 15:04:56 ryoon Exp $
$NetBSD: patch-tools_install.py,v 1.3 2015/09/09 00:04:54 ryoon Exp $

Install man pages under the right directory.

--- tools/install.py.orig 2015-03-31 22:13:01.000000000 +0000
--- tools/install.py.orig 2015-09-08 15:30:49.000000000 +0000
+++ tools/install.py
@@ -136,9 +136,9 @@ def files(action):
action(['src/node.stp'], 'share/systemtap/tapset/')
@@ -141,9 +141,9 @@ def files(action):
action(['deps/v8/tools/gdbinit'], 'share/doc/node/')

if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
- action(['doc/node.1'], 'man/man1/')
Expand Down

0 comments on commit 33b3766

Please sign in to comment.