Skip to content

Releases: awslabs/aws-c-http

Make build friendly to in-source builds.

03 Jan 00:50
73782be

Choose a tag to compare

v0.4.20

enabled in-source builds. (#172)

Improved integration tests

18 Dec 20:40
386d741

Choose a tag to compare

Pre-release
CI wasn't running elasticurl tests. (#171)

Also suppress output unless test fails

Client bootstrap API changes

10 Dec 18:19
32f49a5

Choose a tag to compare

Pre-release

Adapt to API changes in aws-c-io v0.4.20

Fix shared lib builds

23 Nov 00:40
aa3f83c

Choose a tag to compare

Fix shared lib builds Pre-release
Pre-release
v0.4.17

Added missing dll exports. (#167)

Fix linker error with most recent aws-c-common

21 Nov 20:37

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

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

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

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

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

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.