Releases: tpeczek/Lib.AspNetCore.ServerSentEvents
Releases · tpeczek/Lib.AspNetCore.ServerSentEvents
Lib.AspNetCore.ServerSentEvents 9.0.0
Additions and Changes
IServerSentEventsClient.Disconnect
has been replaced byIServerSentEventsClient.DisconnectAsync
, which will attempt to gracefully complete the underlying HTTP response when disconnecting a client- Dropped support for .NET Core 3.1 and .NET 5
Lib.AspNetCore.ServerSentEvents 8.3.1
Bug Fixes
- Fix for scenario when reconnect interval happens to be shorter than connection timeout, which results in client being prevented from reconnecting.
Lib.AspNetCore.ServerSentEvents 8.3.0
Lib.AspNetCore.ServerSentEvents 8.2.0
Additions and Changes
- Added options for controlling the format of keepalives.
- Added options for controlling the
Accept
request header validation.
Lib.AspNetCore.ServerSentEvents 8.1.0
Additions and Changes
- Removed upper bounds on some of the .NET Framework dependencies versions
Lib.AspNetCore.ServerSentEvents 8.0.0
Additions and Changes
- Dropped support for ASP.NET Core 2.1.0 (the lowest supported version is now ASP.NET Core 3.1.0)
- Added support for ASP.NET Core 6
Lib.AspNetCore.ServerSentEvents 7.0.0
Additions and Changes
- Added support for disconnecting clients. You can read more here: Server-Sent Events and ASP.NET Core - Disconnecting a Client
Bug Fixes
- Fixed race condition in groups management. This has caused method signature change (
IServerSentEventsService.AddToGroupAsync
toIServerSentEventsService.AddToGroup
)
Full Changelog: v6.0.0...v7.0.0
Lib.AspNetCore.ServerSentEvents 6.0.0
Additions and Changes
- Changed support for ASP.NET Core 3.0.0 to ASP.NET Core 3.1.0
- Added support for ASP.NET Core in .NET 5
Lib.AspNetCore.ServerSentEvents 5.1.0
Additions and Changes
- Exposed way to provide ReconnectInterval through ServerSentEventsServiceOptions
Lib.AspNetCore.ServerSentEvents 5.0.0
Additions and Changes
- Changed the collection of key/value pairs to store additional information for clients to thread safe methods (thank you @sebastiano1972)
Bug Fixes
- Fixed Accept request header validation so request without it are processed.
- Fixed ClientConnected and ClientDisconnected events not firing for custom ServerSentEventsService implementations.