From fdcb3bcf73b4f08355a8cb517d7cb4b3bf3609e4 Mon Sep 17 00:00:00 2001 From: fern-support <126544928+fern-support@users.noreply.github.com> Date: Fri, 20 Mar 2026 04:37:05 +0000 Subject: [PATCH] update changelogs --- .../sdks/overview/csharp/changelog/2026-03-20.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx b/fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx index 28121997f9..83b7992f09 100644 --- a/fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx +++ b/fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx @@ -1,3 +1,13 @@ +## 2.44.0 +**`(feat):`** Add queued sending via `Channel` to the WebSocket connection layer. Two +unbounded channels (text and binary) are drained by dedicated background tasks +started alongside the connection. The non-blocking `Send(string)` and `Send(byte[])` +methods return `bool` indicating whether the message was queued, while the existing +`SendInstant` async-per-send path remains unchanged. Queues are completed in `Dispose` +before cancellation tokens are signalled. Drain loop errors are surfaced through the +`ExceptionOccurred` event. + + ## 2.43.0 **`(feat):`** Add per-message deflate compression support (RFC 7692) for WebSocket connections. A new `EnableCompression` option on the generated WebSocket Options class enables