Skip to content

Releases: tpeczek/Lib.AspNetCore.ServerSentEvents

Lib.AspNetCore.ServerSentEvents 9.0.0

25 Dec 13:55
Compare
Choose a tag to compare

Additions and Changes

  • IServerSentEventsClient.Disconnect has been replaced by IServerSentEventsClient.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

13 Oct 20:20
Compare
Choose a tag to compare

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

25 Sep 20:47
Compare
Choose a tag to compare

Additions and Changes

  • Added support for scenario when multiple types are provided as Accept header value (thanks to @krebil)
  • Added support for wildcard (*/* and text/*) mime types (thanks to @krebil)

Lib.AspNetCore.ServerSentEvents 8.2.0

31 Oct 20:49
Compare
Choose a tag to compare

Additions and Changes

Lib.AspNetCore.ServerSentEvents 8.1.0

28 Feb 20:45
Compare
Choose a tag to compare

Additions and Changes

  • Removed upper bounds on some of the .NET Framework dependencies versions

Lib.AspNetCore.ServerSentEvents 8.0.0

05 Feb 15:34
Compare
Choose a tag to compare

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

09 Nov 20:31
Compare
Choose a tag to compare

Additions and Changes

Bug Fixes

  • Fixed race condition in groups management. This has caused method signature change (IServerSentEventsService.AddToGroupAsync to IServerSentEventsService.AddToGroup)

Full Changelog: v6.0.0...v7.0.0

Lib.AspNetCore.ServerSentEvents 6.0.0

17 Nov 18:14
Compare
Choose a tag to compare

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

11 Jul 19:23
Compare
Choose a tag to compare

Additions and Changes

  • Exposed way to provide ReconnectInterval through ServerSentEventsServiceOptions

Lib.AspNetCore.ServerSentEvents 5.0.0

01 May 19:41
Compare
Choose a tag to compare

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.