mirror of https://github.com/getdnsapi/getdns.git
Update ChangeLog and check versions
This commit is contained in:
parent
b3ce2cd897
commit
b9f8f94361
22
ChangeLog
22
ChangeLog
|
@ -1,5 +1,25 @@
|
||||||
* 2015-11-??: Version 0.5.1
|
* 2015-11-??: Version 0.5.1
|
||||||
* Bufix: growing upstreams arrow.
|
* Bugfix: growing upstreams arrow.
|
||||||
|
* Bugfix: Segfault on timeout in specific conditions
|
||||||
|
* Bugfix: install getdns_extra.h from build location
|
||||||
|
* Bugfix: Don't let cookies overwrite existing EDNS0 options
|
||||||
|
* The EDNS(0) Padding Option (draft-mayrhofer-edns0-padding).
|
||||||
|
When using DNS over TLS, query sizes will be padded to multiples
|
||||||
|
of a block size given with:
|
||||||
|
getdns_context_set_tls_query_padding_blocksize()
|
||||||
|
* An EDNS client subnet private option, that will ask a EDNS client
|
||||||
|
subnet aware resolver to not reveal any details about the
|
||||||
|
originating network. See: draft-ietf-dnsop-edns-client-subnet
|
||||||
|
Set with: getdns_context_set_edns_client_subnet_private()
|
||||||
|
* The return_call_debugging extension. The extension will also return
|
||||||
|
the transport used on top of the information about the request which
|
||||||
|
is described in the API spec.
|
||||||
|
* A dnssec_roadblock_avoidance extension. When set, the library will
|
||||||
|
work in stub resolution mode and try to get a by DNSSEC validation
|
||||||
|
assessed answer. On BOGUS answers the library will retry rescursive
|
||||||
|
resolution mode. This is the simplest form of passive roadblock
|
||||||
|
detection and avoidance.
|
||||||
|
See: draft-ietf-dnsop-dnssec-roadblock-avoidance
|
||||||
|
|
||||||
* 2015-10-29: Version 0.5.0
|
* 2015-10-29: Version 0.5.0
|
||||||
* Native crypto. No ldns dependency anymore.
|
* Native crypto. No ldns dependency anymore.
|
||||||
|
|
|
@ -74,8 +74,9 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRE
|
||||||
# getdns-0.3.2 had libversion 3:5:2
|
# getdns-0.3.2 had libversion 3:5:2
|
||||||
# getdns-0.3.3 had libversion 3:6:2
|
# getdns-0.3.3 had libversion 3:6:2
|
||||||
# getdns-0.5.0 had libversion 4:0:3
|
# getdns-0.5.0 had libversion 4:0:3
|
||||||
|
# getdns-0.5.1 will have libversion 4:1:3
|
||||||
#
|
#
|
||||||
GETDNS_LIBVERSION=4:0:3
|
GETDNS_LIBVERSION=4:1:3
|
||||||
|
|
||||||
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
AC_SUBST(GETDNS_COMPILATION_COMMENT)
|
||||||
AC_SUBST(GETDNS_LIBVERSION)
|
AC_SUBST(GETDNS_LIBVERSION)
|
||||||
|
|
|
@ -130,4 +130,4 @@ done
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "Finished transport test: did $COUNT queries, $GOOD_COUNT passes, $FAIL_COUNT failures"
|
echo "Finished transport test: did $COUNT queries, $GOOD_COUNT passes, $FAIL_COUNT failures"
|
||||||
echo
|
echo
|
Loading…
Reference in New Issue