Node v4.1.1 (Stable) 发布,主要更新内容如下:
buffer: Fixed a bug introduced in v4.1.0 where allocating a new zero-length buffer can result in the next allocation of a TypedArray in JavaScript not being zero-filled. In certain circumstances this could result in data leakage via reuse of memory space in TypedArrays, breaking the normally safe assumption that TypedArrays should be always zero-filled. (Trevor Norris) #2931.
http: Guard against response-splitting of HTTP trailing headers added via response.addTrailers()
by removing new-line ([\r\n]
)
characters from values. Note that standard header values are already
stripped of new-line characters. The expected security impact is low
because trailing headers are rarely used. (Ben Noordhuis) #2945.
npm: Upgrade to npm 2.14.4 from 2.14.3, see release notes for full details (Kat Marchán) #2958
Upgrades graceful-fs
on multiple dependencies to no longer rely on monkey-patching fs
Fix npm link
for pre-release / RC builds of Node
v8: Update post-mortem metadata to allow post-mortem debugging tools to find and inspect:
更多内容请查看:发行说明。
下载地址:
Windows 32-bit Installer: https://nodejs.org/dist/v4.1.1/node-v4.1.1-x86.msi
Windows 64-bit Installer: https://nodejs.org/dist/v4.1.1/node-v4.1.1-x64.msi
Windows 32-bit Binary: https://nodejs.org/dist/v4.1.1/win-x86/node.exe
Windows 64-bit Binary: https://nodejs.org/dist/v4.1.1/win-x64/node.exe
Mac OS X 64-bit Installer: https://nodejs.org/dist/v4.1.1/node-v4.1.1.pkg
Mac OS X 64-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-darwin-x64.tar.gz
Linux 32-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-linux-x86.tar.gz
Linux 64-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-linux-x64.tar.gz
SunOS 32-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-sunos-x86.tar.gz
SunOS 64-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-sunos-x64.tar.gz
ARMv6 32-bit Binary: Coming soon
ARMv7 32-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-linux-armv7l.tar.gz
ARMv8 64-bit Binary: https://nodejs.org/dist/v4.1.1/node-v4.1.1-linux-arm64.tar.gz
Source Code: https://nodejs.org/dist/v4.1.1/node-v4.1.1.tar.gz
Other release files: https://nodejs.org/dist/v4.1.1/
Documentation: https://nodejs.org/docs/v4.1.1/api/
文章转载自:开源中国社区 [http://www.oschina.net]