-
Notifications
You must be signed in to change notification settings - Fork 120
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
s2n-quic 1.45 is semver breaking #2313
Comments
We don't currently have any guarantees around breaking changes for our Is there a reason you're needing to depend on |
This a breaking change in
I'm not quite sure what this means. The |
Our
I've gone ahead and removed that dependency in #2325, and would suggest you make a similar change to your code. |
The
s2n_quic::application::Error
type implementsFrom<VarInt>
froms2n-quic-core
. In 1.44,VarInt
was from version 0.44 ofs2n_quic_core
. In 1.45,VarInt
is from the semver incompatibles2n_quic_core
0.44 resulting in a breaking change for any users of the publicFrom<VarInt>
impl.The only correct fix is to provide an implementation of
From<VarInt>
for the0.44
version ofVarInt
as well. Turning back time,VarInt
should either be hidden entirely from public APIs or reexported from thes2n-quic
crate.The text was updated successfully, but these errors were encountered: