From patchwork Wed Jul 1 14:11:06 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 9993 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "YR2" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gr24V09Smz3wkB for ; Wed, 01 Jul 2026 14:11:22 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "YE1" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gr24T5Zgzz6nt for ; Wed, 01 Jul 2026 14:11:21 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gr24T4bgRz32dP for ; Wed, 01 Jul 2026 14:11:21 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "YR2" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gr24R0Q2Bz2xPP for ; Wed, 01 Jul 2026 14:11:19 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gr24P3Rv6z2lH; Wed, 01 Jul 2026 14:11:17 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1782915077; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fBc7l1Qk9r2TPYupUNEV1w3JhPBDYQ++u3N33StZv2k=; b=XcHVSwRM+D9u55iq3/IGgh4B1sMZ/L42s96Z4ZtnrrP7IAZIHhQXcL/YN6brRy0Qfj9k6o 1dn44Fi3JZSOp3DA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1782915077; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=fBc7l1Qk9r2TPYupUNEV1w3JhPBDYQ++u3N33StZv2k=; b=sYCY1HQofEkRFtId4ux8DUj5DJvdBZwQ+eJH+juL3qCThavSKeEKCrn7FTixQrPamZ16Ej W1eMtQGxDyhIjQ1PekGOTjqTltXrvoJ5hD8UsfAxb6yGSZkO9wCBTWHK/clVjTnLa/7i8X Op7eKqJcs7L3eq9QuT9KIEbf6+2Tgk13WFJyJFmooTnpiZsoGFy/LQ3DGfHEfLRGQL+yLT 1b5Z3W+eapm8wtvO/O9w0uijLZy/qsQE6BprUMGD76whjgFbiyTYNJNCNWi7imA8kMYzmm 0/Kc/oQkO3VZS24Gt6vMmrcmP+4UjSCSWn1d0xRQyp4CHRU1jN0I31ZpiV6Ipw== From: Matthias Fischer To: development@lists.ipfire.org Cc: Matthias Fischer Subject: [PATCH] tmux: Update to 3.7a Date: Wed, 1 Jul 2026 16:11:06 +0200 Message-ID: <20260701141109.3476214-1-matthias.fischer@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Bugfix-Release - for details see: https://raw.githubusercontent.com/tmux/tmux/3.7a/CHANGES "CHANGES FROM 3.7 to 3.7a * Fix crash in break-pane when no name is provided. * Scrollbar options are now cached rather than being looked up for every redraw (issue 5298). * Only forbid #( in names, allow #[, empty names, : and ." Signed-off-by: Matthias Fischer --- lfs/tmux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/tmux b/lfs/tmux index 952b8805a..38c872568 100644 --- a/lfs/tmux +++ b/lfs/tmux @@ -26,7 +26,7 @@ include Config SUMMARY = Terminal multiplexer -VER = 3.7 +VER = 3.7a THISAPP = tmux-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = tmux -PAK_VER = 16 +PAK_VER = 17 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 741bca6529dee6355af3d94c931d52b2ff22b5e9f126b4a44c9bbc96649b3324ccb0976bf2a84d8ecacc45a7d2cb3cad5ac6da369f38c89f1b3d9cce8c803b78 +$(DL_FILE)_BLAKE2 = 04632a169a33b9c60a84c05c3a6dd66b61d911059c563cb0b6bb967b32ec29e6082e127caf8e110a930dcf08a37e7498278498903806140ff3d87575ced8437a install : $(TARGET)