Conversation
- Fix redirect policy race condition by applying policy on cloned client instead of shared client, avoiding RwLock contention across await points - Remove redundant #[inline(always)] from get_runtime helper - Replace manual temp file cleanup with RAII TempFile helper in tests
- stream::set_reset: add missing notify_send() call - streams::recv_go_away: filter by stream initiator - streams: release connection flow control on DATA after GOAWAY - recv::poll_informational: guard against returning final responses - prioritize: discard buffered DATA when scheduled reset pending - send: return Pending instead of Ready(Ok(0)) when capacity exhausted - streams: reject frames on idle streams per RFC 9113 - share: document poll_capacity always returns n > 0
- dispatch: add SenderDropGuard to prevent silent data loss on mid-body drop - dispatch: fix missed write wakeup that could deadlock H1 dispatch - h2/mod: fix H2 capacity reservation deadlock on multiplexed streams - body/incoming: handle NO_ERROR in poll_trailers for early responses - decode: fix 32-bit overflow in large body size calculations
- redirect: add scheme check to remove_sensitive_headers (security fix, prevents credential leakage on https->http same-host:port redirects) - response: include URL context in JSON decode error messages - dns/hickory: use get_or_try_init to propagate DNS init errors instead of panicking; fall back to Google DNS when system config unavailable
- Replace custom poll_fn polyfill with std::future::poll_fn - Replace futures_core::ready with std::task::ready - Delete common/future.rs and its module declaration - Remove futures-core dependency, update system-configuration to >=0.7 - Move domain_as_uri inside closure to fix use-after-move in connect_to - Add RPITIT precise capturing bounds (use<C, B>) - Replace futures_util::pin_mut with std::pin::pin! - Bump hyper 1.8->1.9, tighten socket2 range to 0.6 - Move tokio/net feature from client to client-legacy - Add tokio/sync to client-pool feature
This file contains hidden or 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
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.
Backport upstream fixes from hyperium/h2, hyperium/hyper, seanmonstar/reqwest,
and hyperium/hyper-util, plus a primp-python redirect race fix.
primp-python
instead of shared client (avoid RwLock contention across await)
#[inline(always)]from get_runtime helperprimp-h2 (based on upstream v0.4.14)
primp-hyper (based on upstream v1.9.0)
primp-reqwest (based on upstream v0.13.3)
primp-hyper-util (based on upstream v0.1.20)