Skip to content
Snippets Groups Projects
Commit be345d39 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Updated version and magic bytes to 1.1.

parent 13324bd7
Branches
Tags
No related merge requests found
Features not supported Features not supported
====================== ======================
Here is a list of the most notable features that are not supported in the Here is a list of the most notable features that are not supported in the
current version of Knot. current version of Knot.
* Other DNS classes than IN (CH, CS, HS) * Other DNS classes than IN (CH, CS, HS)
...@@ -11,5 +11,4 @@ Known bugs ...@@ -11,5 +11,4 @@ Known bugs
========== ==========
* Slow start with too many zones. * Slow start with too many zones.
* IXFR is still quite slow with large transfers (more than 50 000 RRs * Generating journal from reloaded zone adds redundant records to the changes when the RDATA are in binary format.
changed), despite the previous improvements.
v1.1.0 - Aug 17, 2012
---------------------
New features:
* Optionally disable ANY queries for authoritative answers.
* Dropping identical records in zone and incoming transfers.
* Support for '/' in zone names.
* Generating journal from reloaded zone (EXPERIMENTAL).
* Outgoing-only interfaces in configuration file.
* Following DNAME if the synthetized name is in the same zone.
Bugfixes:
* Crash when zone contained RRSIG signing a CNAME, but did not
contain the CNAME.
* Malformed packets parsing.
* Failed IXFR caused memory leaks.
* Failed IXFR might have resulted in inconsistent zone structures.
* Fixed answering to +dnssec queries when NSEC3 chain is corrupted.
* Fixed answering when transitioning from NSEC3 to NSEC.
* Fixed answering when zone contains multiple NSEC3 chains.
* Handling RRSets with different TTLs - TTL from the first RR is used.
* Synchronization of zone reload and zone transfers.
* Fixed build on NetBSD 5 and FreeBSD.
* Fixed binding to both IPv4 and IPv6 at the same time on special
interfaces.
* Fixed access rights of created files.
* Semantic checks corrupted RDATA domain names which are covered by
wildcard in the same zone.
Other improvements:
* IXFR-in optimized.
* Many zones loading optimized.
* More detailed log messages (mostly transfer-related).
* Copying Question section to error responses.
* Using zone name from config file as default origin in zone file.
* Additional records are now added to response also from
wildcard-covered names.
v1.0.6 - Jun 13, 2012 v1.0.6 - Jun 13, 2012
--------------------- ---------------------
......
# -*- Autoconf -*- # -*- Autoconf -*-
AC_PREREQ([2.65]) AC_PREREQ([2.65])
AC_INIT([knot], [1.0.6], [knot-dns@labs.nic.cz]) AC_INIT([knot], [1.1.0], [knot-dns@labs.nic.cz])
AM_INIT_AUTOMAKE([gnu -Wall -Werror]) AM_INIT_AUTOMAKE([gnu -Wall -Werror])
AC_CONFIG_SRCDIR([src/knot/main.c]) AC_CONFIG_SRCDIR([src/knot/main.c])
AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_HEADERS([src/config.h])
......
...@@ -38,7 +38,7 @@ enum { ...@@ -38,7 +38,7 @@ enum {
}; };
/*! \brief Magic identifier: { "knot", maj_ver, min_ver, revision } */ /*! \brief Magic identifier: { "knot", maj_ver, min_ver, revision } */
#define MAGIC_BYTES {'k', 'n', 'o', 't', '1', '0', '4'} #define MAGIC_BYTES {'k', 'n', 'o', 't', '1', '1', '0'}
/*! /*!
* \brief Dumps given zone to binary file. * \brief Dumps given zone to binary file.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment