Skip to content

0.8.3

Latest

Choose a tag to compare

@ponylang-main ponylang-main released this 22 Jun 15:09
· 2 commits to main since this release

Fix server going silent after sending a large response

After sending a large response, your server could stop handling further requests on that connection — additional requests on a keep-alive connection would never reach your handlers. No error was raised and the connection was not closed; it simply went quiet, even though the client was still sending. This most often showed up when sending or streaming large responses. Incoming requests are now handled as expected.

[0.8.3] - 2026-06-22

Fixed

  • Fix server going silent after sending a large response (PR #106)