···900900901901- `freecad` now supports addons and custom configuration in nix-way, which can be used by calling `freecad.customize`.
902902903903-## Detailed Migration Information {#sec-release-24.11-migration}
903903+- `bind.cacheNetworks` now only controls access for recursive queries, where it previously controlled access for all queries.
904904+905905+## Detailed migration information {#sec-release-24.11-migration}
904906905907### `sound` options removal {#sec-release-24.11-migration-sound}
906908
+1-4
nixos/modules/services/networking/bind.nix
···3838 description = ''
3939 List of address ranges allowed to query this zone. Instead of the address(es), this may instead
4040 contain the single string "any".
4141-4242- NOTE: This overrides the global-level `allow-query` setting, which is set to the contents
4343- of `cachenetworks`.
4441 '';
4542 default = [ "any" ];
4643 };
···6562 options {
6663 listen-on { ${lib.concatMapStrings (entry: " ${entry}; ") cfg.listenOn} };
6764 listen-on-v6 { ${lib.concatMapStrings (entry: " ${entry}; ") cfg.listenOnIpv6} };
6868- allow-query { cachenetworks; };
6565+ allow-query-cache { cachenetworks; };
6966 blackhole { badnetworks; };
7067 forward ${cfg.forward};
7168 forwarders { ${lib.concatMapStrings (entry: " ${entry}; ") cfg.forwarders} };