Skip to content

Releases: awslabs/aws-c-http

Fix linker error with most recent aws-c-common

21 Nov 20:37
Compare
Choose a tag to compare

aws_byte_buf_append_and_update is now implemented in common, so don't redefine it.

request with headers

20 Nov 01:01
c83309f
Compare
Choose a tag to compare
request with headers Pre-release
Pre-release
Don't fire on_body for empty chunks of data. (#163)

This was leading to the python crt passing None to the on_body callback instead of byte buffer. Seems simpler to nip this complexity at the source.

aws_http_headers

14 Nov 22:34
98edb2e
Compare
Choose a tag to compare
aws_http_headers Pre-release
Pre-release

Improved API for accessing headers.

Memory tracing updates

05 Nov 19:12
48ab1ba
Compare
Choose a tag to compare
Pre-release
v0.4.13

Fixed tests to match tracer API updates (#160)

Memory tracing updates

05 Nov 18:21
325481b
Compare
Choose a tag to compare
Pre-release
Reworked fuzzer to use mem tracer (#159)

* Rewrote fuzzer to use mem tracer

Respect Content-Length

01 Nov 22:21
722cc07
Compare
Choose a tag to compare
Pre-release
Content-Length is the boss (#158)

* Content-Length is the boss
- Don't freak out if body stream is set when Content-Length is 0.
  - aws-crt-java unit tests were doing this.
- Obey Content-Length when sending body, rather than trusting end-of-stream.

Connection: close header support

31 Oct 22:50
0d8d673
Compare
Choose a tag to compare
Pre-release
Respond to "Connection: close" header (#157)

Presence of request or response with "Connection: close" header will make that the final stream before the connection shuts down.

fix shared lib build, code clean up

29 Oct 23:02
79ecf04
Compare
Choose a tag to compare
Pre-release
Fixed missing exports of h1 connection. (#156)

* Fixed missing exports of h1 connection.

Fixed content-length=0 being treated as illegal for bodyless messages.

25 Oct 19:47
43154e0
Compare
Choose a tag to compare
v0.4.8

Fixed error condition for when content-length=0 is set on a response …

Integration tests support aws-crt-python

03 Oct 22:55
6a8a891
Compare
Choose a tag to compare
v0.4.7

changes to support testing aws-crt-python/elasticurl.py (#148)