From d152fe65017b6f4e0cd9db5978f45144ce3eb196 Mon Sep 17 00:00:00 2001 From: Christophe Date: Sun, 5 Jun 2016 00:48:48 +0200 Subject: [PATCH] Update NodeJs to 6.2.1 (security update) (#891) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Notable changes ## Notable changes * **buffer**: Ignore negative lengths in calls to `Buffer()` and `Buffer.allocUnsafe()`. This fixes a possible security concern (reported by Feross Aboukhadijeh) where user input is passed unchecked to the Buffer constructor or `allocUnsafe()` as it can expose parts of the memory slab used by other Buffers in the application. Note that negative lengths are not supported by the Buffer API and user input to the constructor should always be sanitised and type-checked. (Anna Henningsen) [#7051](https://github.com/nodejs/node/pull/7051) * **npm**: Upgrade npm to 3.9.3 (Kat Marchán) [#7030](https://github.com/nodejs/node/pull/7030) - [`npm/npm@42d71be`](https://github.com/npm/npm/commit/42d71be2cec674dd9e860ad414f53184f667620d) [npm/npm#12685](https://github.com/npm/npm/pull/12685) When using `npm ls ` without a semver specifier, `npm ls` would skip any packages in your tree that matched by name, but had a prerelease version in their `package.json`. ([@zkat](https://github.com/zkat)) - [`npm/npm@f04e05`](https://github.com/npm/npm/commit/df04e05af1f257a1903372e1baf334c0969fbdbd) [npm/npm#10013](https://github.com/npm/npm/issues/10013) `read-package-tree@5.1.4`: Fixes an issue where `npm install` would fail if your `node_modules` was symlinked. ([@iarna](https://github.com/iarna)) - [`b894413`](https://github.com/npm/npm/commit/b8944139a935680c4a267468bb2d3c3082b5609f) [#12372](https://github.com/npm/npm/issues/12372) Changing a nested dependency in an `npm-shrinkwrap.json` and then running `npm install` would not get up the updated package. This corrects that. ([@misterbyrne](https://github.com/misterbyrne)) - This release includes `npm@3.9.0`, which is the result of our Windows testing push -- the test suite (should) pass on Windows now. We're working on getting AppVeyor to a place where we can just rely on it like Travis. * **tty**: Default to blocking mode for stdio on OS X. A bug fix in libuv 1.9.0, introduced in Node.js v6.0.0, exposed problems with Node's use of non-blocking stdio, particularly on OS X which has a small output buffer. This change should fix CLI applications that have been having problems with output since Node.js v6.0.0 on OS X. The core team is continuing to address stdio concerns that exist across supported platforms and progress can be tracked at . (Jeremiah Senkpiel) [#6895](https://github.com/nodejs/node/pull/6895) * **V8**: Upgrade to V8 5.0.71.52. This includes a fix that addresses problems experienced by users of node-inspector since Node.js v6.0.0, see for details. (Michaël Zasso) [#6928](https://github.com/nodejs/node/pull/6928) --- bucket/nodejs.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bucket/nodejs.json b/bucket/nodejs.json index da072119b8..3d02cd317e 100644 --- a/bucket/nodejs.json +++ b/bucket/nodejs.json @@ -1,15 +1,15 @@ { "homepage": "http://nodejs.org", - "version": "6.2.0", + "version": "6.2.1", "license": "MIT", "architecture": { "64bit": { - "url": "https://nodejs.org/dist/v6.2.0/node-v6.2.0-x64.msi", - "hash": "bd1d766e15f75f67befa76738bc0212ee3016444eb0396b29c6fc319658e21a2" + "url": "https://nodejs.org/dist/v6.2.1/node-v6.2.1-x64.msi", + "hash": "528b7c2cb707e81df4d5e53ea3b8d8c32e71ab3ba7e2ee4993a4f44da6e353ba" }, "32bit": { - "url": "https://nodejs.org/dist/v6.2.0/node-v6.2.0-x86.msi", - "hash": "e0e20da53fd7e8ccdd61acf93b4f268189b32c43c15516a272df57808d94b941" + "url": "https://nodejs.org/dist/v6.2.1/node-v6.2.1-x86.msi", + "hash": "8095a7c506ed1ada1599942ae2a8cb60909def15bc4d97c7dca51c3d02f046ec" } }, "env_add_path": "nodejs",