diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-02-23 11:23:32 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-02-23 11:23:32 +0000 |
commit | 439c59253d6c24504cc519f8f0da26a649da5922 (patch) | |
tree | 3dfc525fb470ec2909cc685cd0e43eb3f0c5067a /lang/nodejs/distinfo | |
parent | 99ba19f411656ea1479a4507a7f44bf4ca18d51f (diff) | |
download | pkgsrc-439c59253d6c24504cc519f8f0da26a649da5922.tar.gz |
Update lang/nodejs to 5.7.0.
* buffer:
- You can now supply an encoding argument when filling a Buffer
Buffer#fill(string[, start[, end]][, encoding]), supplying an
existing Buffer will also work with Buffer#fill(buffer[, start[,
end]]). See the API documentation for details on how this works.
- Buffer#indexOf() no longer requires a byteOffset argument if
you also wish to specify an encoding: Buffer#indexOf(val[,
byteOffset][, encoding]).
* child_process: spawn() and spawnSync() now support a 'shell'
option to allow for optional execution of the given command inside
a shell. If set to true, cmd.exe will be used on Windows and
/bin/sh elsewhere. A path to a custom shell can also be passed to
override these defaults. On Windows, this option allows .bat. and
.cmd files to be executed with spawn() and spawnSync().
* http_parser: Update to http-parser 2.6.2 to fix an unintentionally
strict limitation of allowable header characters
* dgram: socket.send() now supports accepts an array of Buffers or
Strings as the first argument. See the API docs for details on how
this works.
* http: Fix a bug where handling headers will mistakenly trigger an
'upgrade' event where the server is just advertising its protocols.
This bug can prevent HTTP clients from communicating with HTTP/2
enabled servers.
* net: Added a listening Boolean property to net and http servers to
indicate whether the server is listening for connections.
* node: The C++ node::MakeCallback() API is now reentrant and
calling it from inside another MakeCallback() call no longer causes
the nextTick queue or Promises microtask queue to be processed out
of order.
* tls: Add a new tlsSocket.getProtocol() method to get the negotiated
TLS protocol version of the current connection.
* vm: Introduce new 'produceCachedData' and 'cachedData' options to
new vm.Script() to interact with V8's code cache. When a new
vm.Script object is created with the 'produceCachedData' set to
true a Buffer with V8's code cache data will be produced and stored
in cachedData property of the returned object. This data in turn
may be supplied back to another vm.Script() object with a
'cachedData' option if the supplied source is the same. Successfully
executing a script from cached data can speed up instantiation time.
* performance: Improvements in:
- process.nextTick()
- path module
- querystring module
- streams module when processing small chunks
Diffstat (limited to 'lang/nodejs/distinfo')
-rw-r--r-- | lang/nodejs/distinfo | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/nodejs/distinfo b/lang/nodejs/distinfo index d549087b929..2636f4e1390 100644 --- a/lang/nodejs/distinfo +++ b/lang/nodejs/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.55 2016/02/10 11:09:23 fhajny Exp $ +$NetBSD: distinfo,v 1.56 2016/02/23 11:23:32 fhajny Exp $ -SHA1 (node-v5.6.0.tar.gz) = 567f42b70919a105e6c559a82e1d3720adeff57c -RMD160 (node-v5.6.0.tar.gz) = 88e6d68d3f8575e7f394a22fc9189e745781954e -SHA512 (node-v5.6.0.tar.gz) = 44b1c3eaf29d9c57393a0eae0b1fc31ae1dbeb1e3f86f86f452b652f6fe728facafed0c5b168e91913d6dfc124c2e14952f10c624b44eebe9a7f806794a89bb1 -Size (node-v5.6.0.tar.gz) = 22945339 bytes +SHA1 (node-v5.7.0.tar.gz) = 790c72e3f9cbb299ece2e0a0ec25dba3bc447513 +RMD160 (node-v5.7.0.tar.gz) = 76e3a6caf05ee8ff89b368e7e31e2d0c7db41c7e +SHA512 (node-v5.7.0.tar.gz) = 82ff8d6339c0b065684f02f79bb739365eda3110f8e69e9296453eb5a63584c978d93c87d8ef2350498abaa7b16cabfa62954dce401e82730cac61d6af62f8fe +Size (node-v5.7.0.tar.gz) = 22496101 bytes SHA1 (patch-common.gypi) = 5b3a50617358637a6f910de28bb5a14f037317a6 SHA1 (patch-deps_cares_cares.gyp) = 2235eb44bc984fa2e745fdf1786f1ae6de6ef80f SHA1 (patch-deps_npm_node__modules_node-gyp_gyp_pylib_gyp_generator_make.py) = 78d6ddd37ae30e869e0da666a78baad86a638c50 |