public inbox for buildroot@busybox.net
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9
@ 2026-03-12 16:44 Bernd Kuhls
  2026-03-12 16:44 ` [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0 Bernd Kuhls
  2026-03-12 20:08 ` [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Julien Olivain via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2026-03-12 16:44 UTC (permalink / raw)
  To: buildroot; +Cc: Andreas Ziegler

https://www.musicpd.org/news/2026/03/mpd-0-24-9-released/

https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.24.9/NEWS
"  - curl: fix build failure after CURL 8.19 API change"

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 package/mpd/mpd.hash | 2 +-
 package/mpd/mpd.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/mpd/mpd.hash b/package/mpd/mpd.hash
index 91995c5b4d..9cbe7fcf0b 100644
--- a/package/mpd/mpd.hash
+++ b/package/mpd/mpd.hash
@@ -1,3 +1,3 @@
 # Locally calculated after checking pgp signature
-sha256  1868aded6aabe6a02a6427ef1d3856b11370612afc53d28184533db53991d2f7  mpd-0.24.8.tar.xz
+sha256  f3d28b29bbe675970ef205b3d9b835e5691423fed6a89d713dbcbf7839ea92f3  mpd-0.24.9.tar.xz
 sha256  ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6  COPYING
diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk
index 94decd8460..3df6276a11 100644
--- a/package/mpd/mpd.mk
+++ b/package/mpd/mpd.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 MPD_VERSION_MAJOR = 0.24
-MPD_VERSION = $(MPD_VERSION_MAJOR).8
+MPD_VERSION = $(MPD_VERSION_MAJOR).9
 MPD_SOURCE = mpd-$(MPD_VERSION).tar.xz
 MPD_SITE = https://www.musicpd.org/download/mpd/$(MPD_VERSION_MAJOR)
 MPD_DEPENDENCIES = host-pkgconf fmt
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0
  2026-03-12 16:44 [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Bernd Kuhls
@ 2026-03-12 16:44 ` Bernd Kuhls
  2026-03-20 15:55   ` Thomas Perale via buildroot
  2026-03-12 20:08 ` [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Julien Olivain via buildroot
  1 sibling, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2026-03-12 16:44 UTC (permalink / raw)
  To: buildroot; +Cc: Andreas Ziegler

https://curl.se/ch/8.19.0.html
https://curl.se/docs/security.html

Fixes the following CVEs:

CVE-2026-3805: use after free in SMB connection reuse
CVE-2026-3784: wrong proxy connection reuse with credentials
CVE-2026-3783: token leak with redirect and netrc
CVE-2026-1965: bad reuse of HTTP Negotiate connection

Switch to sha256 tarball hash provided by upstream.

Updated license hash due to copyright year bump:
https://github.com/curl/curl/commit/e83c82f05f9b714086e62db9fe2ea9be522239bc

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 package/libcurl/libcurl.hash | 9 ++++-----
 package/libcurl/libcurl.mk   | 2 +-
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
index de3f2402e9..5aec080ef9 100644
--- a/package/libcurl/libcurl.hash
+++ b/package/libcurl/libcurl.hash
@@ -1,5 +1,4 @@
-# Locally calculated after checking pgp signature
-# https://curl.se/download/curl-8.18.0.tar.xz.asc
-# signed with key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
-sha256  40df79166e74aa20149365e11ee4c798a46ad57c34e4f68fd13100e2c9a91946  curl-8.18.0.tar.xz
-sha256  e18f1989333b70044b2adfb7dc2f905d0119dbdcac3bc9f4bc9d540e3a29de5b  COPYING
+# From https://github.com/curl/curl/releases/tag/curl-8_19_0
+sha256  4eb41489790d19e190d7ac7e18e82857cdd68af8f4e66b292ced562d333f11df  curl-8.19.0.tar.xz
+# Locally computed
+sha256  82f2f4427d6545ee5aaac4f0b80428da6cc8ba41c2cf5da3a03680ec327b9681  COPYING
diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 7ebf26c3b1..3d00a4a33a 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBCURL_VERSION = 8.18.0
+LIBCURL_VERSION = 8.19.0
 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.xz
 LIBCURL_SITE = https://curl.se/download
 LIBCURL_DEPENDENCIES = host-pkgconf \
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9
  2026-03-12 16:44 [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Bernd Kuhls
  2026-03-12 16:44 ` [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0 Bernd Kuhls
@ 2026-03-12 20:08 ` Julien Olivain via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Julien Olivain via buildroot @ 2026-03-12 20:08 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot, Andreas Ziegler

On 12/03/2026 17:44, Bernd Kuhls wrote:
> https://www.musicpd.org/news/2026/03/mpd-0-24-9-released/
> 
> https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.24.9/NEWS
> "  - curl: fix build failure after CURL 8.19 API change"
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Series applied to master, thanks.

I would like to keep pgp signature info in Buildroot hash
files, when they are published upstream. So I put them
back in the libcurl patch #2.

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0
  2026-03-12 16:44 ` [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0 Bernd Kuhls
@ 2026-03-20 15:55   ` Thomas Perale via buildroot
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Perale via buildroot @ 2026-03-20 15:55 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Thomas Perale, buildroot

In reply of:
> https://curl.se/ch/8.19.0.html
> https://curl.se/docs/security.html
> 
> Fixes the following CVEs:
> 
> CVE-2026-3805: use after free in SMB connection reuse
> CVE-2026-3784: wrong proxy connection reuse with credentials
> CVE-2026-3783: token leak with redirect and netrc
> CVE-2026-1965: bad reuse of HTTP Negotiate connection
> 
> Switch to sha256 tarball hash provided by upstream.
> 
> Updated license hash due to copyright year bump:
> https://github.com/curl/curl/commit/e83c82f05f9b714086e62db9fe2ea9be522239bc
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Applied to 2025.02.x & 2026.02.x. Thanks

> ---
>  package/libcurl/libcurl.hash | 9 ++++-----
>  package/libcurl/libcurl.mk   | 2 +-
>  2 files changed, 5 insertions(+), 6 deletions(-)
> 
> diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
> index de3f2402e9..5aec080ef9 100644
> --- a/package/libcurl/libcurl.hash
> +++ b/package/libcurl/libcurl.hash
> @@ -1,5 +1,4 @@
> -# Locally calculated after checking pgp signature
> -# https://curl.se/download/curl-8.18.0.tar.xz.asc
> -# signed with key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
> -sha256  40df79166e74aa20149365e11ee4c798a46ad57c34e4f68fd13100e2c9a91946  curl-8.18.0.tar.xz
> -sha256  e18f1989333b70044b2adfb7dc2f905d0119dbdcac3bc9f4bc9d540e3a29de5b  COPYING
> +# From https://github.com/curl/curl/releases/tag/curl-8_19_0
> +sha256  4eb41489790d19e190d7ac7e18e82857cdd68af8f4e66b292ced562d333f11df  curl-8.19.0.tar.xz
> +# Locally computed
> +sha256  82f2f4427d6545ee5aaac4f0b80428da6cc8ba41c2cf5da3a03680ec327b9681  COPYING
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 7ebf26c3b1..3d00a4a33a 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -LIBCURL_VERSION = 8.18.0
> +LIBCURL_VERSION = 8.19.0
>  LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.xz
>  LIBCURL_SITE = https://curl.se/download
>  LIBCURL_DEPENDENCIES = host-pkgconf \
> -- 
> 2.47.3
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2026-03-20 15:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-12 16:44 [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Bernd Kuhls
2026-03-12 16:44 ` [Buildroot] [PATCH 2/2] package/libcurl: security bump to version 8.19.0 Bernd Kuhls
2026-03-20 15:55   ` Thomas Perale via buildroot
2026-03-12 20:08 ` [Buildroot] [PATCH 1/2] package/mpd: bump version to 0.24.9 Julien Olivain via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox