-
Notifications
You must be signed in to change notification settings - Fork 42
Comparing changes
Open a pull request
base repository: awslabs/aws-c-http
base: v0.8.10
head repository: awslabs/aws-c-http
compare: main
- 16 commits
- 35 files changed
- 10 contributors
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ffa6805 - Browse repository at this point
Copy the full SHA ffa6805View commit details
Commits on Oct 23, 2024
-
Co-authored-by: Michael Graeb <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 74b3a0d - Browse repository at this point
Copy the full SHA 74b3a0dView commit details
Commits on Oct 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9ff0d34 - Browse repository at this point
Copy the full SHA 9ff0d34View commit details
Commits on Nov 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f3eef14 - Browse repository at this point
Copy the full SHA f3eef14View commit details
Commits on Nov 12, 2024
-
Update for event loop API changes (#491)
Co-authored-by: Bret Ambrose <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fc3eded - Browse repository at this point
Copy the full SHA fc3ededView commit details
Commits on Dec 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9ad52cf - Browse repository at this point
Copy the full SHA 9ad52cfView commit details
Commits on Dec 19, 2024
-
Fix CI for GCC-13 on Ubuntu-18 (#496)
Co-authored-by: Michael Graeb <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f734bd6 - Browse repository at this point
Copy the full SHA f734bd6View commit details
Commits on Jan 28, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 590c7b5 - Browse repository at this point
Copy the full SHA 590c7b5View commit details
Commits on Mar 7, 2025
-
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
Configuration menu - View commit details
-
Copy full SHA for 84e8b41 - Browse repository at this point
Copy the full SHA 84e8b41View commit details
Commits on Mar 10, 2025
-
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.
Configuration menu - View commit details
-
Copy full SHA for 23f62ee - Browse repository at this point
Copy the full SHA 23f62eeView commit details
Commits on Mar 11, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 60c43f8 - Browse repository at this point
Copy the full SHA 60c43f8View commit details
Commits on Mar 14, 2025
-
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.
Configuration menu - View commit details
-
Copy full SHA for e3a9cab - Browse repository at this point
Copy the full SHA e3a9cabView commit details
Commits on Mar 27, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 34d4582 - Browse repository at this point
Copy the full SHA 34d4582View commit details -
h1_decoder error on multiple content-length headers (#509)
Co-authored-by: Michael Graeb <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2fa08d5 - Browse repository at this point
Copy the full SHA 2fa08d5View commit details
Commits on Mar 28, 2025
-
Apple Network Framework Support (#502)
Co-authored-by: Michael Graeb <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e526ac3 - Browse repository at this point
Copy the full SHA e526ac3View commit details
Commits on Apr 1, 2025
-
Configuration menu - View commit details
-
Copy full SHA for ef78cb8 - Browse repository at this point
Copy the full SHA ef78cb8View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.8.10...main