From patchwork Fri Jan 21 16:47:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 4976 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 (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4JgQKX1C44z3wcx for ; Fri, 21 Jan 2022 16:47:44 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4JgQKV6whjzYR; Fri, 21 Jan 2022 16:47:42 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4JgQKV64qbz2ypx; Fri, 21 Jan 2022 16:47:42 +0000 (UTC) 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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4JgQKT2Hbgz2xLY for ; Fri, 21 Jan 2022 16:47:41 +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 ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4JgQKS4RFNzYR for ; Fri, 21 Jan 2022 16:47:40 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1642783660; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=3mbY/neaedAg69dqro407piylwfCOs58WJ9DeX9eSbQ=; b=IhzHu1P48TIl+REzBe8PZsyqhKscSP46pkx+TzagtW6KNOwhimNvLolgklkxttXuSX/zq2 n/zhZlyeXZ0SCKBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1642783660; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=3mbY/neaedAg69dqro407piylwfCOs58WJ9DeX9eSbQ=; b=N3YXj7HVzy1k9+xeq676ybIxhsS64izXoGePyj7FrSUgvTsl5oaTkeHopwfzETKoQy0+Xu b91qnrGvV+BX9uurgX84QZgF2ZxmNLARFFfcrhhdPNPBsNrJl2ult5pU+9Ar8PFlocnFTz I19wfpXWTSjC7T8bJ9T3nqY3DhAse5XlRpdCbAz5juhV6K18zteyYQlCYwl09cA/RO5zRP i85BrNKAIiCmiEBDhHxjAaz5fyKiX41o+GuF+2WOP1ObgXhjIYq1rgtUS2ig8D1R4XUyGL EdKQbSVBw4vnF8FZ0vvtkSBeXfxVsAqLYuMLvY3kTxMNWV2SaNyjAz3BbZ6QOA== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] bind: Update to 9.11.25 Date: Fri, 21 Jan 2022 17:47:24 +0100 Message-Id: <20220121164724.3464738-1-matthias.fischer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" For details (v9.16.22-v9.16.25) see: https://downloads.isc.org/isc/bind9/9.16.25/doc/arm/html/notes.html#notes-for-bind-9-16-25 "Notes for BIND 9.16.25 Feature Changes Overall memory use by named has been optimized and reduced, especially on systems with many CPU cores. The default memory allocator has been switched from internal to external. A new command-line option -M internal allows named to be started with the old internal memory allocator. [GL #2398] Bug Fixes On FreeBSD, TCP connections leaked a small amount of heap memory, leading to an eventual out-of-memory problem. This has been fixed. [GL #3051] If signatures created by the ZSK were expired and the ZSK private key was offline, the signatures were not replaced. This behavior has been amended to replace the expired signatures with new signatures created using the KSK. [GL #3049] Under certain circumstances, the signed version of an inline-signed zone could be dumped to disk without the serial number of the unsigned version of the zone. This prevented resynchronization of the zone contents after named restarted, if the unsigned zone file was modified while named was not running. This has been fixed. [GL #3071] ... " Signed-off-by: Matthias Fischer Reviewed-by: Adolf Belka --- config/rootfiles/common/bind | 14 +++++++------- lfs/bind | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind index a89af5bcb..4ea64dc0c 100644 --- a/config/rootfiles/common/bind +++ b/config/rootfiles/common/bind @@ -274,24 +274,24 @@ usr/bin/nsupdate #usr/include/pk11/site.h #usr/include/pkcs11 #usr/include/pkcs11/pkcs11.h -usr/lib/libbind9-9.16.22.so +usr/lib/libbind9-9.16.25.so #usr/lib/libbind9.la #usr/lib/libbind9.so -usr/lib/libdns-9.16.22.so +usr/lib/libdns-9.16.25.so #usr/lib/libdns.la #usr/lib/libdns.so -usr/lib/libirs-9.16.22.so +usr/lib/libirs-9.16.25.so #usr/lib/libirs.la #usr/lib/libirs.so -usr/lib/libisc-9.16.22.so +usr/lib/libisc-9.16.25.so #usr/lib/libisc.la #usr/lib/libisc.so -usr/lib/libisccc-9.16.22.so +usr/lib/libisccc-9.16.25.so #usr/lib/libisccc.la #usr/lib/libisccc.so -usr/lib/libisccfg-9.16.22.so +usr/lib/libisccfg-9.16.25.so #usr/lib/libisccfg.la #usr/lib/libisccfg.so -usr/lib/libns-9.16.22.so +usr/lib/libns-9.16.25.so #usr/lib/libns.la #usr/lib/libns.so diff --git a/lfs/bind b/lfs/bind index 8544f0f1f..fc6e7654e 100644 --- a/lfs/bind +++ b/lfs/bind @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2021 IPFire Team # +# Copyright (C) 2007-2022 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -25,7 +25,7 @@ include Config -VER = 9.16.22 +VER = 9.16.25 THISAPP = bind-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -43,7 +43,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 6a45478b33c04c830d4263635d8cd137 +$(DL_FILE)_MD5 = 361a54fc5ebeb3a1af77abec08b33661 install : $(TARGET)