public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] unbound: Update to 1.16.1
@ 2022-07-11 19:12 Matthias Fischer
  2022-07-12  9:46 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Matthias Fischer @ 2022-07-11 19:12 UTC (permalink / raw)
  To: development

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

For details see:
https://nlnetlabs.nl/projects/unbound/download/#unbound-1-16-1

"Features

    Fix #704: [FR] Statistics counter for number of outgoing UDP queries
    sent; introduces 'num.query.udpout' to the 'unbound-control stats'
    command.

Bug Fixes

    makedist.sh picks up 32bit libssp-0.dll when 32bit compile.
    Fix for edns client subnet to respect not looking in its cache when
    instructed to do so (e.g., prefetch).
    Merge PR #688: Rpz url notify issue.
    Note in the unbound.conf text that NOTIFY is allowed from the 'url:'
    addresses for auth and rpz zones.
    Remove unused LDNS function check for GOST Engine unloading.
    Fix for loading locally stored zones that have lines with blanks or
    blanks and comments.
    Fix #663: use after free issue with edns options.
    Clarify -v flag manpage entry (#705)
    Fix test program dohclient close to use portability routine.
    Show the output of the exact .rpl run that failed with 'make test'.
    Fix for cached 0 TTL records to not trigger prefetching when
    serve-expired-client-timeout is set.
    Add debug option to the mini_tdir.sh test code.
    Fix to not count cached NXDOMAIN for MAX_TARGET_NX.
    Allow fallback to the parent side when MAX_TARGET_NX is reached. This
    will also allow MAX_TARGET_NX more NXDOMAINs.
    iana portlist update.
    Fix detection of libz on windows compile with static option.
    Fix compile warning for windows compile.
    Merge PR #706: NXNS fallback.
    From #706: Cached NXDOMAIN does not increase the target nx responses.
    From #706: Don't generate parent side queries if we already have the
    lame records in cache.
    From #706: When a lame address is the best choice, don't try to
    generate target queries when the missing targets are all lame.
    Merge PR #671 from Petr Menšík: Disable ED25519 and ED448 in FIPS mode
    on openssl3.
    Merge PR #660 from Petr Menšík: Sha1 runtime insecure.
    For #660: formatting, less verbose logging, add EDE information.
    Fix for correct openssl error when adding windows CA certificates to
    the openssl trust store.
    Improve val_sigcrypt.c::algo_needs_missing for one loop pass.
    Reintroduce documentation and more EDE support for
    val_sigcrypt.c::dnskeyset_verify_rrset_sig.
    Fix bug introduced in 'improve val_sigcrypt.c::algo_needs_missing for
    one loop pass'.
    Merge PR #668 from Cristian Rodríguez: Set IP_BIND_ADDRESS_NO_PORT on
    outbound tcp sockets."

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

diff --git a/config/rootfiles/common/unbound b/config/rootfiles/common/unbound
index cb9145516..20fe72a57 100644
--- a/config/rootfiles/common/unbound
+++ b/config/rootfiles/common/unbound
@@ -11,7 +11,7 @@ etc/unbound/unbound.conf
 #usr/lib/libunbound.la
 #usr/lib/libunbound.so
 usr/lib/libunbound.so.8
-usr/lib/libunbound.so.8.1.16
+usr/lib/libunbound.so.8.1.17
 #usr/lib/pkgconfig/libunbound.pc
 usr/sbin/unbound
 usr/sbin/unbound-anchor
diff --git a/lfs/unbound b/lfs/unbound
index 938d3b46e..539ea5005 100644
--- a/lfs/unbound
+++ b/lfs/unbound
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.16.0
+VER        = 1.16.1
 
 THISAPP    = unbound-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 62d002e66a24d60a973c620855d9d33e2833f78bf45d9176081646683fe6f371564a40fb637e4b276c556e3b46eb57ff49ee6a7300e9a9e24cb09f4b8dd31695
+$(DL_FILE)_BLAKE2 = 722e2d88f66f35459b71cd339f451bf803c836827f9f74540c4ae500b7f682f0e8c89bda34915fb8df289cc524486fab2a04018717e1ae7ad62006be68af1cad
 
 install : $(TARGET)
 
-- 
2.25.1


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

* Re: [PATCH] unbound: Update to 1.16.1
  2022-07-11 19:12 [PATCH] unbound: Update to 1.16.1 Matthias Fischer
@ 2022-07-12  9:46 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-07-12  9:46 UTC (permalink / raw)
  To: development

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

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

> For details see:
> https://nlnetlabs.nl/projects/unbound/download/#unbound-1-16-1
> 
> "Features
> 
>     Fix #704: [FR] Statistics counter for number of outgoing UDP queries
>     sent; introduces 'num.query.udpout' to the 'unbound-control stats'
>     command.
> 
> Bug Fixes
> 
>     makedist.sh picks up 32bit libssp-0.dll when 32bit compile.
>     Fix for edns client subnet to respect not looking in its cache when
>     instructed to do so (e.g., prefetch).
>     Merge PR #688: Rpz url notify issue.
>     Note in the unbound.conf text that NOTIFY is allowed from the 'url:'
>     addresses for auth and rpz zones.
>     Remove unused LDNS function check for GOST Engine unloading.
>     Fix for loading locally stored zones that have lines with blanks or
>     blanks and comments.
>     Fix #663: use after free issue with edns options.
>     Clarify -v flag manpage entry (#705)
>     Fix test program dohclient close to use portability routine.
>     Show the output of the exact .rpl run that failed with 'make test'.
>     Fix for cached 0 TTL records to not trigger prefetching when
>     serve-expired-client-timeout is set.
>     Add debug option to the mini_tdir.sh test code.
>     Fix to not count cached NXDOMAIN for MAX_TARGET_NX.
>     Allow fallback to the parent side when MAX_TARGET_NX is reached. This
>     will also allow MAX_TARGET_NX more NXDOMAINs.
>     iana portlist update.
>     Fix detection of libz on windows compile with static option.
>     Fix compile warning for windows compile.
>     Merge PR #706: NXNS fallback.
>     From #706: Cached NXDOMAIN does not increase the target nx responses.
>     From #706: Don't generate parent side queries if we already have the
>     lame records in cache.
>     From #706: When a lame address is the best choice, don't try to
>     generate target queries when the missing targets are all lame.
>     Merge PR #671 from Petr Menšík: Disable ED25519 and ED448 in FIPS mode
>     on openssl3.
>     Merge PR #660 from Petr Menšík: Sha1 runtime insecure.
>     For #660: formatting, less verbose logging, add EDE information.
>     Fix for correct openssl error when adding windows CA certificates to
>     the openssl trust store.
>     Improve val_sigcrypt.c::algo_needs_missing for one loop pass.
>     Reintroduce documentation and more EDE support for
>     val_sigcrypt.c::dnskeyset_verify_rrset_sig.
>     Fix bug introduced in 'improve val_sigcrypt.c::algo_needs_missing for
>     one loop pass'.
>     Merge PR #668 from Cristian Rodríguez: Set IP_BIND_ADDRESS_NO_PORT on
>     outbound tcp sockets."
> 
> Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
> ---
>  config/rootfiles/common/unbound | 2 +-
>  lfs/unbound                     | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/config/rootfiles/common/unbound b/config/rootfiles/common/unbound
> index cb9145516..20fe72a57 100644
> --- a/config/rootfiles/common/unbound
> +++ b/config/rootfiles/common/unbound
> @@ -11,7 +11,7 @@ etc/unbound/unbound.conf
>  #usr/lib/libunbound.la
>  #usr/lib/libunbound.so
>  usr/lib/libunbound.so.8
> -usr/lib/libunbound.so.8.1.16
> +usr/lib/libunbound.so.8.1.17
>  #usr/lib/pkgconfig/libunbound.pc
>  usr/sbin/unbound
>  usr/sbin/unbound-anchor
> diff --git a/lfs/unbound b/lfs/unbound
> index 938d3b46e..539ea5005 100644
> --- a/lfs/unbound
> +++ b/lfs/unbound
> @@ -24,7 +24,7 @@
>  
>  include Config
>  
> -VER        = 1.16.0
> +VER        = 1.16.1
>  
>  THISAPP    = unbound-$(VER)
>  DL_FILE    = $(THISAPP).tar.gz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_BLAKE2 = 62d002e66a24d60a973c620855d9d33e2833f78bf45d9176081646683fe6f371564a40fb637e4b276c556e3b46eb57ff49ee6a7300e9a9e24cb09f4b8dd31695
> +$(DL_FILE)_BLAKE2 = 722e2d88f66f35459b71cd339f451bf803c836827f9f74540c4ae500b7f682f0e8c89bda34915fb8df289cc524486fab2a04018717e1ae7ad62006be68af1cad
>  
>  install : $(TARGET)
>  

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

end of thread, other threads:[~2022-07-12  9:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-11 19:12 [PATCH] unbound: Update to 1.16.1 Matthias Fischer
2022-07-12  9:46 ` Peter Müller

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