]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
1.15.0 prep
authorBob Halley <halley@dnspython.org>
Fri, 30 Sep 2016 14:42:14 +0000 (07:42 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 30 Sep 2016 14:42:14 +0000 (07:42 -0700)
ChangeLog
README.md

index 596a22ea38db1abc4e038cdb4f9b3c1a4a76a96a..15c356ac4060b33d02cb5acfd3d8fc3b3171caab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,11 @@
 
        * IDNA 2008 support is now available if the "idna" module has been
          installed and IDNA 2008 is requested.  The default IDNA behavior
-         is still IDNA 2003.
+         is still IDNA 2003.  The new IDNA codec mechanism is currently
+         only useful for direct calls to dns.name.from_text() or
+         dns.name.from_unicode(), but in future releases it will be
+         deployed throughout dnspython, e.g. so that you can read a
+         masterfile with an IDNA 2008 codec in force.
 
        * By default, dns.name.to_unicode() is not strict about which
          version of IDNA the input complies with.  Strictness can be
index 4ac9ccc78afe064299e5dd731352bb7f6e3742fb..9b6f888ba1e7e91f468116d0b55c3e52736e2d50 100644 (file)
--- a/README.md
+++ b/README.md
@@ -30,7 +30,36 @@ employ the author :).
 
 ## ABOUT THIS RELEASE
 
-This is dnspython 1.14.0
+This is dnspython 1.15.0
+
+### New since 1.14.0:
+
+* IDNA 2008 support is now available if the "idna" module has been
+  installed and IDNA 2008 is requested.  The default IDNA behavior is
+  still IDNA 2003.  The new IDNA codec mechanism is currently only
+  useful for direct calls to dns.name.from_text() or
+  dns.name.from_unicode(), but in future releases it will be deployed
+  throughout dnspython, e.g. so that you can read a masterfile with an
+  IDNA 2008 codec in force.
+
+* By default, dns.name.to_unicode() is not strict about which
+  version of IDNA the input complies with.  Strictness can be
+  requested by using one of the strict IDNA codecs.
+
+* The AVC RR is now supported.
+
+### Bugs fixed since 1.14.0:
+
+* Some problems with newlines in various output modes have been
+  addressed.
+
+* dns.name.to_text() now returns text and not bytes on Python 3.x
+
+* Miscellaneous fixes for the Python 2/3 codeline merge.
+
+* Many "lint" fixes after the addition of pylint support.
+
+* The random number generator reseeds after a fork().
 
 ### New since 1.13.0: