-
Notifications
You must be signed in to change notification settings - Fork 2
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
Cargo: update h2 to 0.3.26 to fix HTTP/2 CONTINUATION flood #54
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update h2 to v0.3.26, to address HTTP/2 CONTINUATION flood issues. Update related crates as well, reqwest to 0.11.26, hyper to 0.14.28, which are only patchlevel updates. See also https://rustsec.org/advisories/RUSTSEC-2024-0332.html, https://nowotarski.info/http2-continuation-flood/, https://seanmonstar.com/blog/hyper-http2-continuation-flood/.
CI fails during clippy, which is a different issue happening also in trunk. |
To fix that we need to bump
(plus updating the |
dongsupark
force-pushed
the
update-h2-0.3.26
branch
from
April 5, 2024 09:44
2434cea
to
3d51995
Compare
@pothos CI passed. Thanks! |
I think we also should update the .toml files because the .lock file gets recreated, or? |
Clippy of Rust 1.77 or newer started checking out of bounds strictly, so clippy started failing with uuid 1.6 or older. Update clippy to the latest version to fix that. See also uuid-rs/uuid#721. Debugged-by @pothos.
dongsupark
force-pushed
the
update-h2-0.3.26
branch
from
April 5, 2024 10:11
3d51995
to
5452456
Compare
pothos
approved these changes
Apr 5, 2024
dongsupark
added a commit
to flatcar/scripts
that referenced
this pull request
Apr 12, 2024
Update to 9b6ddb0226208450bcef9da4ac5ba8bc2a47a87c (2024-04-05), mainly to address security issues in Rust crates. Pulls in: flatcar/ue-rs#51 flatcar/ue-rs#52 flatcar/ue-rs#53 flatcar/ue-rs#54
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update h2 to
0.3.26
, to address HTTP/2 CONTINUATION flood issues.Update related crates as well, reqwest to
0.11.26
, hyper to0.14.28
, which are only patchlevel updates.See also https://rustsec.org/advisories/RUSTSEC-2024-0332.html, https://nowotarski.info/http2-continuation-flood/, https://seanmonstar.com/blog/hyper-http2-continuation-flood/.