-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare v0.26 release, update to Hyper 1.0 #250
Comments
@djc @ctz @Gelbpunkt Do these proposed release notes look good to you? I can publish a release once there are +1's for the proposed notes. |
The release notes look good to me! |
Looks good to me too! |
@cpu fyi looking at recent signed commits it seems your gpg keys might need to be updated |
I think the "Unverified" is because I require commits authored by me to be signed with my key and even though I sign them on my branches, the signature is lost when using "squash and rebase" in the Github merge options. No key has expired. |
I'm seeing my signature subkey showing an expiry of 2024-03-10. I concur with @Gelbpunkt that this is an artifact of merge commits and GitHub's UI. I regularly see my commits showing as "unverified" when merged by others so I've disabled vigilant mode in my account settings. I don't really believe its a useful practice with the current state of GitHub. |
LGTM. |
|
This issue collects up preparation work for a hyper-rustls 0.26 release, bringing in the update to Hyper 1.0
Since main has already had its Cargo.toml version updated this is an issue instead of a pull-request.
Resolves #234
Proposed Release Notes
hyper
crate dependency has been updated to 1.0.hyper-rustls
now uses the newhyper-util
crate to replace functionality removed fromhyper
.Acceptor
API has been removed and relevant examples updated. Hyper 1.0 has library consumers handle binding sockets and accepting connections themselves, removing the need for theAcceptor
API. Seeexamples/server.rs
for an up to date example for accepting connections.tokio-runtime
feature has been removed -hyper-rustls
depends onhyper-util
, and thetokio
feature in hyper-util is required for the necessary IO adapter traits. Tokio was already a hard dependency of this crate.The text was updated successfully, but these errors were encountered: