This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
5.2.0
[5.2.0] - 2018-07-27
Added:
- New configuration property
UseLdd
allows the client to use the "LaunchDarkly Daemon", i.e. getting feature flag data from a store that is updated by anld-relay
instance. However, this will not be usable until the Redis feature store integration is released (soon).
Changed:
- If you attempt to evaluate a flag before the client has established a connection, but you are using a feature store that has already been populated, the client will now use the last known values from the store instead of returning default values.
- The
LaunchDarkly.Common
package, which is used byLaunchDarkly.Client
, has been renamed toLaunchDarkly.Common.StrongName
. Note that you should not have to explicitly install this package; it will be imported automatically.
Fixed:
- The SDK was referencing several system assemblies via
<PackageReference>
, which could cause dependency conflicts. These have been changed to framework<Reference>
s. A redundant reference toSystem.Runtime
was removed. (#83) - The client was logging (at debug level) a lengthy exception stacktrace whenever a string comparison operator was applied to a user property that was null. It no longer does this.