From 29072d7ba299ac6a39ed87922410624534ac67bb Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 29 Dec 2015 14:15:18 +0100 Subject: [PATCH 1/3] update CHANGES --- CHANGES.rst | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4c9945d..af638b4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,20 +8,39 @@ migrations for that version). For upgrading and migration help, please see the docs that match the version you are upgrading to. -Release (unreleased yet) ------------------------------- +Release 0.12.0 (unreleased yet) +------------------------------- New Features: * Related Hosts: leave v4 or v6 interface ID empty to not create a DNS record +* add ipfire help, fixes #209 +* avoid domains vs. hosts confusion - check dns availability, #168 +* admin: sort host and domains by name Fixes: -* ... +* exception "IPAddress() does not support netmasks or subnet prefixes", #223 +* Traceback on DNS server Timeout, #211 +* emails should mention fqdn, #225 +* TemplateDoesNotExist exception, #222 +* "faults" management command: use atomic transaction PER HOST, #208 +* avoid that invalid domains get added, fixes #205 +* fix traceback when language in user profile is None, fixes #206 +* fix traceback when using a malformed nameserver secret #213 Other changes: -* ... +* update django requirement >=1.8.1 (LTS) +* added python 3.5 to travis tests +* use www.BASEDOMAIN for WWW_HOST, prepare for #224 +* submitted a pull request with "nsupdate.info" to publicsuffix.org, this + is needed to not run into rate limiting with letsencrypt.org: + https://github.com/publicsuffix/list/pull/93 +* upgrade Font Awesome, Bootstrap, jQuery +* use other cdn for Bootstrap +* set SECRET_KEY in development configuration +* add some words about DNSSEC to the docs, #26 Release 0.11.0 From f7558123ba7a4b41dfe7fbbb324f51ae0c0b758f Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 29 Dec 2015 14:17:28 +0100 Subject: [PATCH 2/3] bump version to 0.12.0 --- nsupdate/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsupdate/__init__.py b/nsupdate/__init__.py index 46c18aa..1f39d48 100644 --- a/nsupdate/__init__.py +++ b/nsupdate/__init__.py @@ -62,4 +62,4 @@ class Version(tuple): # pragma: no cover return version_str -version = Version(0, 11, 0) +version = Version(0, 12, 0) From 249027076b11a08c882b8185aed61413c796fc48 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 13 Aug 2016 16:10:49 +0200 Subject: [PATCH 3/3] fixup: update CHANGES, again --- CHANGES.rst | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index af638b4..559537e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,7 +14,7 @@ Release 0.12.0 (unreleased yet) New Features: * Related Hosts: leave v4 or v6 interface ID empty to not create a DNS record -* add ipfire help, fixes #209 +* add ipfire help, #209 * avoid domains vs. hosts confusion - check dns availability, #168 * admin: sort host and domains by name @@ -25,9 +25,14 @@ Fixes: * emails should mention fqdn, #225 * TemplateDoesNotExist exception, #222 * "faults" management command: use atomic transaction PER HOST, #208 -* avoid that invalid domains get added, fixes #205 -* fix traceback when language in user profile is None, fixes #206 -* fix traceback when using a malformed nameserver secret #213 +* avoid that invalid domains get added, #205 +* fix traceback when language in user profile is None, #206 +* fix traceback when using a malformed nameserver secret, #213 +* downgrade django-registration-redux, fixes pw reset, #250 +* update pfSense tab to get IP from Result Match +* check_domain fixes: #246, #249, #253 +* test updates when a domain is set to available, #168 +* unicode error under python2.7, #242 Other changes: @@ -41,6 +46,10 @@ Other changes: * use other cdn for Bootstrap * set SECRET_KEY in development configuration * add some words about DNSSEC to the docs, #26 +* do not use html registration emails +* update font awesome and jquery, add subresource integrity, #23 +* optimize database query on overview page +* sort hosts and domains by name, #192 Release 0.11.0