Skip to content

Releases: tpeczek/Lib.AspNetCore.ServerSentEvents

Lib.AspNetCore.ServerSentEvents 5.0.0

01 May 19:41

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.

Lib.AspNetCore.ServerSentEvents 4.0.0

23 Sep 20:22

Choose a tag to compare

Additions and Changes

  • Dropped support for obsolete APIs
  • Dropped support for ASP.NET Core 2.0.0 (the lowest supported version is now ASP.NET Core 2.1.0)
  • Added support for ASP.NET Core 3.0.0
  • Added support for Endpoint Routing

Lib.AspNetCore.ServerSentEvents 3.3.0

29 Aug 20:49

Choose a tag to compare

Additions and Changes

  • Added method for getting clients in a specified group.
  • Added SendEventAsync overload which takes a predicate against IServerSentEventsClient as a parameter.

Lib.AspNetCore.ServerSentEvents 3.2.0

30 Jul 20:53

Choose a tag to compare

Additions and Changes

  • Exposed way to provide actions for ClientConnected and ClientDisconnected events through ServerSentEventsServiceOptions.
  • Added method for adding to a group.
  • Added methods for sending to a group.

Lib.AspNetCore.ServerSentEvents 3.1.0

10 Jan 19:17

Choose a tag to compare

Additions and Changes

  • Added support for authorization.
  • Added support for setting HTTP response headers for accept response.

Lib.AspNetCore.ServerSentEvents 3.0.0

24 Oct 16:04

Choose a tag to compare

Additions and Changes

  • Added support for client connected and disconnected events.
  • Improved support for CancellationToken in asynchronous operations.
  • Hot synchronous path performance improvements.

Lib.AspNetCore.ServerSentEvents 2.0.0

30 Jul 11:37

Choose a tag to compare

Additions and Changes

  • Upgraded to .NET Standard 2.0 and ASP.NET Core 2.0.
  • Added generic versions of UseServerSentEvents and MapServerSentEvents.
  • Marked obsolete versions of UseServerSentEvents and MapServerSentEvents which take instance of ServerSentEventsService as parameter.
  • Added support for keepalives

Lib.AspNetCore.ServerSentEvents 1.3.0

16 Apr 19:19

Choose a tag to compare

Additions and Changes

  • General performance improvements

Lib.AspNetCore.ServerSentEvents 1.2.0

30 Oct 17:53

Choose a tag to compare

Additions and Changes

  • SendEventAsync performance improvements.
  • ChangeReconnectIntervalAsync performance improvements.

Lib.AspNetCore.ServerSentEvents 1.1.1

09 Oct 19:43

Choose a tag to compare

Bug Fixes

  • Fix for IIS (and potentially other reverse proxies) adding uncontrolled response compression.

Additions and Changes

  • Performance improvements.