* [Buildroot] [PATCH] package/go: security bump to version 1.23.6
@ 2025-02-05 10:12 Peter Korsgaard
2025-02-05 11:50 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2025-02-05 10:12 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Perale, Christian Stewart
go1.23.6 (released 2025-02-04) includes security fixes to the
crypto/elliptic package, as well as bug fixes to the compiler and the go
command.
https://go.dev/doc/devel/release#go1.23.6
https://github.com/golang/go/issues?q=milestone%3AGo1.23.6+label%3ACherryPickApproved
While we are at it, drop the unused source tarball hash from the go-bin
package.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/go/go-bin/go-bin.hash | 13 ++++++-------
package/go/go-src/go-src.hash | 2 +-
package/go/go.mk | 2 +-
3 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/package/go/go-bin/go-bin.hash b/package/go/go-bin/go-bin.hash
index 39e6491376..50d2be239f 100644
--- a/package/go/go-bin/go-bin.hash
+++ b/package/go/go-bin/go-bin.hash
@@ -1,9 +1,8 @@
# sha256 checksum from https://go.dev/dl/
-sha256 a6f3f4bbd3e6bdd626f79b668f212fbb5649daf75084fb79b678a0ae4d97423b go1.23.5.src.tar.gz
-sha256 6ecf6a41d0925358905fa2641db0e1c9037aa5b5bcd26ca6734caf50d9196417 go1.23.5.linux-386.tar.gz
-sha256 cbcad4a6482107c7c7926df1608106c189417163428200ce357695cc7e01d091 go1.23.5.linux-amd64.tar.gz
-sha256 47c84d332123883653b70da2db7dd57d2a865921ba4724efcdf56b5da7021db0 go1.23.5.linux-arm64.tar.gz
-sha256 04e0b5cf5c216f0aa1bf8204d49312ad0845800ab0702dfe4357c0b1241027a3 go1.23.5.linux-armv6l.tar.gz
-sha256 db268bf5710b5b1b82ab38722ba6e4427d9e4942aed78c7d09195a9dff329613 go1.23.5.linux-ppc64le.tar.gz
-sha256 14924b917d35311eb130e263f34931043d4f9dc65f20684301bf8f60a72edcdf go1.23.5.linux-s390x.tar.gz
+sha256 e61f87693169c0bbcc43363128f1e929b9dff0b7f448573f1bdd4e4a0b9687ba go1.23.6.linux-386.tar.gz
+sha256 9379441ea310de000f33a4dc767bd966e72ab2826270e038e78b2c53c2e7802d go1.23.6.linux-amd64.tar.gz
+sha256 561c780e8f4a8955d32bf72e46af0b5ee5e0debe1e4633df9a03781878219202 go1.23.6.linux-arm64.tar.gz
+sha256 27a4611010c16b8c4f37ade3aada55bd5781998f02f348b164302fd5eea4eb74 go1.23.6.linux-armv6l.tar.gz
+sha256 0f817201e83d78ddbfa27f5f78d9b72450b92cc21d5e045145efacd0d3244a99 go1.23.6.linux-ppc64le.tar.gz
+sha256 321e7ed0d5416f731479c52fa7610b52b8079a8061967bd48cec6d66f671a60e go1.23.6.linux-s390x.tar.gz
sha256 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067 LICENSE
diff --git a/package/go/go-src/go-src.hash b/package/go/go-src/go-src.hash
index 4c8ae3ca5e..b60995fedc 100644
--- a/package/go/go-src/go-src.hash
+++ b/package/go/go-src/go-src.hash
@@ -1,3 +1,3 @@
# From https://go.dev/dl
-sha256 a6f3f4bbd3e6bdd626f79b668f212fbb5649daf75084fb79b678a0ae4d97423b go1.23.5.src.tar.gz
+sha256 039c5b04e65279daceee8a6f71e70bd05cf5b801782b6f77c6e19e2ed0511222 go1.23.6.src.tar.gz
sha256 2d36597f7117c38b006835ae7f537487207d8ec407aa9d9980794b2030cbc067 LICENSE
diff --git a/package/go/go.mk b/package/go/go.mk
index 3d1b42ee0e..fd47ed7c3b 100644
--- a/package/go/go.mk
+++ b/package/go/go.mk
@@ -4,7 +4,7 @@
#
################################################################################
-GO_VERSION = 1.23.5
+GO_VERSION = 1.23.6
HOST_GO_GOPATH = $(HOST_DIR)/share/go-path
HOST_GO_HOST_CACHE = $(HOST_DIR)/share/host-go-cache
--
2.39.5
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH] package/go: security bump to version 1.23.6
2025-02-05 10:12 [Buildroot] [PATCH] package/go: security bump to version 1.23.6 Peter Korsgaard
@ 2025-02-05 11:50 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-02-05 11:50 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot, Thomas Perale, Christian Stewart
On Wed, 5 Feb 2025 11:12:45 +0100
Peter Korsgaard <peter@korsgaard.com> wrote:
> go1.23.6 (released 2025-02-04) includes security fixes to the
> crypto/elliptic package, as well as bug fixes to the compiler and the go
> command.
>
> https://go.dev/doc/devel/release#go1.23.6
> https://github.com/golang/go/issues?q=milestone%3AGo1.23.6+label%3ACherryPickApproved
>
> While we are at it, drop the unused source tarball hash from the go-bin
> package.
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/go/go-bin/go-bin.hash | 13 ++++++-------
> package/go/go-src/go-src.hash | 2 +-
> package/go/go.mk | 2 +-
> 3 files changed, 8 insertions(+), 9 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-02-05 11:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-05 10:12 [Buildroot] [PATCH] package/go: security bump to version 1.23.6 Peter Korsgaard
2025-02-05 11:50 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox