-
Notifications
You must be signed in to change notification settings - Fork 126
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
Release neqo
v0.8.1
#1989
Comments
All but #1964 are merged. #1964 is not needed for Fast UDP for Firefox milestone 1. As planned today, milestone 1 will not come with ECN support. That will be rolled out with milestone 2. I suggest proceeding here, i.e. releasing @KershawChang do you have the time to cut a release? I am happy to do it myself, though I would need to be given permissions, which I assume I will need longterm anyways. I think Write permissions would suffice. //CC @larseggert since I think you manage mozilla/neqo's GitHub permissions. |
Yeah, I can release v0.8.1 today. |
Thank you @KershawChang. Want me to replace https://phabricator.services.mozilla.com/D216265 or are you going to update it? |
I'll update it. Thanks. |
Note that #1988 requires the following change to modified netwerk/test/http3server/Cargo.toml
@@ -11,8 +11,6 @@ neqo-transport = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
neqo-common = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
neqo-http3 = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
neqo-qpack = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo" }
-neqo-udp = { tag = "v0.7.9", git = "https://github.com/mozilla/neqo", default-features = false, features = ["tokio"] }
log = "0.4.0"
base64 = "0.21"
cfg-if = "1.0"
modified netwerk/test/http3server/src/main.rs
@@ -1044,7 +1044,7 @@ fn new_runner(
let mut ech_config = None;
let addr: SocketAddr = format!("127.0.0.1:{}", port).parse().unwrap();
- let socket = match neqo_udp::Socket::bind(&addr) {
+ let socket = match neqo_bin::udp::Socket::bind(&addr) {
Err(err) => {
eprintln!("Unable to bind UDP socket: {}", err);
exit(1) |
We probably need to do 0.8.2 soon, when there is a proper fix in #1998. |
Given the importance of #1998, writing up my understanding below to make sure I am not missing something. The bug introduced in #1603, to be fixed in #1998, has been released in v0.6.9. Thus it is released in Firefox for quite some time. Neqo Please correct me if I am wrong. |
Correct |
Follow-up to #1971.
Depends on:
Ideally includes:
The text was updated successfully, but these errors were encountered: