* Version 2.0.33
- Fixes an issue that caused some valid queries to return `PARSE_ERROR`.
* Version 2.0.32
- On certificate errors, the server name is now logged instead of the
provider name, which is generally more useful.
- IP addresses for DoH servers that require DNS lookups are now cached
for at least 12 hours.
- `ignore_system_dns` is now set to `true` by default.
- A workaround for a bug in Cisco servers has been implemented.
- A corrupted or incomplete resolvers list is now ignored, keeping the
last good known cached list until the next update. In addition, logging was
improved and unit tests were also added. Awesome contribution from William
Elwood, thanks!
- On Windows, the network probe immediately returned instead of blocking
if `netprobe_timeout` was set to `-1`. This has been fixed.
- Expired cached IP addresses now have a grace period, to avoid breaking the
service if they temporarily can't be refreshed.
- On Windows, the service now returns immediately, solving a long-standing
issue when initialization took more than 30 seconds ("The service did not
respond to the start or control request in a timely fashion"). Fantastic
work by Alison Winters, thanks!
- The `SERVER_ERROR` error code has been split into two new error codes:
`NETWORK_ERROR` (self-explanatory) and `SERVFAIL` (a response was returned,
but it includes a `SERVFAIL` error code).
- Responses are now always compressed.
openjade has some buggy code, which relies on storage remaining valid
when the C++ standard says that it is undefined:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69534#c9
Recent gcc removes code that writes to this about-to-be-undefined
storage, shrinking the openjade binary. Some versions further result
in a binary which crashes.
pkgsrc had a workaround to add -fno-tree-dse when PKGSRC_COMPILER was
equal to gcc. That is buggy, because "ccache gcc", "distcc gcc",
etc. should also get the workaround. This commit replaces the exact
test with a pattern match.
Now, the workaround gcc flag is passed when compiling with ccache.
Fixes pkg/54134. Note that the comments in the PR which implicate
ccache as buggy turned out to be untrue.
This documentation is nearly 20 years out of date.
Current documentation is available on the festival website but is
no longer distributed as a separate distfile along with the software.
It appears to attempt to detect whether the system uses "Sys-V"-style
man categories by checking for a specific file in /usr/share/man.
This doesn't seem to be particularly accurate and causes problems with
varying PLISTs on pkgsrc depending on the system's filesystem layout.
So just force a consistent category number for "misc" pages for every OS,
for now...