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: awslabs/aws-c-http
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.10
Choose a base ref
...
head repository: awslabs/aws-c-http
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 16 commits
  • 35 files changed
  • 10 contributors

Commits on Oct 10, 2024

  1. Copy the full SHA
    ffa6805 View commit details

Commits on Oct 23, 2024

  1. Update CMake to 3.9 (#489)

    Co-authored-by: Michael Graeb <[email protected]>
    waahm7 and graebm authored Oct 23, 2024
    Copy the full SHA
    74b3a0d View commit details

Commits on Oct 28, 2024

  1. Copy the full SHA
    9ff0d34 View commit details

Commits on Nov 7, 2024

  1. Add cxx support (#490)

    subdiox authored Nov 7, 2024
    Copy the full SHA
    f3eef14 View commit details

Commits on Nov 12, 2024

  1. Update for event loop API changes (#491)

    Co-authored-by: Bret Ambrose <[email protected]>
    bretambrose and Bret Ambrose authored Nov 12, 2024
    Copy the full SHA
    fc3eded View commit details

Commits on Dec 2, 2024

  1. Copy the full SHA
    9ad52cf View commit details

Commits on Dec 19, 2024

  1. Fix CI for GCC-13 on Ubuntu-18 (#496)

    Co-authored-by: Michael Graeb <[email protected]>
    waahm7 and graebm authored Dec 19, 2024
    Copy the full SHA
    f734bd6 View commit details

Commits on Jan 28, 2025

  1. A bunch of CMake fixes (#497)

    graebm authored Jan 28, 2025
    Copy the full SHA
    590c7b5 View commit details

Commits on Mar 7, 2025

  1. Some trivial fixup on tests (#503)

    - Remove the word "test" from any test name
    - Add the word "decoder" to decoder tests
    - Lots of fixup in h1_encoder tests:
        - Rename some tests to make more sense
        - Always assert that aws_h1_encoder_message_init_from_request() succeeds or fails. Previously a lot of tests weren't ACTUALLY testing anything!!! Fortunately no actual bugs were uncovered here.
        - Use the "bad request" helper in more places
        - Add "Host" header to all requests
    graebm authored Mar 7, 2025
    Copy the full SHA
    84e8b41 View commit details

Commits on Mar 10, 2025

  1. Move h1_stream variables, to make thread usage more explicit (#504)

    Some cleanup before embarking on major plumbing...
    
    While developing HTTP/1, we stumbled into the pattern of grouping variables under `thread_data` or `synced_data`, so it was more explicit how they should be accessed. But we never moved ALL the variables into the proper groups. We had a TODO about this. Now it is TODONE.
    
    Also: Fix some flaky integration tests by accepting any "2xx" status-code, not just literal "200. I observed these tests failing when they sometimes got 202, instead of 200: h2_sm_acquire_stream & h2_sm_acquire_stream_multiple_connections. But I applied the same fix to any other test I found that strictly checked for 200.
    graebm authored Mar 10, 2025
    Copy the full SHA
    23f62ee View commit details

Commits on Mar 11, 2025

  1. Copy the full SHA
    60c43f8 View commit details

Commits on Mar 14, 2025

  1. HTTP/1: Support streaming requests of unknown length (#506)

    **Issue:**
    
    aws-sdk-cpp needs to send streaming requests of unknown content length. This isn't currently supported in our HTTP/1 client. (our HTTP/2 client *does* already support this)
    
    **Background:**
    
    The HTTP/1 client already supported these use cases:
    - Send streaming request body, but declare Content-Length up front
    - Send chunked request body, but user must declare length of each chunk via `write_chunk()` API.
    
    But it wasn't possible to send a stream of unknown length without doing extra copies (read to intermediate buffer, then send that buffer via write_chunk() API).
    
    **Description of changes:**
    
    Support input streams of unknown length via chunked encoding.
    
    When reading from the stream, leave a bit of space at the start and end of the aws_io_message buffer for the chunk prefix and suffix. Then go back and write in the prefix and suffix afterwards. No unnecessary copies are involved.
    graebm authored Mar 14, 2025
    Copy the full SHA
    e3a9cab View commit details

Commits on Mar 27, 2025

  1. Copy the full SHA
    34d4582 View commit details
  2. h1_decoder error on multiple content-length headers (#509)

    Co-authored-by: Michael Graeb <[email protected]>
    quinnj and graebm authored Mar 27, 2025
    Copy the full SHA
    2fa08d5 View commit details

Commits on Mar 28, 2025

  1. Apple Network Framework Support (#502)

    Co-authored-by: Michael Graeb <[email protected]>
    xiazhvera and graebm authored Mar 28, 2025
    Copy the full SHA
    e526ac3 View commit details

Commits on Apr 1, 2025

  1. Copy the full SHA
    ef78cb8 View commit details
Loading