From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 29 Mar 2026 07:47:06 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w6izK-006L5F-2a for lore@lore.pengutronix.de; Sun, 29 Mar 2026 07:47:06 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1w6izK-0004dT-Jl; Sun, 29 Mar 2026 07:47:06 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1w6iz8-0004dB-0t; Sun, 29 Mar 2026 07:46:54 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w6iz7-002fFB-26; Sun, 29 Mar 2026 07:46:53 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1w6iz7-0000000AU7N-2QfQ; Sun, 29 Mar 2026 07:46:53 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sun, 29 Mar 2026 07:46:53 +0200 Message-ID: <20260329054653.2498945-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260314180323.2055033-1-christian.melki@t2data.com> References: <20260314180323.2055033-1-christian.melki@t2data.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] libcurl: Version bump. 8.18.0 -> 8.19.0 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Christian Melki Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 1e7abd2404d89022a173282f8efd12118fa5cd2e. Michael [sent from post-receive hook] On Sun, 29 Mar 2026 07:46:53 +0200, Christian Melki wrote: > Mostly bugfixes. > https://curl.se/changes.html#8_19_0 > > Plugs 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 > > * License hash changed. Year updates. > > * Fix new and removed build options. > > Signed-off-by: Christian Melki > Message-Id: <20260314180323.2055033-1-christian.melki@t2data.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/libcurl.make b/rules/libcurl.make > index 62d9a8ccbc8d..d15ea064ff6e 100644 > --- a/rules/libcurl.make > +++ b/rules/libcurl.make > @@ -15,15 +15,15 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl > # > # Paths and names > # > -LIBCURL_VERSION := 8.18.0 > -LIBCURL_MD5 := dae6088bf7af69d3b0a87c762de92248 > +LIBCURL_VERSION := 8.19.0 > +LIBCURL_MD5 := d5d3581ba4b4df1140a26a6efcf13e61 > LIBCURL := curl-$(LIBCURL_VERSION) > LIBCURL_SUFFIX := tar.xz > LIBCURL_URL := https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX) > LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX) > LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL) > LIBCURL_LICENSE := curl > -LIBCURL_LICENSE_FILES := file://COPYING;md5=72f4e9890e99e68d77b7e40703d789b8 > +LIBCURL_LICENSE_FILES := file://COPYING;md5=0515352b285b9c3f66464b135c9c0fdc > > # ---------------------------------------------------------------------------- > # Prepare > @@ -39,7 +39,6 @@ LIBCURL_CONF_OPT := \ > --enable-optimize \ > --disable-warnings \ > --disable-werror \ > - --disable-curldebug \ > --enable-symbol-hiding \ > --$(call ptx/endis, PTXCONF_LIBCURL_C_ARES)-ares \ > --enable-rt \ > @@ -110,6 +109,7 @@ LIBCURL_CONF_OPT := \ > --without-mbedtls \ > --without-wolfssl \ > --without-rustls \ > + --without-apple-sectrust \ > --with-zlib=$(SYSROOT) \ > --without-brotli \ > --without-zstd \ > @@ -128,7 +128,6 @@ LIBCURL_CONF_OPT := \ > --without-libidn2 \ > --without-nghttp2 \ > --without-ngtcp2 \ > - --without-openssl-quic \ > --without-nghttp3 \ > --without-quiche \ > --without-zsh-functions-dir \