You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,42 @@ See also the [v0.107.65 GitHub milestone][ms-v0.107.65].
17
17
18
18
NOTE: Add new changes BELOW THIS COMMENT.
19
19
-->
20
+
21
+
### Added
22
+
23
+
- A separate checkbox in the Web UI to enable or disable the global DNS response cache without losing the configured cache size.
24
+
25
+
- A new `"cache_enabled"` field to the HTTP API (`GET /control/dns_info` and `POST /control/dns_config`). See `openapi/openapi.yaml` for the full description.
26
+
27
+
### Changed
28
+
29
+
#### Configuration changes
30
+
31
+
In this release, the schema version has changed from 29 to 30.
32
+
33
+
- Added a new boolean field `dns.cache_enabled` to the configuration. This field explicitly controls whether DNS caching is enabled, replacing the previous implicit logic based on `dns.cache_size`.
34
+
35
+
```yaml
36
+
# BEFORE:
37
+
'dns':
38
+
# …
39
+
'cache_size': 123456
40
+
41
+
# AFTER:
42
+
'dns':
43
+
# …
44
+
'cache_enabled': true
45
+
'cache_size': 123456
46
+
```
47
+
48
+
To roll back this change, set the schema_version back to `29`.
49
+
50
+
### Fixed
51
+
52
+
- Disabled state of Top clients action button in web UI ([#7923]).
0 commit comments