diff options
author | Jan Vcelak <jan.vcelak@nic.cz> | 2016-04-26 13:05:36 +0200 |
---|---|---|
committer | Jan Vcelak <jan.vcelak@nic.cz> | 2016-04-26 13:05:58 +0200 |
commit | c2ba54aa694246ed4550c30920950f35211a635c (patch) | |
tree | 92ce4ee5eea180818008e3b09d3e9f86543f3d78 | |
parent | doc: migration, considering configuration database (diff) | |
download | knot-c2ba54aa694246ed4550c30920950f35211a635c.tar.xz knot-c2ba54aa694246ed4550c30920950f35211a635c.zip |
Knot DNS 2.2.0 releasev2.2.0
-rw-r--r-- | NEWS | 25 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 23 insertions, 4 deletions
@@ -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]) |