From 6f99678046a37fe1fff4981db93e22c9bf2fd63f Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Tue, 17 Dec 2013 19:14:16 +0100 Subject: [PATCH] 3.3.1 upgrade notes --- pdns/docs/pdns.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pdns/docs/pdns.xml b/pdns/docs/pdns.xml index 6686586a2..b639cbbb0 100644 --- a/pdns/docs/pdns.xml +++ b/pdns/docs/pdns.xml @@ -94,6 +94,10 @@ Beyond PowerDNS 2.9.20, the Authoritative Server and Recursor are released separately. PowerDNS Authoritative Server version 3.3.1 + Version 3.3.1 of the PowerDNS Authoritative Server is a major upgrade if you are coming from 2.9.x. There are also some important changes if you are coming from 3.0, 3.1 or 3.2. + Please refer to , , , and for important information on + correct and stable operation, as well as notes on performance and memory use. + Released December 17th, 2013 @@ -12435,6 +12439,21 @@ create index recordorder on records (domain_id, ordername text_pattern_ops); + From PowerDNS Authoritative Server 3.3 to 3.3.1 + + + If you are coming from 2.9.x, please also read , , and . + + + + Constraints were added to the PostgreSQL schema: + + alter table domains add constraint c_lowercase_name CHECK (((name)::text = lower((name)::text))); + alter table tsigkeys add constraint c_lowercase_name check (((name)::text = lower((name)::text))); + + + + Serving authoritative DNSSEC data -- 2.40.0