This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
6.0.0-rc.3
Pre-release
Pre-release
[6.0.0-rc.3] - 2021-06-07
Other than the fix described below, this release candidate is identical to rc.2
.
Fixed:
- On platforms that do not support
System.Text.Json
, such as .NET Framework 4.5.2, the SDK's implementation of JSON parsing was rejecting feature flag data (or any other SDK type that you asked to parse from JSON) if it contained a numeric value that had an exponent but no decimal point. For instance,1e8
(as opposed to1.0e8
) was incorrectly treated as a syntax error. It now accepts numbers in any of the formats that are valid in JSON.