diff options
author | fhajny <fhajny@pkgsrc.org> | 2018-07-10 22:03:08 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2018-07-10 22:03:08 +0000 |
commit | a93fbe6e6cb4f8f7357fd663110d8120fc0ab7f4 (patch) | |
tree | e8757558aa243986b38ea16c667459ea89c67b30 /lang | |
parent | 081edf7383673b1b3e81ed2cdd90f385e3e027a9 (diff) | |
download | pkgsrc-a93fbe6e6cb4f8f7357fd663110d8120fc0ab7f4.tar.gz |
lang/nodejs: Update to 10.6.0.
- dns: An experimental promisified version of the dns module is now
available. Give it a try with `require('dns').promises`.
- fs: `fs.lchown` has been undeprecated now that libuv supports it.
- lib: `Atomics.wake` is being renamed to `Atomics.notify` in the
ECMAScript specification. Since Node.js now has experimental support
for worker threads, we are being proactive and added a `notify` alias,
while emitting a warning if `wake` is used.
- n-api: Add API for asynchronous functions.
- util: `util.inspect` is now able to return a result instead of
throwing when the maximum call stack size is exceeded during
inspection.
- vm: Add `script.createCachedData()`. This API replaces the
`produceCachedData` option of the `Script` constructor that is now
deprecated.
- worker: Support for relative paths has been added to the `Worker`
constructor. Paths are interpreted relative to the current working
directory.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/nodejs/Makefile | 4 | ||||
-rw-r--r-- | lang/nodejs/distinfo | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lang/nodejs/Makefile b/lang/nodejs/Makefile index 467664b05b7..ce269bbf7b1 100644 --- a/lang/nodejs/Makefile +++ b/lang/nodejs/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.136 2018/06/23 13:38:00 fhajny Exp $ +# $NetBSD: Makefile,v 1.137 2018/07/10 22:03:08 fhajny Exp $ -DISTNAME= node-v10.5.0 +DISTNAME= node-v10.6.0 USE_LANGUAGES= c gnu++14 diff --git a/lang/nodejs/distinfo b/lang/nodejs/distinfo index dd679f5f605..b2855bc1851 100644 --- a/lang/nodejs/distinfo +++ b/lang/nodejs/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.129 2018/06/23 13:38:00 fhajny Exp $ +$NetBSD: distinfo,v 1.130 2018/07/10 22:03:08 fhajny Exp $ -SHA1 (node-v10.5.0.tar.gz) = d7c6dfcdaf04cdc94e26c1e97c8821a447f3d10d -RMD160 (node-v10.5.0.tar.gz) = 75b83ffdbcf75b4ddfb19a7854f6504abc039210 -SHA512 (node-v10.5.0.tar.gz) = ed2588405c76b16e5b11b1cb92080ab6967b9af7a27a1434ceb518b67a7db2ae0ce5ffbf8c601e612013805ff13370216d262897e056dc7953a3366d24b4c9f6 -Size (node-v10.5.0.tar.gz) = 35441207 bytes +SHA1 (node-v10.6.0.tar.gz) = adae1486e6f03c3128a8c0a5e37bd9f75eb27a47 +RMD160 (node-v10.6.0.tar.gz) = 8d56801e4d386e986114387da71511246ce8cbbf +SHA512 (node-v10.6.0.tar.gz) = f2d84cbe4b6ac316c9d3ddf794c27ecc9f11bc7a89bf19f5670d8de08211f76a13e6b109ba3044dca554c8b09e4186e34a53ddf38545d04e22f7481e5991981d +Size (node-v10.6.0.tar.gz) = 35531041 bytes SHA1 (patch-common.gypi) = de37949f38d9bd39a18b59d59ec74e528bd323ac SHA1 (patch-deps_cares_cares.gyp) = 2235eb44bc984fa2e745fdf1786f1ae6de6ef80f SHA1 (patch-deps_openssl_config_opensslconf__asm.h) = 7b074ebd5353dff662ac66cf4012926f12dd7b7e |