summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Vcelak <jan.vcelak@nic.cz>2016-04-26 13:05:36 +0200
committerJan Vcelak <jan.vcelak@nic.cz>2016-04-26 13:05:58 +0200
commitc2ba54aa694246ed4550c30920950f35211a635c (patch)
tree92ce4ee5eea180818008e3b09d3e9f86543f3d78
parentdoc: migration, considering configuration database (diff)
downloadknot-c2ba54aa694246ed4550c30920950f35211a635c.tar.xz
knot-c2ba54aa694246ed4550c30920950f35211a635c.zip
Knot DNS 2.2.0 releasev2.2.0
-rw-r--r--NEWS25
-rw-r--r--configure.ac2
2 files changed, 23 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 079072f55..acfae94ea 100644
--- a/NEWS
+++ b/NEWS
@@ -1,15 +1,34 @@
-Knot DNS 2.2.0 (TBD)
-====================
+Knot DNS 2.2.0 (2016-04-26)
+===========================
Bugfixes:
---------
+ - Fix build dependencies on FreeBSD
+ - Fix query/response message type setting in dnstap module
+ - Fix remote address retrieval from dnstap capture in kdig
+ - Fix global modules execution for queries hitting existing zones
+ - Fix execution of semantic checks after an IXFR transfer
+ - Fix PKCS#11 support detection at build time
+ - Fix kdig failure when the first AXFR message contains just the SOA record
+ - Exclude non-authoritative types from NSEC/NSEC3 bitmap at a delegation
+ - Mark PKCS#11 generated keys as sensitive (required by Luna SA)
+ - Fix error when removing the only zone from the server
+ - Don't abort knotc transaction when some check fails
Features:
---------
+ - URI and CAA resource record types support
+ - RRL client address based white list
+ - knotc interactive mode
Improvements:
-------------
-
+ - Consistent IXFR error messages
+ - Various fixes for better compatibility with PKCS#11 devices
+ - Various keymgr user interface improvements
+ - Better zone event scheduler performance with many zones
+ - New server control interface
+ - kdig uses local resolver if resolv.conf is empty
Knot DNS 2.1.1 (2016-02-10)
===========================
diff --git a/configure.ac b/configure.ac
index 6964d6b4c..56d969690 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ AC_PREREQ([2.60])
m4_define([knot_VERSION_MAJOR],2)dnl
m4_define([knot_VERSION_MINOR],2)dnl
m4_define([knot_VERSION_PATCH],0)dnl
-m4_define([knot_VERSION_EXTRA],-dev)dnl
+m4_define([knot_VERSION_EXTRA],)dnl
m4_define([knot_PKG_VERSION],[knot_VERSION_MAJOR.knot_VERSION_MINOR.knot_VERSION_PATCH]knot_VERSION_EXTRA)dnl
AC_INIT([knot], knot_PKG_VERSION, [knot-dns@labs.nic.cz])