This repository has been archived by the owner on Oct 11, 2019. It is now read-only.
3.0.0
[3.0.0] - 2018-02-19
Added
- Support for a new LaunchDarkly feature: reusable user segments.
- The mechanism by which the client retrieves feature and segment data from the server is now customizable through an interface,
UpdateProcessor
. This will be used in future to support test fixtures.
Changed
- The
FeatureStore
interface has been changed to support user segment data as well as feature flags. Existing code that usesInMemoryFeatureStore
orRedisFeatureStore
should work as before, but custom feature store implementations will need to be updated. - Logging is now done through an interface,
Logger
, instead of directly referencinglog.Logger
. Existing code that useslog.Logger
should still work as before.