Skip to content

Commit 5bc3efa

Browse files
committed
Release 1.0.0-beta1
1 parent b5e65fc commit 5bc3efa

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to the LaunchDarkly Erlang/Elixir SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [1.0.0-beta1] - 2020-02-12
6+
7+
### Added
8+
9+
- 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.
10+
11+
- Added ETag polling cache for If-None-Match on update requests.
12+
13+
- 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.
14+
15+
- Added an initialized function which indicates whether the SDK is in offline mode or if the update processor has been initialized.
16+
17+
### Changed
18+
19+
- Return last variation when user bucket exceeds variation weight sum.
20+
21+
- Client now checks initialization status when evaluating a variation or all flags.
22+
523
## [1.0.0-alpha4] - 2019-12-19
624

725
### Added

src/eld.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, eld,
22
[{description, "LaunchDarkly Erlang SDK"},
3-
{vsn, "1.0.0-alpha4"},
3+
{vsn, "1.0.0-beta1"},
44
{registered, []},
55
{mod, {eld_app, []}},
66
{applications,

src/eld_settings.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
-define(DEFAULT_POLLING_UPDATE_REQUESTOR, eld_update_requestor_httpc).
5757
-define(MINIMUM_POLLING_INTERVAL, 30).
5858
-define(USER_AGENT, "ErlangClient").
59-
-define(VERSION, "1.0.0-alpha4").
59+
-define(VERSION, "1.0.0-beta1").
6060
-define(EVENT_SCHEMA, "3").
6161
-define(DEFAULT_OFFLINE, false).
6262

0 commit comments

Comments
 (0)