From: Willem Toorop Date: Wed, 22 Aug 2012 09:55:58 +0000 (+0000) Subject: Changelog for pyldns from Karel Slany X-Git-Tag: release-1.6.14rc1~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5d7a1729d46c39ff3e04ba883ae319d5bd53ed8;p=thirdparty%2Fldns.git Changelog for pyldns from Karel Slany --- diff --git a/Changelog b/Changelog index 09cd9907..8d0c67c2 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ 1.6.14 * Make buffer_export comply to documentation and fix buffer2str * Various improvements and fixes of pyldns from Katel Slany + now documented in their own Changelog. * bugfix: Make ldns_resolver_pop_nameserver clear the array when there was only one. * bugfix #459: Export only symbols defined in ldns_symbols diff --git a/contrib/python/Changelog b/contrib/python/Changelog new file mode 100644 index 00000000..0902a346 --- /dev/null +++ b/contrib/python/Changelog @@ -0,0 +1,23 @@ +1.6.14 + * Fixed automatic conversion from Python string to ldns_rdf and + ldns_dname. Caused memory corruption when using Python 3. + * The Python 3 wrapper code now raises TypeError instead of ValueError + when receiving a non FILE * argument when it should be a FILE *. + * Fixed wrong handling of _ldns_rr_list_free() and + _ldns_rr_list_deep_free() when compiling with LDNS_DEBUG directive. + * Fixed malfunctioning ldns.ldns_rdf_new_frm_fp_l(). + * Fixed malfunctioning ldns_drf.absolute() and ldns_dname.absolute(). + * Marked several functions related to ldns_rdf and ldns_buffer as + returning new objects. + * Method operating on ldns_dnames and returning dname ldns_rdfs now + return ldns_dname instances. + * Improved documentation of ldns_buffer, ldns_rdf and ldns_dname + classes. + * Methods ldns_buffer.available() and ldns_buffer.available_at() now + return bool types as described in the documentation. + * Added scripts for testing the basic functionality of the ldns_buffer, + ldns_rdf, ldns_dname class code. + * Added deprecation warnings to ldns_rdf methods operating on dname + rdfs. The user is encouraged to converts dname ldns_rdfs to + ldns_dnames. + * Extended ldns_dname constructor to accept ldns_rdfs containing dnames.