diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-10-18 20:44:34 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-10-18 20:44:34 +0000 |
commit | d67ee3ae55feb1f360e854fb7ba333ca0115f81b (patch) | |
tree | 8de765ad70e6e9289ae660e10c546771ae25e06a /lang/nodejs/Makefile | |
parent | 8129eb759e10f17b40e40ece6efefff727215a5d (diff) | |
download | pkgsrc-d67ee3ae55feb1f360e854fb7ba333ca0115f81b.tar.gz |
Update lang/nodejs to 6.9.0.
- crypto: Don't automatically attempt to load an OpenSSL
configuration file, from the OPENSSL_CONF environment variable
or from the default location for the current platform. Always
triggering a configuration file load attempt may allow an attacker
to load compromised OpenSSL configuration into a Node.js process
if they are able to place a file in a default location.
- node: Introduce the process.release.lts property, set to "Boron".
This value is "Argon" for v4 LTS releases and undefined for all
other releases.
- V8: Backport fix for CVE-2016-5172, an arbitrary memory read.
- v8_inspector: Generate a UUID for each execution of the
inspector. This provides additional security to prevent
unauthorized clients from connecting to the Node.js process via
the v8_inspector port when running with --inspect.
Diffstat (limited to 'lang/nodejs/Makefile')
-rw-r--r-- | lang/nodejs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/nodejs/Makefile b/lang/nodejs/Makefile index d6a7991d2ed..edda1c5fd33 100644 --- a/lang/nodejs/Makefile +++ b/lang/nodejs/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.77 2016/10/13 14:09:11 fhajny Exp $ +# $NetBSD: Makefile,v 1.78 2016/10/18 20:44:34 fhajny Exp $ -DISTNAME= node-v6.8.0 +DISTNAME= node-v6.9.0 .include "../../lang/nodejs/Makefile.common" .include "../../mk/bsd.pkg.mk" |