guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: node-lts: Update to 14.18.1 [security fixes].


From: guix-commits
Subject: 04/05: gnu: node-lts: Update to 14.18.1 [security fixes].
Date: Mon, 15 Nov 2021 16:46:13 -0500 (EST)

jlicht pushed a commit to branch master
in repository guix.

commit f3cd70ff8c60ce51dfe8e37365caf1c787fcf62c
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Thu Oct 28 14:11:45 2021 +0200

    gnu: node-lts: Update to 14.18.1 [security fixes].
    
    * gnu/packages/node.scm (node-lts): Update to 14.18.1.
    [native-inputs]: Replace c-ares with c-ares-for-node.
    [inputs]: Replace c-ares with c-ares-for-node.
    
    Includes fixes for CVE-2021-22918, CVE-2021-22930, CVE-2021-22931,
    CVE-2021-22939, and CVE-2021-22940.
---
 gnu/packages/node.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 7a252e6..dccf871 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -647,14 +647,14 @@ source files.")
 (define-public node-lts
   (package
     (inherit node)
-    (version "14.16.0")
+    (version "14.18.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v"; version
                                   "/node-v" version ".tar.xz"))
               (sha256
                (base32
-                "19nz2mhmn6ikahxqyna1dn25pb5v3z9vsz9zb2flb6zp2yk4hxjf"))
+                "1vc9rypkgr5i5y946jnyr9jjpydxvm74p1s17rg2zayzvlddg89z"))
               (modules '((guix build utils)))
               (snippet
                `(begin
@@ -783,6 +783,9 @@ source files.")
                          '("test/parallel/test-dns.js"
                            "test/parallel/test-dns-lookupService-promises.js"))
 
+               ;; These tests require networking.
+               (delete-file "test/parallel/test-https-agent-unref-socket.js")
+
                ;; FIXME: This test fails randomly:
                ;; https://github.com/nodejs/node/issues/31213
                (delete-file 
"test/parallel/test-net-listen-after-destroying-stdin.js")
@@ -821,7 +824,7 @@ source files.")
                             "deps/llhttp/include/llhttp.h"))))))))
     (native-inputs
      `(;; Runtime dependencies for binaries used as a bootstrap.
-       ("c-ares" ,c-ares)
+       ("c-ares" ,c-ares-for-node)
        ("brotli" ,brotli)
        ("icu4c" ,icu4c-67)
        ("libuv" ,libuv-for-node)
@@ -837,7 +840,7 @@ source files.")
     (inputs
      `(("bash" ,bash)
        ("coreutils" ,coreutils)
-       ("c-ares" ,c-ares)
+       ("c-ares" ,c-ares-for-node)
        ("icu4c" ,icu4c-67)
        ("libuv" ,libuv-for-node)
        ("llhttp" ,llhttp-bootstrap)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]