From: Bob Halley Date: Thu, 6 Dec 2018 15:51:22 +0000 (-0800) Subject: update for 1.16.0 X-Git-Tag: v1.16.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3400809e7cbeaa6a9bf52fbbfa917c98dc3d175;p=thirdparty%2Fdnspython.git update for 1.16.0 --- diff --git a/README.md b/README.md index d66ceb5f..01f75d88 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,41 @@ to facilitate the testing of DNS software. This is dnspython 1.16.0 +### Notices + +Python 2.x support ends with the release of 1.16.0, unless there are +critical bugs in 1.16.0. Future versions of dnspython will only +support Python 3. + +Version numbering of future dnspython releases will also start at 2.0, as +incompatible changes will be permitted. We're not planning huge changes at +this time, but we'd like to do a better job at IDNA, and there are other +API improvements to be made. + +The ChangeLog has been discontinued. Please see the git history for detailed +change information. + ### New since 1.15.0: -XXXTBSXXX +* Much of the internals of dns.query.udp() and dns.query.tcp() have + been factored out into dns.query.send_udp(), + dns.query.receive_udp(), dns.query.send_tcp(), and + dns.query.receive_tcp(). Applications which want more control over + the socket may find the new routines helpful; for example it would + be easy to send multiple queries over a single TCP connection. + +* The OPENPGPKEY RR, and the CHAOS class A RR are now supported. + +* EDNS0 client-subnet is supported. + +* dns.resover.query() now has a lifetime timeout optional parameter. + +* pycryptodome and pycryptodomex are now supported and recommended for use + instead of pycrypto. + +* dns.message.from_wire() now has an ignore_trailing option. + +* type signatures have been provided ### Bugs fixed since 1.15.0: @@ -43,6 +75,16 @@ XXXTBSXXX * The NXDOMAIN exception should not use its docstring. [Issue #253] +* Fixed regression where trailing zeros in APL RRs were not + suppressed, and then fixed the problem where trailing zeros + were not added back properly on python 3 when needed. + +* Masterfile TTL defaulting is now harmonized with BIND practice. + +* dns.query.xfr() now raises on a non-zero rcode. + +* Rdata module importing is now locked to avoid races. + ### New since 1.14.0: * IDNA 2008 support is now available if the "idna" module has been