unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64611] [PATCH 0/2] Update node-lts to 18.16.1 [security fixes].
@ 2023-07-14 13:58 jlicht
  2023-07-14 14:01 ` [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: jlicht @ 2023-07-14 13:58 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>


This series could best be pushed along with https://issues.guix.gnu.org/64592
to prevent rebuilding things twice.


Jelle Licht (2):
  gnu: llhttp-bootstrap: Update to 6.0.11.
  gnu: node-lts: Update to 18.16.1.

 gnu/packages/node.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


base-commit: 67fb8efdf782592c133726a1ab7bc6692259e385
-- 
2.40.1





^ permalink raw reply	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11.
  2023-07-14 13:58 [bug#64611] [PATCH 0/2] Update node-lts to 18.16.1 [security fixes] jlicht
@ 2023-07-14 14:01 ` jlicht
  2023-07-14 14:01   ` [bug#64611] [PATCH 2/2] gnu: node-lts: Update to 18.16.1 jlicht
  2023-07-24 10:28 ` [bug#64611] [PATCH v2 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
  2023-08-19 20:48 ` [bug#64611] [PATCH v3 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
  2 siblings, 1 reply; 8+ messages in thread
From: jlicht @ 2023-07-14 14:01 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (llhttp-bootstrap): Update to 6.0.11.
---

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 7695614b3a..84a86ef631 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -669,7 +669,7 @@ (define-public node-llparse-bootstrap
 (define-public llhttp-bootstrap
   (package
     (name "llhttp")
-    (version "6.0.10")
+    (version "6.0.11")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -678,7 +678,7 @@ (define-public llhttp-bootstrap
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0izwqa77y007xdi0bj3ccw821n19rz89mz4hx4lg99fwkwylr6x8"))
+                "16gaylka6nx9bsff9xga3s8xihxm3k7svrb88lr4dj2s4pzlfga9"))
               (modules '((guix build utils)))
               (snippet
                '(begin

base-commit: 67fb8efdf782592c133726a1ab7bc6692259e385
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH 2/2] gnu: node-lts: Update to 18.16.1.
  2023-07-14 14:01 ` [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
@ 2023-07-14 14:01   ` jlicht
  0 siblings, 0 replies; 8+ messages in thread
From: jlicht @ 2023-07-14 14:01 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (node-lts): Update to 18.16.1.

---

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 84a86ef631..36e5133f73 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -738,14 +738,14 @@ (define-public llhttp-bootstrap
 (define-public node-lts
   (package
     (inherit node)
-    (version "18.16.0")
+    (version "18.16.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v" version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "0vcc132z7lkxnw5clmiz6sp6ccmw35pyb69hczphrig5frfmqkva"))
+                "19azhxaz4siiqah9pzr641wms0dnaki99398fzgxh9isqa6lr3si"))
               (modules '((guix build utils)))
               (snippet
                `(begin
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH v2 1/2] gnu: llhttp-bootstrap: Update to 6.0.11.
  2023-07-14 13:58 [bug#64611] [PATCH 0/2] Update node-lts to 18.16.1 [security fixes] jlicht
  2023-07-14 14:01 ` [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
@ 2023-07-24 10:28 ` jlicht
  2023-07-24 10:28   ` [bug#64611] [PATCH v2 2/2] gnu: node-lts: Update to 18.17.0 jlicht
  2023-08-19 20:48 ` [bug#64611] [PATCH v3 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
  2 siblings, 1 reply; 8+ messages in thread
From: jlicht @ 2023-07-24 10:28 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (llhttp-bootstrap): Update to 6.0.11.
---

(no changes since v1)

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 6569422584..91a7d9c700 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -669,7 +669,7 @@ (define-public node-llparse-bootstrap
 (define-public llhttp-bootstrap
   (package
     (name "llhttp")
-    (version "6.0.10")
+    (version "6.0.11")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -678,7 +678,7 @@ (define-public llhttp-bootstrap
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0izwqa77y007xdi0bj3ccw821n19rz89mz4hx4lg99fwkwylr6x8"))
+                "16gaylka6nx9bsff9xga3s8xihxm3k7svrb88lr4dj2s4pzlfga9"))
               (modules '((guix build utils)))
               (snippet
                '(begin

base-commit: cf9904bcc8dd03e73675475bb4d8746dc434e415
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH v2 2/2] gnu: node-lts: Update to 18.17.0.
  2023-07-24 10:28 ` [bug#64611] [PATCH v2 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
@ 2023-07-24 10:28   ` jlicht
  0 siblings, 0 replies; 8+ messages in thread
From: jlicht @ 2023-07-24 10:28 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (node-lts): Update to 18.17.0.

---

Changes in v2:
- re-bump node-lts from 18.16.1 to 18.17.0

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 91a7d9c700..5f42aabcd3 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -738,14 +738,14 @@ (define-public llhttp-bootstrap
 (define-public node-lts
   (package
     (inherit node)
-    (version "18.16.0")
+    (version "18.17.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v" version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "0vcc132z7lkxnw5clmiz6sp6ccmw35pyb69hczphrig5frfmqkva"))
+                "1sblzgjv608dygfdnks2p45fpl7066brw7fm9dd8kd8r09y1baks"))
               (modules '((guix build utils)))
               (snippet
                '(begin
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH v3 1/2] gnu: llhttp-bootstrap: Update to 6.0.11.
  2023-07-14 13:58 [bug#64611] [PATCH 0/2] Update node-lts to 18.16.1 [security fixes] jlicht
  2023-07-14 14:01 ` [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
  2023-07-24 10:28 ` [bug#64611] [PATCH v2 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
@ 2023-08-19 20:48 ` jlicht
  2023-08-19 20:48   ` [bug#64611] [PATCH v3 2/2] gnu: node-lts: Update to 18.17.1 jlicht
  2 siblings, 1 reply; 8+ messages in thread
From: jlicht @ 2023-08-19 20:48 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (llhttp-bootstrap): Update to 6.0.11.
---

(no changes since v1)

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 6569422584..91a7d9c700 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -669,7 +669,7 @@ (define-public node-llparse-bootstrap
 (define-public llhttp-bootstrap
   (package
     (name "llhttp")
-    (version "6.0.10")
+    (version "6.0.11")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -678,7 +678,7 @@ (define-public llhttp-bootstrap
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0izwqa77y007xdi0bj3ccw821n19rz89mz4hx4lg99fwkwylr6x8"))
+                "16gaylka6nx9bsff9xga3s8xihxm3k7svrb88lr4dj2s4pzlfga9"))
               (modules '((guix build utils)))
               (snippet
                '(begin

base-commit: 18b6e309cec3a0c9c7401b131e18612914f1fcf9
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [bug#64611] [PATCH v3 2/2] gnu: node-lts: Update to 18.17.1.
  2023-08-19 20:48 ` [bug#64611] [PATCH v3 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
@ 2023-08-19 20:48   ` jlicht
  2023-08-31 18:34     ` bug#64611: " Jelle Licht
  0 siblings, 1 reply; 8+ messages in thread
From: jlicht @ 2023-08-19 20:48 UTC (permalink / raw)
  To: 64611; +Cc: Jelle Licht

From: Jelle Licht <jlicht@fsfe.org>

* gnu/packages/node.scm (node-lts): Update to 18.17.1.

---

Changes in v3:
- re-bump node-lts from 18.17.0 to 18.17.1

Changes in v2:
- re-bump node-lts from 18.16.1 to 18.17.0

 gnu/packages/node.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 91a7d9c700..d769066dc4 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -738,14 +738,14 @@ (define-public llhttp-bootstrap
 (define-public node-lts
   (package
     (inherit node)
-    (version "18.16.0")
+    (version "18.17.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v" version
                                   "/node-v" version ".tar.gz"))
               (sha256
                (base32
-                "0vcc132z7lkxnw5clmiz6sp6ccmw35pyb69hczphrig5frfmqkva"))
+                "0dachvhf5jxrb1av8mn2dikbhwklxsgc9y2zg4h50fcwh5d54mqi"))
               (modules '((guix build utils)))
               (snippet
                '(begin
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 8+ messages in thread

* bug#64611: [PATCH v3 2/2] gnu: node-lts: Update to 18.17.1.
  2023-08-19 20:48   ` [bug#64611] [PATCH v3 2/2] gnu: node-lts: Update to 18.17.1 jlicht
@ 2023-08-31 18:34     ` Jelle Licht
  0 siblings, 0 replies; 8+ messages in thread
From: Jelle Licht @ 2023-08-31 18:34 UTC (permalink / raw)
  To: 64611-done

jlicht@fsfe.org writes:

> From: Jelle Licht <jlicht@fsfe.org>
>
> * gnu/packages/node.scm (node-lts): Update to 18.17.1.
>
> ---
>
> Changes in v3:
> - re-bump node-lts from 18.17.0 to 18.17.1
>
> Changes in v2:
> - re-bump node-lts from 18.16.1 to 18.17.0
>
>  gnu/packages/node.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Pushed to master as 9b8085ebceb6d1d1849fbf0e57158e3e1b31637b.




^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-08-31 18:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-14 13:58 [bug#64611] [PATCH 0/2] Update node-lts to 18.16.1 [security fixes] jlicht
2023-07-14 14:01 ` [bug#64611] [PATCH 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
2023-07-14 14:01   ` [bug#64611] [PATCH 2/2] gnu: node-lts: Update to 18.16.1 jlicht
2023-07-24 10:28 ` [bug#64611] [PATCH v2 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
2023-07-24 10:28   ` [bug#64611] [PATCH v2 2/2] gnu: node-lts: Update to 18.17.0 jlicht
2023-08-19 20:48 ` [bug#64611] [PATCH v3 1/2] gnu: llhttp-bootstrap: Update to 6.0.11 jlicht
2023-08-19 20:48   ` [bug#64611] [PATCH v3 2/2] gnu: node-lts: Update to 18.17.1 jlicht
2023-08-31 18:34     ` bug#64611: " Jelle Licht

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).