diff options
author | he <he@pkgsrc.org> | 2018-10-08 12:26:17 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2018-10-08 12:26:17 +0000 |
commit | 7fc3715089074a21b78e94cba7efa011815ce8a6 (patch) | |
tree | 180ebf9d0010573f4e43ec792c6cc49faa93aa43 /net/unbound/Makefile | |
parent | 108ac3dc9e7337f10aa16eaa2bb29950b47c8667 (diff) | |
download | pkgsrc-7fc3715089074a21b78e94cba7efa011815ce8a6.tar.gz |
Update unbound to version 1.8.1
Upstream changes:
Features:
- Perform TLS SNI indication of the host that is being contacted
for DNS over TLS service. It sets the configured tls auth name.
This is useful for hosts that apart from the DNS over TLS services
also provide other (web) services.
Bug Fixes:
- More explicitly mention the type of ratelimit when applying
ip-ratelimit.
- Fix spelling error in header, from getdns commit by Andreas Gelmini.
- iana port update.
- Fixed unused return value warnings in contrib/fastrpz.patch for
asprintf.
- Fix to squelch respip warning in unit test, it is printed at
higher verbosity settings.
- Fix spelling errors.
- Fix initialisation in remote.c
- Fix seed for random backup code to use explicit zero when wiped.
- exit log routine is annotated as noreturn function.
- free memory leaks in config strlist and str2list insert functions.
- do not move unused argv variable after getopt.
- Remove unused if clause in testcode.
- in testcode, free async ids, initialise array, and check for null
pointer during test of the test. And use exit for return to note
irregular program stop.
- Free memory leak in config strlist append.
- make sure nsec3 comparison salt is initialized.
- unit test has clang analysis.
- remove unused variable assignment from iterator scrub routine.
- check for null in delegation point during iterator refetch
in forward zone.
- neater pointer cast in libunbound context quit routine.
- initialize statistics totals for printout.
- in authzone check that node exists before adding rrset.
- in unbound-anchor, use readwrite memory BIO.
- assertion in autotrust that packed rrset is formed correctly.
- Fix memory leak when message parse fails partway through copy.
- remove unused udpsize assignment in message encode.
- nicer bio free code in unbound-anchor.
- annotate exit functions with noreturn in unbound-control.
- Fix compile on Mac for unbound, provide explicit_bzero when libc
does not have it.
- Fix unbound for openssl in FIPS mode, it uses the digests with
the EVP call contexts.
- Fix that with harden-below-nxdomain and qname minisation enabled
some iterator states for nonresponsive domains can get into a
state where they waited for an empty list.
- Stop UDP to TCP failover after timeouts that causes the ping count
to be reset by the TCP time measurement (that exists for TLS),
because that causes the UDP part to not be measured as timeout.
- Fix #4156: Fix systemd service manager state change notification.
- Fix #4149: Add SSL cleanup for tcp timeout.
- Fix #4188: IPv6 forwarders without ipv6 result in SERVFAIL, fixes
qname minimisation with a forwarder when connectivity has issues
from rejecting responses.
Diffstat (limited to 'net/unbound/Makefile')
-rw-r--r-- | net/unbound/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/unbound/Makefile b/net/unbound/Makefile index c6cf0fbf626..cdaa6b4f1a0 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2018/09/10 14:31:48 he Exp $ +# $NetBSD: Makefile,v 1.59 2018/10/08 12:26:17 he Exp $ -DISTNAME= unbound-1.8.0 +DISTNAME= unbound-1.8.1 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/unbound/ |