Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fern/products/sdks/overview/csharp/changelog/2026-03-20.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.49.0
**`(feat):`** Add per-send timeout to prevent `SendAsync` hangs. A new `SendTimeout` property
(default: 30 seconds) on `WebSocketConnection` wraps every `SendAsync` call with a
linked `CancellationTokenSource` that fires `CancelAfter(SendTimeout)`. When the
timeout elapses the connection is aborted and a `WebsocketException` is thrown,
preventing a single dead connection from blocking the send lock for up to 30 minutes.
See: https://github.com/dotnet/runtime/issues/125257


## 2.48.0
**`(feat):`** Add bounded send queue with message expiration to `WebSocketConnection`. The
unbounded `Channel<T>` queues are replaced with configurable bounded channels
Expand Down
Loading