Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hyperium/hyper-util
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.10
Choose a base ref
...
head repository: hyperium/hyper-util
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.11
Choose a head ref
  • 17 commits
  • 15 files changed
  • 12 contributors

Commits on Oct 30, 2024

  1. Copy the full SHA
    753aab2 View commit details

Commits on Nov 16, 2024

  1. chore(ci): Use hashbrown 0.15.0 in MSRV check (#158)

    * chore(ci): Use hashbrown 0.15.0 in MSRV check
    
    * chore(ci): Use stable rust to resolve dependency
    tottoto authored Nov 16, 2024
    Copy the full SHA
    8af8591 View commit details
  2. Copy the full SHA
    7a39c88 View commit details

Commits on Dec 6, 2024

  1. refactor: remove legacy::client workaround for fixed race condition i…

    …n mpsc channel (#159)
    
    Co-authored-by: JESS IZEN <jlizen@amazon.com>
    jlizen and JESS IZEN authored Dec 6, 2024
    Copy the full SHA
    dce81a0 View commit details

Commits on Dec 31, 2024

  1. Copy the full SHA
    5f055e3 View commit details

Commits on Jan 28, 2025

  1. Copy the full SHA
    0c402d8 View commit details
  2. Copy the full SHA
    26e1e15 View commit details

Commits on Jan 30, 2025

  1. feat(server): support auto_date_header, `max_local_error_reset_stre…

    …ams`, and `ignore_invalid_headers`. (#161)
    finnbear authored Jan 30, 2025
    Copy the full SHA
    46826ea View commit details

Commits on Feb 19, 2025

  1. Copy the full SHA
    b90ff7d View commit details

Commits on Feb 20, 2025

  1. chore(tokio): warn on dead code (#168)

    there is a module-wide allowance for dead code that seems to be a
    holdover from when this was initially being written.
    
    removing this does not unearth any warnings, and ideally any future
    additions can be explicitly, and more narrowly, annotated accordingly if
    need be.
    
    Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
    cratelyn authored Feb 20, 2025
    Copy the full SHA
    1290685 View commit details

Commits on Feb 21, 2025

  1. chore(client/legacy): remove unused PoolClient::is_closed() (#169)

    this function is not used, and a warning is observed when this crate is
    built with e.g. `--all-features`.
    
    this commit removes this unused method from the `PoolClient<B>` type.
    
    Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
    cratelyn authored Feb 21, 2025
    Copy the full SHA
    d51318d View commit details

Commits on Mar 21, 2025

  1. Copy the full SHA
    ef35d8a View commit details
  2. feat(rt/tokio): additive tokio and hyper i/o adaptors (#170)

    this commit introduces two new i/o adaptors, akin to
    `rt::tokio::TokioIo<I>`.
    
    see this small program demonstrating the motivation for this:
    
    ```rust
     #![allow(unreachable_code, unused_variables, dead_code)]
    
     use {
         hyper::rt::{Read, Write},
         hyper_util::rt::TokioIo,
         tokio::io::{AsyncRead, AsyncWrite},
         tokio::net::TcpStream,
     };
    
     fn is_tokio_io<I>(_: &I)
     where
         I: AsyncRead + AsyncWrite,
     {
     }
    
     fn is_hyper_io<I>(_: &I)
     where
         I: Read + Write,
     {
     }
    
     fn check_io_impls() {
         // `I: AsyncRead + AsyncWrite` does not implement hyper's `Read` and `Write`.
         let stream: TcpStream = todo!();
         is_tokio_io(&stream);
         // is_hyper_io(&stream); does not compile
    
         // `TokioIo<I: AsyncRead + AsyncWrite>` does not implement `tokio::io` traits.
         let stream: TokioIo<TcpStream> = TokioIo::new(stream);
         // is_tokio_io(&stream); does not compile
         is_hyper_io(&stream);
    
         // `TokioIo<TokioIo<I: AsyncRead + AsyncWrite>>` does not implement hyper's `Read` and `Write`.
         let stream: TokioIo<TokioIo<TcpStream>> = TokioIo::new(stream);
         is_tokio_io(&stream);
         // is_hyper_io(&stream); does not compile
     }
    
     fn main() {}
    ```
    
    `TokioIo<I>` is not an adaptor that is additive with respect to its
    inner i/o transport. if it implements hyper's i/o, the wrapped type will
    implement tokio's _at the expense of hyper's_, and vice versa.
    
    this is often fine for simple programs, but this "switching" approach
    can interfere with larger applications' ability to make use of
    middleware that is generic across different kinds of i/o streams.
    
    this commit introduces types that allow a caller to _add_ `Read` or
    `Write` implementations to tokio readers and writers, or inversely,
    `AsyncRead` and `AsyncWrite` implementations to hyper readers and
    writers.
    
    Signed-off-by: katelyn martin <me+cratelyn@katelyn.world>
    cratelyn authored Mar 21, 2025
    Copy the full SHA
    94afd50 View commit details

Commits on Mar 31, 2025

  1. Copy the full SHA
    dc03ad4 View commit details
  2. Copy the full SHA
    5831ace View commit details
  3. bump license year

    seanmonstar committed Mar 31, 2025
    Copy the full SHA
    486e3b6 View commit details
  4. v0.1.11

    seanmonstar committed Mar 31, 2025
    Copy the full SHA
    4c4e062 View commit details
Loading