Commit beebfdc
authored
chore(deps): bump the cargo group across 2 directories with 2 updates (#27)
Bumps the cargo group with 2 updates in the
/indieweb2-bastion/graphql-dns-api directory:
[hickory-proto](https://github.com/hickory-dns/hickory-dns) and
[openssl](https://github.com/rust-openssl/rust-openssl).
Bumps the cargo group with 1 update in the /indieweb2-bastion/odns-rs
directory: [hickory-proto](https://github.com/hickory-dns/hickory-dns).
Updates `hickory-proto` from 0.24.4 to 0.26.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hickory-dns/hickory-dns/releases">hickory-proto's
releases</a>.</em></p>
<blockquote>
<h2>v0.26.1</h2>
<p>This point release for the 0.26 release series brings in several bug
fixes, and no user-facing changes. Two security reports are addressed:
<a
href="https://rustsec.org/advisories/RUSTSEC-2026-0120.html">RUSTSEC-2026-0120</a>
and <a
href="https://rustsec.org/advisories/RUSTSEC-2026-0119.html">RUSTSEC-2026-0119</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>net: avoid infinite loop in NSEC3 processing by <a
href="https://github.com/djc"><code>@djc</code></a> in <a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3597">hickory-dns/hickory-dns#3597</a></li>
<li>Limit work expended on name compression (backport) by <a
href="https://github.com/divergentdave"><code>@divergentdave</code></a>
in <a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3615">hickory-dns/hickory-dns#3615</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/hickory-dns/hickory-dns/compare/v0.26.0...v0.26.1">https://github.com/hickory-dns/hickory-dns/compare/v0.26.0...v0.26.1</a></p>
<h2>0.26.0</h2>
<p>13 months after the release of 0.25.0, we finally have a bigger
feature release of Hickory DNS, the suite of DNS libraries and
authoritative/recursive name servers written in pure Rust. A lot of work
has gone into this release, so we wanted to take a moment to release
this before we continue work on deploying the Hickory DNS recursive
resolver <a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/2725">at
Let's Encrypt</a> (and did you see that Hickory is being used <a
href="https://security.googleblog.com/2026/04/bringing-rust-to-pixel-baseband.html">in
some of Google's Pixel devices</a>?). Because of the ongoing work, we
expect that 0.27.0 might happen quite a bit sooner than in 13 months
from now.</p>
<p>These release notes describe a number of high-level improvements as
well as API changes that are likely to break a larger fraction of our
downstream users. Feedback (both on these notes and the release itself)
is always welcome in our <a
href="https://github.com/hickory-dns/hickory-dns/issues">issue
tracker</a> or via our <a href="https://discord.gg/89nxE4n">Discord
server</a>.</p>
<p>Most of the following notes are broken up by specific components: the
server binary and our library crates. However, for this release we've
made several changes to the structure of our crates itself:</p>
<ul>
<li>Network protocol support has moved out of the hickory-proto crate,
into a new hickory-net crate (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3394">#3394</a>);
this allows the hickory-proto crate to cleanly focus on message encoding
and decoding.</li>
<li>The hickory-client crate has been subsumed into hickory-net, in the
<code>client</code> module (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3366">#3366</a>).
No future releases of the hickory-client crate are expected.</li>
<li>The hickory-recursor crate has been merged into hickory-resolver (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3370">#3370</a>),
guarded by a <code>recursor</code> feature which must be enabled
explicitly. The recursor implementation was already tightly coupled to
the resolver internals, so keeping it separate didn't really make
sense.</li>
</ul>
<p>Additionally, substantial cross-crate changes have been made to
improve our error handling:</p>
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3387">More
error handling simplification</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3374">proto:
split NetError out of ProtoError</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3251">proto:
clean up ProtoError</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3505">Be
more strict about decode errors</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/2970">resolver:
remove unnecessary ResolveError wrapper</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3000">Avoid
large errors</a></li>
</ul>
<h2>hickory-dns (the server binary)</h2>
<ul>
<li>We've added a number of ways to optimize performance via low-level
networking configuration:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3509">Use
SO_REUSEADDR for tcp sockets</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3507">Allow
configuring UDP socket buffer sizes</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3549">Add
SO_REUSEPORT support with configurable UDP socket count</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3578">More
TCP tuning options</a></li>
</ul>
</li>
<li>We further extended and reworked our metrics:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3428">Additional
recursive resolver metrics</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3421">Minor
metrics tidying</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3367">Initial
histogram metrics support</a></li>
</ul>
</li>
<li>Miscellaneous changes:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3070">Implement
RFC 5001 NSID for authoritative server</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3184">Add
server SSLKEYLOGFILE support</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3576">Add
systemd readiness + watchdog support</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3579">prometheus:
enable gzip compression on metrics endpoint</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3585">Add
support for jemalloc + profiling</a></li>
</ul>
</li>
</ul>
<h2>hickory-server (the library API)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/f09321075b1f97902b7bc4ca4ffda7816fcf2971"><code>f093210</code></a>
Limit number of names that may be compressed</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/a9b884b27223937d9a9afa933d7859d5b0784b61"><code>a9b884b</code></a>
Skip search when name compression is disabled</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/6e70e931515286a701b00ce91b06988eb71e89ef"><code>6e70e93</code></a>
Limit number of name pointers stored in BinEncoder</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/c2bdb8c65e41c4d67b3dde5430a22811a0f94a46"><code>c2bdb8c</code></a>
Add benchmark for encoding message with many names</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/9e0b528f8bff89e4ff7065bc668beb08e6a20163"><code>9e0b528</code></a>
Bump version to 0.26.1</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/14cc3c817e2eec14ed2ff625ee03eee2877874b1"><code>14cc3c8</code></a>
net: respect caller timeout for DoT TCP connect</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/fc2e3f427061c755c9bfa8bf3bb7466db475bc61"><code>fc2e3f4</code></a>
resolver: release connections lock before TCP/TLS handshake</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/bbdfcd2b0da36dfb9467e262783862ee17e52707"><code>bbdfcd2</code></a>
Add tests combining NSEC and NSEC3 via CNAME chain</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/994076b7aae3a502206a573c534d71a518fc573d"><code>994076b</code></a>
Update rustls-webpki to 0.103.13</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/3b265fbb2c698a33f5e9a8a6d343a283917b6855"><code>3b265fb</code></a>
net: check query name is in zone when building encloser candidates</li>
<li>Additional commits viewable in <a
href="https://github.com/hickory-dns/hickory-dns/compare/v0.24.4...v0.26.1">compare
view</a></li>
</ul>
</details>
<br />
Updates `openssl` from 0.10.78 to 0.10.79
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/rust-openssl/rust-openssl/releases">openssl's
releases</a>.</em></p>
<blockquote>
<h2>openssl-v0.10.79</h2>
<h2>What's Changed</h2>
<ul>
<li>Bump actions/cache from 5.0.4 to 5.0.5 by <a
href="https://github.com/dependabot"><code>@dependabot</code></a>[bot]
in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2610">rust-openssl/rust-openssl#2610</a></li>
<li>Try to fix OpenSSL 1.1.0l download by <a
href="https://github.com/botovq"><code>@botovq</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2614">rust-openssl/rust-openssl#2614</a></li>
<li>Require &mut BigNumContextRef for EcPointRef mul/invert by <a
href="https://github.com/alex"><code>@alex</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2615">rust-openssl/rust-openssl#2615</a></li>
<li>Fix UB in EcGroupRef::generator on groups without a generator by <a
href="https://github.com/alex"><code>@alex</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2617">rust-openssl/rust-openssl#2617</a></li>
<li>Replace <code>use libc::*;</code> with targeted imports in
openssl-sys by <a href="https://github.com/alex"><code>@alex</code></a>
in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2618">rust-openssl/rust-openssl#2618</a></li>
<li>Add PKeyRef::is_a and KeyType for name-based key identification by
<a href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in
<a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2619">rust-openssl/rust-openssl#2619</a></li>
<li>Add PKey::{public,private}_key_from_raw_bytes_ex by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2620">rust-openssl/rust-openssl#2620</a></li>
<li>Bump MSRV to 1.80 by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2622">rust-openssl/rust-openssl#2622</a></li>
<li>Drop once_cell in favor of std::sync::{LazyLock, OnceLock} by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2623">rust-openssl/rust-openssl#2623</a></li>
<li>Add PKey::private_key_from_seed for ML-DSA/ML-KEM key import by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2621">rust-openssl/rust-openssl#2621</a></li>
<li>parallelize more builds in CI for cold caches by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2625">rust-openssl/rust-openssl#2625</a></li>
<li>Add PKeyRef::seed_into for ML-DSA/ML-KEM seed extraction by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2626">rust-openssl/rust-openssl#2626</a></li>
<li>Fix process abort when verify/PSK callbacks fire after SSL_CTX swap
by <a href="https://github.com/alex"><code>@alex</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2624">rust-openssl/rust-openssl#2624</a></li>
<li>Bind OSSL_PARAM_modified and use it for seed_into by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2628">rust-openssl/rust-openssl#2628</a></li>
<li>Add PkeyCtxRef::set_context_string for ML-DSA by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2629">rust-openssl/rust-openssl#2629</a></li>
<li>Reject non-UTF-8 OCSP responder URLs in X509Ref::ocsp_responders by
<a href="https://github.com/alex"><code>@alex</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2631">rust-openssl/rust-openssl#2631</a></li>
<li>Fix output buffer overflow for AES key-wrap-with-padding ciphers by
<a href="https://github.com/alex"><code>@alex</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2630">rust-openssl/rust-openssl#2630</a></li>
<li>Release openssl 0.10.79 and openssl-sys 0.9.115 by <a
href="https://github.com/reaperhulk"><code>@reaperhulk</code></a> in <a
href="https://redirect.github.com/rust-openssl/rust-openssl/pull/2632">rust-openssl/rust-openssl#2632</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.78...openssl-v0.10.79">https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.78...openssl-v0.10.79</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/649f2d9e37f3aa701e20bd8ab5cd7eb5afa0a90f"><code>649f2d9</code></a>
Release openssl 0.10.79 and openssl-sys 0.9.115 (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2632">#2632</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/257f9b20c001b888986f93579f118fa2a57d4f45"><code>257f9b2</code></a>
Fix output buffer overflow for AES key-wrap-with-padding ciphers (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2630">#2630</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/d43e9179b1885fc66269a42361cc7a80f631ac8f"><code>d43e917</code></a>
Reject non-UTF-8 OCSP responder URLs in X509Ref::ocsp_responders (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2631">#2631</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/f46519c8694a3e121091dafe38aab77c2f756546"><code>f46519c</code></a>
Add PkeyCtxRef::set_context_string for ML-DSA (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2629">#2629</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/ad9ae312771f898749a9471549519d45eba6a033"><code>ad9ae31</code></a>
Bind OSSL_PARAM_modified and use it for seed_into (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2628">#2628</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/4e25c9be20dae1e78f1a3815950cd0973addae82"><code>4e25c9b</code></a>
Fix process abort when verify/PSK callbacks fire after SSL_CTX swap (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2624">#2624</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/3dd8f425ef34a069b5bec46f3971b67db1c295c7"><code>3dd8f42</code></a>
Add PKeyRef::seed_into for ML-DSA/ML-KEM seed extraction (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2626">#2626</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/2c5e5a8f1483d5ec85580c07f721de9057d58e69"><code>2c5e5a8</code></a>
parallelize more builds in CI for cold caches (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2625">#2625</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/668559171168538cd190574373abfc9e120263ca"><code>6685591</code></a>
Add PKey::private_key_from_seed for ML-DSA/ML-KEM key import (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2621">#2621</a>)</li>
<li><a
href="https://github.com/rust-openssl/rust-openssl/commit/8f8fdce627fb3c553673b8c688d9f1dc10ea0cc8"><code>8f8fdce</code></a>
Drop once_cell in favor of std::sync::{LazyLock, OnceLock} (<a
href="https://redirect.github.com/rust-openssl/rust-openssl/issues/2623">#2623</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.78...openssl-v0.10.79">compare
view</a></li>
</ul>
</details>
<br />
Updates `hickory-proto` from 0.24.4 to 0.26.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hickory-dns/hickory-dns/releases">hickory-proto's
releases</a>.</em></p>
<blockquote>
<h2>v0.26.1</h2>
<p>This point release for the 0.26 release series brings in several bug
fixes, and no user-facing changes. Two security reports are addressed:
<a
href="https://rustsec.org/advisories/RUSTSEC-2026-0120.html">RUSTSEC-2026-0120</a>
and <a
href="https://rustsec.org/advisories/RUSTSEC-2026-0119.html">RUSTSEC-2026-0119</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>net: avoid infinite loop in NSEC3 processing by <a
href="https://github.com/djc"><code>@djc</code></a> in <a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3597">hickory-dns/hickory-dns#3597</a></li>
<li>Limit work expended on name compression (backport) by <a
href="https://github.com/divergentdave"><code>@divergentdave</code></a>
in <a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3615">hickory-dns/hickory-dns#3615</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/hickory-dns/hickory-dns/compare/v0.26.0...v0.26.1">https://github.com/hickory-dns/hickory-dns/compare/v0.26.0...v0.26.1</a></p>
<h2>0.26.0</h2>
<p>13 months after the release of 0.25.0, we finally have a bigger
feature release of Hickory DNS, the suite of DNS libraries and
authoritative/recursive name servers written in pure Rust. A lot of work
has gone into this release, so we wanted to take a moment to release
this before we continue work on deploying the Hickory DNS recursive
resolver <a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/2725">at
Let's Encrypt</a> (and did you see that Hickory is being used <a
href="https://security.googleblog.com/2026/04/bringing-rust-to-pixel-baseband.html">in
some of Google's Pixel devices</a>?). Because of the ongoing work, we
expect that 0.27.0 might happen quite a bit sooner than in 13 months
from now.</p>
<p>These release notes describe a number of high-level improvements as
well as API changes that are likely to break a larger fraction of our
downstream users. Feedback (both on these notes and the release itself)
is always welcome in our <a
href="https://github.com/hickory-dns/hickory-dns/issues">issue
tracker</a> or via our <a href="https://discord.gg/89nxE4n">Discord
server</a>.</p>
<p>Most of the following notes are broken up by specific components: the
server binary and our library crates. However, for this release we've
made several changes to the structure of our crates itself:</p>
<ul>
<li>Network protocol support has moved out of the hickory-proto crate,
into a new hickory-net crate (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3394">#3394</a>);
this allows the hickory-proto crate to cleanly focus on message encoding
and decoding.</li>
<li>The hickory-client crate has been subsumed into hickory-net, in the
<code>client</code> module (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3366">#3366</a>).
No future releases of the hickory-client crate are expected.</li>
<li>The hickory-recursor crate has been merged into hickory-resolver (<a
href="https://redirect.github.com/hickory-dns/hickory-dns/issues/3370">#3370</a>),
guarded by a <code>recursor</code> feature which must be enabled
explicitly. The recursor implementation was already tightly coupled to
the resolver internals, so keeping it separate didn't really make
sense.</li>
</ul>
<p>Additionally, substantial cross-crate changes have been made to
improve our error handling:</p>
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3387">More
error handling simplification</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3374">proto:
split NetError out of ProtoError</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3251">proto:
clean up ProtoError</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3505">Be
more strict about decode errors</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/2970">resolver:
remove unnecessary ResolveError wrapper</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3000">Avoid
large errors</a></li>
</ul>
<h2>hickory-dns (the server binary)</h2>
<ul>
<li>We've added a number of ways to optimize performance via low-level
networking configuration:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3509">Use
SO_REUSEADDR for tcp sockets</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3507">Allow
configuring UDP socket buffer sizes</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3549">Add
SO_REUSEPORT support with configurable UDP socket count</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3578">More
TCP tuning options</a></li>
</ul>
</li>
<li>We further extended and reworked our metrics:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3428">Additional
recursive resolver metrics</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3421">Minor
metrics tidying</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3367">Initial
histogram metrics support</a></li>
</ul>
</li>
<li>Miscellaneous changes:
<ul>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3070">Implement
RFC 5001 NSID for authoritative server</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3184">Add
server SSLKEYLOGFILE support</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3576">Add
systemd readiness + watchdog support</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3579">prometheus:
enable gzip compression on metrics endpoint</a></li>
<li><a
href="https://redirect.github.com/hickory-dns/hickory-dns/pull/3585">Add
support for jemalloc + profiling</a></li>
</ul>
</li>
</ul>
<h2>hickory-server (the library API)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/f09321075b1f97902b7bc4ca4ffda7816fcf2971"><code>f093210</code></a>
Limit number of names that may be compressed</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/a9b884b27223937d9a9afa933d7859d5b0784b61"><code>a9b884b</code></a>
Skip search when name compression is disabled</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/6e70e931515286a701b00ce91b06988eb71e89ef"><code>6e70e93</code></a>
Limit number of name pointers stored in BinEncoder</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/c2bdb8c65e41c4d67b3dde5430a22811a0f94a46"><code>c2bdb8c</code></a>
Add benchmark for encoding message with many names</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/9e0b528f8bff89e4ff7065bc668beb08e6a20163"><code>9e0b528</code></a>
Bump version to 0.26.1</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/14cc3c817e2eec14ed2ff625ee03eee2877874b1"><code>14cc3c8</code></a>
net: respect caller timeout for DoT TCP connect</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/fc2e3f427061c755c9bfa8bf3bb7466db475bc61"><code>fc2e3f4</code></a>
resolver: release connections lock before TCP/TLS handshake</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/bbdfcd2b0da36dfb9467e262783862ee17e52707"><code>bbdfcd2</code></a>
Add tests combining NSEC and NSEC3 via CNAME chain</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/994076b7aae3a502206a573c534d71a518fc573d"><code>994076b</code></a>
Update rustls-webpki to 0.103.13</li>
<li><a
href="https://github.com/hickory-dns/hickory-dns/commit/3b265fbb2c698a33f5e9a8a6d343a283917b6855"><code>3b265fb</code></a>
net: check query name is in zone when building encloser candidates</li>
<li>Additional commits viewable in <a
href="https://github.com/hickory-dns/hickory-dns/compare/v0.24.4...v0.26.1">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/hyperpolymath/civic-connect/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 57b8807 commit beebfdc
4 files changed
Lines changed: 474 additions & 136 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
0 commit comments