public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] bind: Update to 9.16.26
@ 2022-02-17 16:46 Matthias Fischer
  2022-02-17 19:20 ` Peter Müller
  0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fischer @ 2022-02-17 16:46 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2861 bytes --]

For details see:
https://downloads.isc.org/isc/bind9/9.16.26/doc/arm/html/notes.html#notes-for-bind-9-16-26

"Notes for BIND 9.16.26
Feature Changes

    The DLZ API has been updated: EDNS Client-Subnet (ECS) options sent
    by a client are now included in the client information sent to DLZ
    modules when processing queries. [GL #3082]

Bug Fixes

    Previously, recvmmsg support was enabled in libuv 1.35.0 and 1.36.0,
    but not in libuv versions 1.37.0 or greater, reducing the maximum
    query-response performance. This has been fixed. [GL #3095]

    A failed view configuration during a named reconfiguration procedure
    could cause inconsistencies in BIND internal structures, causing
    a crash or other unexpected errors. This has been fixed. [GL #3060]

    Previously, named logged a “quota reached” message when it hit its
    hard quota on the number of connections. That message was
    accidentally removed but has now been restored. [GL #3125]

    Build errors were introduced in some DLZ modules due to an
    incomplete change in the previous release. This has been fixed. [GL
    #3111]"

Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
 config/rootfiles/common/bind | 14 +++++++-------
 lfs/bind                     |  4 ++--
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind
index 4ea64dc0c..c0e56854a 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.25.so
+usr/lib/libbind9-9.16.26.so
 #usr/lib/libbind9.la
 #usr/lib/libbind9.so
-usr/lib/libdns-9.16.25.so
+usr/lib/libdns-9.16.26.so
 #usr/lib/libdns.la
 #usr/lib/libdns.so
-usr/lib/libirs-9.16.25.so
+usr/lib/libirs-9.16.26.so
 #usr/lib/libirs.la
 #usr/lib/libirs.so
-usr/lib/libisc-9.16.25.so
+usr/lib/libisc-9.16.26.so
 #usr/lib/libisc.la
 #usr/lib/libisc.so
-usr/lib/libisccc-9.16.25.so
+usr/lib/libisccc-9.16.26.so
 #usr/lib/libisccc.la
 #usr/lib/libisccc.so
-usr/lib/libisccfg-9.16.25.so
+usr/lib/libisccfg-9.16.26.so
 #usr/lib/libisccfg.la
 #usr/lib/libisccfg.so
-usr/lib/libns-9.16.25.so
+usr/lib/libns-9.16.26.so
 #usr/lib/libns.la
 #usr/lib/libns.so
diff --git a/lfs/bind b/lfs/bind
index fc6e7654e..72c85f5f5 100644
--- a/lfs/bind
+++ b/lfs/bind
@@ -25,7 +25,7 @@
 
 include Config
 
-VER        = 9.16.25
+VER        = 9.16.26
 
 THISAPP    = bind-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 361a54fc5ebeb3a1af77abec08b33661
+$(DL_FILE)_MD5 = 799696f44e0d61659fa0efaa3c5fe5d8
 
 install : $(TARGET)
 
-- 
2.25.1


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

* Re: [PATCH] bind: Update to 9.16.26
  2022-02-17 16:46 [PATCH] bind: Update to 9.16.26 Matthias Fischer
@ 2022-02-17 19:20 ` Peter Müller
  2022-02-18  8:27   ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Müller @ 2022-02-17 19:20 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3089 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> For details see:
> https://downloads.isc.org/isc/bind9/9.16.26/doc/arm/html/notes.html#notes-for-bind-9-16-26
> 
> "Notes for BIND 9.16.26
> Feature Changes
> 
>     The DLZ API has been updated: EDNS Client-Subnet (ECS) options sent
>     by a client are now included in the client information sent to DLZ
>     modules when processing queries. [GL #3082]
> 
> Bug Fixes
> 
>     Previously, recvmmsg support was enabled in libuv 1.35.0 and 1.36.0,
>     but not in libuv versions 1.37.0 or greater, reducing the maximum
>     query-response performance. This has been fixed. [GL #3095]
> 
>     A failed view configuration during a named reconfiguration procedure
>     could cause inconsistencies in BIND internal structures, causing
>     a crash or other unexpected errors. This has been fixed. [GL #3060]
> 
>     Previously, named logged a “quota reached” message when it hit its
>     hard quota on the number of connections. That message was
>     accidentally removed but has now been restored. [GL #3125]
> 
>     Build errors were introduced in some DLZ modules due to an
>     incomplete change in the previous release. This has been fixed. [GL
>     #3111]"
> 
> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
> ---
>  config/rootfiles/common/bind | 14 +++++++-------
>  lfs/bind                     |  4 ++--
>  2 files changed, 9 insertions(+), 9 deletions(-)
> 
> diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind
> index 4ea64dc0c..c0e56854a 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.25.so
> +usr/lib/libbind9-9.16.26.so
>  #usr/lib/libbind9.la
>  #usr/lib/libbind9.so
> -usr/lib/libdns-9.16.25.so
> +usr/lib/libdns-9.16.26.so
>  #usr/lib/libdns.la
>  #usr/lib/libdns.so
> -usr/lib/libirs-9.16.25.so
> +usr/lib/libirs-9.16.26.so
>  #usr/lib/libirs.la
>  #usr/lib/libirs.so
> -usr/lib/libisc-9.16.25.so
> +usr/lib/libisc-9.16.26.so
>  #usr/lib/libisc.la
>  #usr/lib/libisc.so
> -usr/lib/libisccc-9.16.25.so
> +usr/lib/libisccc-9.16.26.so
>  #usr/lib/libisccc.la
>  #usr/lib/libisccc.so
> -usr/lib/libisccfg-9.16.25.so
> +usr/lib/libisccfg-9.16.26.so
>  #usr/lib/libisccfg.la
>  #usr/lib/libisccfg.so
> -usr/lib/libns-9.16.25.so
> +usr/lib/libns-9.16.26.so
>  #usr/lib/libns.la
>  #usr/lib/libns.so
> diff --git a/lfs/bind b/lfs/bind
> index fc6e7654e..72c85f5f5 100644
> --- a/lfs/bind
> +++ b/lfs/bind
> @@ -25,7 +25,7 @@
>  
>  include Config
>  
> -VER        = 9.16.25
> +VER        = 9.16.26
>  
>  THISAPP    = bind-$(VER)
>  DL_FILE    = $(THISAPP).tar.xz
> @@ -43,7 +43,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_MD5 = 361a54fc5ebeb3a1af77abec08b33661
> +$(DL_FILE)_MD5 = 799696f44e0d61659fa0efaa3c5fe5d8
>  
>  install : $(TARGET)
>  

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

* Re: [PATCH] bind: Update to 9.16.26
  2022-02-17 19:20 ` Peter Müller
@ 2022-02-18  8:27   ` Michael Tremer
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2022-02-18  8:27 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3284 bytes --]

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

> On 17 Feb 2022, at 19:20, Peter Müller <peter.mueller(a)ipfire.org> wrote:
> 
> Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> 
>> For details see:
>> https://downloads.isc.org/isc/bind9/9.16.26/doc/arm/html/notes.html#notes-for-bind-9-16-26
>> 
>> "Notes for BIND 9.16.26
>> Feature Changes
>> 
>>    The DLZ API has been updated: EDNS Client-Subnet (ECS) options sent
>>    by a client are now included in the client information sent to DLZ
>>    modules when processing queries. [GL #3082]
>> 
>> Bug Fixes
>> 
>>    Previously, recvmmsg support was enabled in libuv 1.35.0 and 1.36.0,
>>    but not in libuv versions 1.37.0 or greater, reducing the maximum
>>    query-response performance. This has been fixed. [GL #3095]
>> 
>>    A failed view configuration during a named reconfiguration procedure
>>    could cause inconsistencies in BIND internal structures, causing
>>    a crash or other unexpected errors. This has been fixed. [GL #3060]
>> 
>>    Previously, named logged a “quota reached” message when it hit its
>>    hard quota on the number of connections. That message was
>>    accidentally removed but has now been restored. [GL #3125]
>> 
>>    Build errors were introduced in some DLZ modules due to an
>>    incomplete change in the previous release. This has been fixed. [GL
>>    #3111]"
>> 
>> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
>> ---
>> config/rootfiles/common/bind | 14 +++++++-------
>> lfs/bind                     |  4 ++--
>> 2 files changed, 9 insertions(+), 9 deletions(-)
>> 
>> diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind
>> index 4ea64dc0c..c0e56854a 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.25.so
>> +usr/lib/libbind9-9.16.26.so
>> #usr/lib/libbind9.la
>> #usr/lib/libbind9.so
>> -usr/lib/libdns-9.16.25.so
>> +usr/lib/libdns-9.16.26.so
>> #usr/lib/libdns.la
>> #usr/lib/libdns.so
>> -usr/lib/libirs-9.16.25.so
>> +usr/lib/libirs-9.16.26.so
>> #usr/lib/libirs.la
>> #usr/lib/libirs.so
>> -usr/lib/libisc-9.16.25.so
>> +usr/lib/libisc-9.16.26.so
>> #usr/lib/libisc.la
>> #usr/lib/libisc.so
>> -usr/lib/libisccc-9.16.25.so
>> +usr/lib/libisccc-9.16.26.so
>> #usr/lib/libisccc.la
>> #usr/lib/libisccc.so
>> -usr/lib/libisccfg-9.16.25.so
>> +usr/lib/libisccfg-9.16.26.so
>> #usr/lib/libisccfg.la
>> #usr/lib/libisccfg.so
>> -usr/lib/libns-9.16.25.so
>> +usr/lib/libns-9.16.26.so
>> #usr/lib/libns.la
>> #usr/lib/libns.so
>> diff --git a/lfs/bind b/lfs/bind
>> index fc6e7654e..72c85f5f5 100644
>> --- a/lfs/bind
>> +++ b/lfs/bind
>> @@ -25,7 +25,7 @@
>> 
>> include Config
>> 
>> -VER        = 9.16.25
>> +VER        = 9.16.26
>> 
>> THISAPP    = bind-$(VER)
>> DL_FILE    = $(THISAPP).tar.xz
>> @@ -43,7 +43,7 @@ objects = $(DL_FILE)
>> 
>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>> 
>> -$(DL_FILE)_MD5 = 361a54fc5ebeb3a1af77abec08b33661
>> +$(DL_FILE)_MD5 = 799696f44e0d61659fa0efaa3c5fe5d8
>> 
>> install : $(TARGET)
>> 


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

end of thread, other threads:[~2022-02-18  8:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-17 16:46 [PATCH] bind: Update to 9.16.26 Matthias Fischer
2022-02-17 19:20 ` Peter Müller
2022-02-18  8:27   ` Michael Tremer

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