+5601. [bug] Dynamic zones with dnssec-policy could not be thawed
+ because KASP zones were always considered dynamic;
+ previously, dynamic KASP zones did not check whether
+ updates were disabled. This has been fixed. [GL #2523]
+
5600. [bug] Load a certificate chain file so that the full chain is
sent to DNS-over-TLS (DoT) and DNS-over-HTTPS (DoH)
clients that require full chain verification. [GL #2514]
(upgrade). Note that this *must not* be done while ``named`` is
running. [GL #2505]
+- Dynamic zones with ``dnssec-policy`` that were frozen could not be thawed.
+ This has been fixed. [GL #2523]
+
- Fix a crash when transferring a zone over TLS, after "named" previously
skipped a master. [GL #2562]
return (true);
}
- /* Kasp zones are always dynamic. */
- if (dns_zone_use_kasp(zone)) {
- return (true);
- }
-
/* If !ignore_freeze, we need check whether updates are disabled. */
if (zone->type == dns_zone_master &&
(!zone->update_disabled || ignore_freeze) &&
is_dynamic = dns_zone_isdynamic(zone, false);
if (zone->db != NULL && is_dynamic) {
/*
- * This is a slave, stub, dynamically updated, or kasp enabled
- * zone being reloaded. Do nothing - the database we already
+ * This is a slave, stub, or dynamically updated zone being
+ * reloaded. Do nothing - the database we already
* have is guaranteed to be up-to-date.
*/
if (zone->type == dns_zone_master && !hasraw) {