- Upgrade to embedded-io 0.7
- Upgrade to embedded-tls 0.18
- Add setter for accept header on request
- Add patch, options, connect and trace request methods
- Fix bug in reading chunked response
- Add embedded-tls certificate verification
- Add allow ip address as host
- Upgrade to embedded-nal-async 0.8
- Set MSRV
- Allow
request::Methodto 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
BufReadforBodyReader(#45) - Buffer writes automatically if
embedded-tlsis set up, regardless of the URL scheme (#43)