Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 3.13 KB

CHANGELOG.md

File metadata and controls

68 lines (48 loc) · 3.13 KB

Changelog

Unreleased

v0.12.1 (2024-07-01)

Fixes

  • Fix bug where buffering chunked body writer could return Ok(0) on calls to write() (#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)

v0.12 (2024-05-23)

Fixes

  • Fix bug when calling fill_buf() when there are no remaining bytes (#75)
  • Handle no-content status code 204 (#76)

Features

  • Support accessing the response code as an integer (#70 / #73)
  • Buffer writes before chunks are written to connection (#72)

Fixes

v0.9.1 (2023-11-04)

  • 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)

Fixes

  • bugfixes and enhancements
  • bump version (c4efcb5)
  • Implement BufRead for BodyReader (#45)
  • Buffer writes automatically if embedded-tls is set up, regardless of the URL scheme (#43)

v0.8.0 (2023-10-05)

Features

  • headers: Add keep-alive header parsing in response (fa25d98)
  • use nourl crate (238c811)
  • enable TLS PSK support and explicit verification (982a381)
  • use async fn in traits (ed6e718)
  • mutation of rx payload (c97ac9c)
  • tls support (12b1dd7)
  • embedded-nal-async http client (7d82b43)

Fixes

  • keep-alive: Fix error for keep-alive header (ed29d57)
  • add split read and write bufs (6df94c9)
  • pass the &mut slice back (3269515)
  • use version with defmt support (84f4cb6)