From 8731ed8eaecd204a87a804ffa235b85c403d943f Mon Sep 17 00:00:00 2001 From: Pier-Hugues Pellerin Date: Sun, 27 Mar 2022 19:45:11 -0400 Subject: gnu: Go 1.16: Update to 1.16.15 [security fixes]. Go 1.16.15 (released 2022-03-03) includes a security fix to the regexp/syntax package[0], as well as bug fixes to the compiler, runtime, the go command, and the net package. See the Go 1.16.15 milestone[1] on the upstream issue tracker for details. [0] CVE-2022-24921 and https://go.dev/issue/51112. [2] https://github.com/golang/go/issues?q=milestone%3AGo1.16.15+label%3ACherryPickApproved * gnu/packages/golang.scm (go-1.16): Update to 1.16.15. Signed-off-by: Leo Famulari --- gnu/packages/golang.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index a8b845e301..027221b15c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2021 Chadwain Holness ;;; Copyright © 2021 Philip McGrath ;;; Copyright © 2021 Lu Hui +;;; Copyright © 2022 Pier-Hugues Pellerin ;;; ;;; This file is part of GNU Guix. ;;; @@ -466,7 +467,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (package (inherit go-1.14) (name "go") - (version "1.16.14") + (version "1.16.15") (source (origin (method git-fetch) @@ -476,7 +477,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (file-name (git-file-name name version)) (sha256 (base32 - "16pn7avzmlw28sldx6yv38a1afdwj7jz3x7kjvlagysqrsh5lwwl")))) + "0vlk0r4600ah9fg5apdd93g7i369k0rkzcgn7cs8h6qq2k6hpxjl")))) (arguments (substitute-keyword-arguments (strip-keyword-arguments '(#:tests?) (package-arguments go-1.14)) -- cgit v1.2.3 From fff27ded10fec7efaec11a231324681fb8dd0857 Mon Sep 17 00:00:00 2001 From: Pier-Hugues Pellerin Date: Sun, 27 Mar 2022 19:46:29 -0400 Subject: gnu: Go: Update to 1.17.8 [security fixes]. Go 1.17.8 (released 2022-03-03) includes a security fix to the regexp/syntax package[0], as well as bug fixes to the compiler, runtime, the go command, and the crypto/x509 and net packages. See the Go 1.17.8 milestone[1] on the upstream issue tracker for details. [0] CVE-2022-24921 and https://go.dev/issue/51112. [1] https://github.com/golang/go/issues?q=milestone%3AGo1.17.8+label%3ACherryPickApproved * gnu/packages/golang.scm (go-1.17): Update to 1.17.8. Signed-off-by: Leo Famulari --- gnu/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 027221b15c..f3cc1bd6b8 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -626,7 +626,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (package (inherit go-1.16) (name "go") - (version "1.17.7") + (version "1.17.8") (source (origin (method git-fetch) @@ -636,7 +636,7 @@ in the style of communicating sequential processes (@dfn{CSP}).") (file-name (git-file-name name version)) (sha256 (base32 - "0d0xybn7sy4za3f0s2ffb6yfv6pjabnk4jyvz7dn3hjqhd5lks7m")))) + "05qfs17wddxmmi349g9ci12w9fjb5vbss6qpjc4qzgqzznqf0ycy")))) (outputs '("out" "tests")) ; 'tests' contains distribution tests. (arguments `(#:modules ((ice-9 match) -- cgit v1.2.3 From 3363f2c878b4ee9314b878846e1ec6f8019d2dcb Mon Sep 17 00:00:00 2001 From: Dhruvin Gandhi Date: Tue, 12 Apr 2022 21:54:04 +0530 Subject: gnu: go-github-com-spf13-cobra: Update to 1.4.0. * gnu/packages/golang.scm (go-github-com-spf13-cobra): Update to 1.4.0. Signed-off-by: Raghav Gururajan --- gnu/packages/golang.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f3cc1bd6b8..820e6b54ab 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3510,7 +3510,7 @@ middleware for Go web applications and services.") (define-public go-github-com-spf13-cobra (package (name "go-github-com-spf13-cobra") - (version "1.0.0") + (version "1.4.0") (source (origin (method git-fetch) @@ -3520,7 +3520,7 @@ middleware for Go web applications and services.") (file-name (git-file-name name version)) (sha256 (base32 - "0vbppqqhby302a5ayn0296jqr71qkcd4c9am7wzsk6z71fwdsa7h")))) + "0ijhnk9pcks1v1cxri4kf6v1h26ym3jikmkgv4fdfrmm7sqgva13")))) (build-system go-build-system) (arguments `(#:import-path "github.com/spf13/cobra")) -- cgit v1.2.3