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
11 changes: 11 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,14 @@
## 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
`WebSocketDeflateOptions` via `ClientWebSocketOptions.DangerousDeflateOptions`.
This can significantly reduce bandwidth for text-heavy (JSON) WebSocket APIs.
Warning: Do not use compression when sending data containing secrets
(CRIME/BREACH vulnerability).
See https://learn.microsoft.com/dotnet/api/system.net.websockets.clientwebsocketoptions.dangerousdeflateoptions
for details.


## 2.42.0
**`(feat):`** Add support for HTTP/2 WebSockets via `SocketsHttpHandler`. A new `HttpInvoker`
property on the WebSocket Options class allows passing an `HttpMessageInvoker` to
Expand Down
Loading