Skip to content

Commit

Permalink
1.15.0 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Sep 30, 2016
1 parent 50ab882 commit d5848ed
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit d5848ed

Please sign in to comment.