- Upgrade to embedded-nal-async 0.8
- Set MSRV
- Allow
request::Method
to be copied and cloned
- Fix bug where buffering chunked body writer could return
Ok(0)
on calls towrite()
(#81) - Fix bug in buffering chunked body writer where a call to
write()
with a buffer length exactly matching the remaining size of the remainder of the current chunk causes the entire chunk to be discarded (#85)
- Fix bug when calling fill_buf() when there are no remaining bytes (#75)
- Handle no-content status code 204 (#76)
- Support accessing the response code as an integer (#70 / #73)
- Buffer writes before chunks are written to connection (#72)
- Fix regression introduced in v0.9.0 when reading chunked body where the final newline is not read (#58)
v0.9.0 (2023-10-30)
- bugfixes and enhancements
- bump version (c4efcb5)
- Implement
BufRead
forBodyReader
(#45) - Buffer writes automatically if
embedded-tls
is set up, regardless of the URL scheme (#43)