Thanks to visit codestin.com
Credit goes to github.com

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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: svix/hyper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 16 commits
  • 14 files changed
  • 8 contributors

Commits on Jul 7, 2022

  1. fix(http1): fix http1_header_read_timeout to use same future (#2891)

    Co-authored-by: silence <[email protected]>
    (cherry picked from commit 5fa113e)
    2 people authored and seanmonstar committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    c5a14e7 View commit details
    Browse the repository at this point in the history
  2. chore(lib): bump MSRV to 1.56 (#2902)

    (cherry picked from commit a563404)
    seanmonstar committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    128bc7f View commit details
    Browse the repository at this point in the history
  3. v0.14.20

    seanmonstar committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    0ff6213 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. feat(server): add Server::tcp_keepalive_interval and `Server::tcp_k…

    …eepalive_retries` (#2991)
    
    If the platform supports setting the options, otherwise it's a noop.
    hansonchar authored Sep 23, 2022
    Configuration menu
    Copy the full SHA
    287d712 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. Configuration menu
    Copy the full SHA
    73dd474 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Configuration menu
    Copy the full SHA
    78e2c58 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9fa3638 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. v0.14.21

    seanmonstar committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    9ad4055 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e8765e0 View commit details
    Browse the repository at this point in the history
  3. v0.14.22

    seanmonstar committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    04d637e View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. fix(http2): Fix race condition in client dispatcher (#3041)

    There exists a race condition in ClientTask::poll() when the request
    that is sent via h2::client::send_request() is pending open. A task will
    be spawned to wait for send capacity on the sendstream. Because this
    same stream is also stored in the pending member of
    h2::client::SendRequest the next iteration of the poll() loop can call
    poll_ready() and call wait_send() on the same stream passed into the
    spawned task.
    
    Fix this by always calling poll_ready() after send_request(). If this
    call to poll_ready() returns Pending save the necessary context in
    ClientTask and only spawn the task that will eventually resolve to the
    response after poll_ready() returns Ok.
    
    Closes #2419
    jfourie1 authored Nov 7, 2022
    Configuration menu
    Copy the full SHA
    2f1c0b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4912c6d View commit details
    Browse the repository at this point in the history
  3. v0.14.23

    seanmonstar committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    d32beb3 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2022

  1. Allow special headers w/ arbitrary name casing (#1)

    Allows adding headers with arbitrary casing
    so that we can have headers that are all-caps,
    all upper-case, or whatever else we want.
    
    Co-authored-by: James Lucas <[email protected]>
    svix-james and jaymell authored Dec 1, 2022
    Configuration menu
    Copy the full SHA
    ac7f12a View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2022

  1. Make HeaderCaseMap public (#2)

    This allows case-sensitive headers to be added
    by simply adding a HeaderCaseMap-typed extension
    to the hyper Request object.
    
    Co-authored-by: James Lucas <[email protected]>
    svix-james and jaymell authored Dec 9, 2022
    Configuration menu
    Copy the full SHA
    5ef6b75 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2022

  1. Configuration menu
    Copy the full SHA
    b901ca7 View commit details
    Browse the repository at this point in the history
Loading