From b569deb994a23f1aa231b44c6c7f3b589f9724e5 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 22 Jun 2026 11:17:46 -0400 Subject: [PATCH] Fix response never arriving after sending a large request Updates courier to 0.3.1, which fixes a connection that could stop receiving the server's response after a large request, leaving the request to hang. --- .release-notes/fix-silent-connection-after-large-request.md | 3 +++ corral.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .release-notes/fix-silent-connection-after-large-request.md diff --git a/.release-notes/fix-silent-connection-after-large-request.md b/.release-notes/fix-silent-connection-after-large-request.md new file mode 100644 index 0000000..09919f1 --- /dev/null +++ b/.release-notes/fix-silent-connection-after-large-request.md @@ -0,0 +1,3 @@ +## Fix response never arriving after sending a large request + +After sending a large request, a connection could stop receiving the server's response — the response would never arrive and the request would hang indefinitely. No error was raised and the connection was not closed; it simply went quiet, even though the server had already replied. This most often showed up on connections that pushed a large request body, such as uploads. Responses now arrive as expected. diff --git a/corral.json b/corral.json index c8e95bb..63ff299 100644 --- a/corral.json +++ b/corral.json @@ -10,7 +10,7 @@ }, { "locator": "github.com/ponylang/courier.git", - "version": "0.3.0" + "version": "0.3.1" }, { "locator": "github.com/ponylang/uri.git",