Skip to content

1.23.2

Choose a tag to compare

@joamag joamag released this 13 Feb 23:05
· 21 commits to master since this release
485615e

Added

  • POST, PUT and DELETE integration tests for ReverseProxyIntegrationTest verifying request body forwarding through the proxy

Fixed

  • Proxy POST/PUT body data silently dropped when backend connection not yet established - StreamProtocol.send() now buffers data via _delay_send() instead of returning 0 when transport is None
  • HTTPClientProtocol.connection_made() now flushes buffered data after sending request headers, ensuring proxy-forwarded body chunks reach the backend
  • DatagramProtocol.send_to() aligned with StreamProtocol.send() guards - added is_closed_or_closing() and missing transport checks for consistency