mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #2229] tag/publish a 0.25 pre-release? #931
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#931
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cpu on GitHub (Jun 4, 2024).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2229
Hi folks,
Would you be willing to tag/publish a 0.25 release candidate/pre-release?
Is your feature request related to a problem? Please describe.
In Rustls we need the fixes from https://github.com/hickory-dns/hickory-dns/pull/2183 to complete our client side ECH support work.
We would be happy to take a temporary Cargo
patchto use the unreleased code inmainwith the fix applied, but unfortunately this isn't feasible with our MSRV being 1.63 as it causes build errors for the MSRV task.The root cause is a little bit subtle: we only use this dependency in our
examplesandconnect-testscrates, where we don't enforce a MSRV but because Cargo patches are specified at the workspace level, the build of therustlscrate where we do enforce MSRV must resolve the patch (even though it's unused). Resolving the patch is only possible with Rust 1.64+ because of this crate's use of workspace inheritance. The net result is that in order to use a patch, we would have to change our MSRV to 1.64 and we're not presently able to do that (we try to track Debian stable, which is still on 1.63).Describe the solution you'd like
A published 0.25-rc0 or similarly named pre-release made available. This would allow us to update the
connect-testandexamplecrates to depend directly on this published version. That in turn would let us drop the problematic patch.Describe alternatives you've considered
Additional context
Some additional discussion in this comment thread. A final 0.25 release is being tracked in https://github.com/hickory-dns/hickory-dns/issues/2206
Thanks!
@djc commented on GitHub (Jun 5, 2024):
I think #2217 is the only real blocker for a final release, so if you were able to have a look at that that would be very welcome.
But if not, it's probably fine to just do a pre-release.
@cpu commented on GitHub (Jun 11, 2024):
I'm still open to supporting 2217 but IMO it's not close enough to mergeable that I want to block my downstream work.
Do you think you or @bluejekyll could publish a pre-release in the next few days?
@bluejekyll commented on GitHub (Jun 16, 2024):
0.25.0-alpha.1 just published. Thanks for the request @cpu.
We should probably discuss a release policy for the project. I just realized how long ago the last release was why I was writing up the changelog.
@cpu commented on GitHub (Jun 16, 2024):
Thank you! Much appreciated :-)