Releases: launchdarkly/dotnet-eventsource
Releases · launchdarkly/dotnet-eventsource
Release list
v5.3.1
Immutable
release. Only release title and notes can be modified.
v5.3.0
v5.2.1
5.2.0
chore: Automatic update package version. Manual update to 5.2.0. (#108)
5.1.0
[5.1.0] - 2023-10-04
Changed:
- Update minimum
LaunchDarkly.Loggingversion to2.0.0to share the same min version as SDK implementations.
5.0.1
[5.0.1] - 2022-08-24
Changed:
- Relaxed dependency constraint to allow use of
LaunchDarkly.Logging1.x or 2.x.
5.0.0
[5.0.0] - 2022-08-18
Changed:
- Removed EOL target framework .NET Framework 4.5.2. Lowest compatible platform versions are now .NET Core 3.1, .NET Framework 4.6.2, .NET 6.0, and .NET Standard 2.0.
- EventSource now considers any server response with an encoding other than UTF-8 to be invalid. The Server-Sent Events specification states that event streams must always use UTF-8.
Removed:
ConfigurationBuilder.DefaultEncoding(no longer relevant since the encoding must be UTF-8).
4.2.0
[4.2.0] - 2022-04-19
Added:
ConfigurationBuilder.HttpRequestModifier, for making custom modifications to outgoing HTTP requests. (Thanks, acquleo!)
4.1.3
[4.1.3] - 2021-10-04
Changed:
- Updated
LaunchDarkly.Loggingdependency to 1.0.1, to match the version used in the latest server-side .NET SDK release. Since .NET Framework is stricter about dependency versions than .NET Core, it is desirable to keep transitive dependency versions in sync in all packages used by the SDK.
4.1.2
[4.1.2] - 2021-05-17
Fixed:
- Fixed a memory leak in which a
CancellationTokenSourceinstance was not disposed of after reading from the stream. This bug was introduced in the 4.0.0 release. (#77)