From 4b339e5da8906f247c631d94b999c0cebadac016 Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Thu, 18 Aug 2022 19:57:16 +0000 Subject: [PATCH] Releasing version 5.0.0 --- CHANGELOG.md | 8 ++++++++ .../LaunchDarkly.EventSource.csproj | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a4ec36..d8db5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the LaunchDarkly's EventSource implementation for C# will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [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] - 2022-04-19 ### Added: - `ConfigurationBuilder. HttpRequestModifier`, for making custom modifications to outgoing HTTP requests. (Thanks, [acquleo](https://github.com/launchdarkly/dotnet-eventsource/pull/85)!) diff --git a/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj b/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj index 5485832..206edf7 100644 --- a/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj +++ b/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj @@ -1,6 +1,6 @@  - 4.2.0 + 5.0.0 netstandard2.0;net462 Apache-2.0 LaunchDarkly.EventSource