diff --git a/CHANGELOG.md b/CHANGELOG.md index bda9ccc..f8ff8a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to the LaunchDarkly Erlang/Elixir SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [1.0.0-beta1] - 2020-02-12 + +### Added + +- Added offline mode which stops the SDK making remote calls to LaunchDarkly and variation calls will then fall back to default values for your feature flags. You can do this by setting offline mode in the config map with the `offline` key. + +- Added ETag polling cache for If-None-Match on update requests. + +- The SDK now specifies a uniquely identifiable request header when sending events to LaunchDarkly to ensure that events are only processed once, even if the SDK sends them two times due to a failed initial attempt. + +- Added an initialized function which indicates whether the SDK is in offline mode or if the update processor has been initialized. + +### Changed + +- Return last variation when user bucket exceeds variation weight sum. + +- Client now checks initialization status when evaluating a variation or all flags. + ## [1.0.0-alpha4] - 2019-12-19 ### Added diff --git a/src/eld.app.src b/src/eld.app.src index 3bc1e49..f63492e 100644 --- a/src/eld.app.src +++ b/src/eld.app.src @@ -1,6 +1,6 @@ {application, eld, [{description, "LaunchDarkly Erlang SDK"}, - {vsn, "1.0.0-alpha4"}, + {vsn, "1.0.0-beta1"}, {registered, []}, {mod, {eld_app, []}}, {applications, diff --git a/src/eld_settings.erl b/src/eld_settings.erl index e6b1378..ab4fe2f 100644 --- a/src/eld_settings.erl +++ b/src/eld_settings.erl @@ -56,7 +56,7 @@ -define(DEFAULT_POLLING_UPDATE_REQUESTOR, eld_update_requestor_httpc). -define(MINIMUM_POLLING_INTERVAL, 30). -define(USER_AGENT, "ErlangClient"). --define(VERSION, "1.0.0-alpha4"). +-define(VERSION, "1.0.0-beta1"). -define(EVENT_SCHEMA, "3"). -define(DEFAULT_OFFLINE, false).