Skip to content

Commit 6094728

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 1.6.0
1 parent 5148ab1 commit 6094728

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
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.6.0] - 2023-01-30
6+
### Added:
7+
- `application` option, for configuration of application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations.
8+
```
9+
ldclient:start_instance("sdk-key", #{
10+
application => #{
11+
id => <<"my-app-id">>,
12+
version => <<"my-app-version">>
13+
}
14+
})
15+
```
16+
- Added support for using server time, from response headers, when determining if debug events should be sent.
17+
18+
### Changed:
19+
- Updated jitter/backoff implementation to be consistent with other SDK implementations.
20+
- Upgraded `lru` to version `2.4.0`.
21+
- Upgrade `certifi` to version `2.10.0`.
22+
- Removed dependency on `backoff`.
23+
24+
### Fixed:
25+
- Fixed an issue where the SDK did not handle deleted flags/segments correctly in combination with evaluation of all flags.
26+
- Allow for track data to be `null`.
27+
528
## [1.5.0] - 2022-06-23
629
### Changed:
730
- Updated `certifi` to 2.9.0.

src/ldclient.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{application, ldclient,
22
[{description, "LaunchDarkly SDK for Erlang"},
33
{pkg_name, "launchdarkly_server_sdk"},
4-
{vsn, "1.5.0"},
4+
{vsn, "1.6.0"},
55
{registered, []},
66
{mod, {ldclient_app, []}},
77
{applications,

src/ldclient_config.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
-define(DEFAULT_POLLING_UPDATE_REQUESTOR, ldclient_update_requestor_httpc).
108108
-define(MINIMUM_POLLING_INTERVAL, 30).
109109
-define(USER_AGENT, "ErlangClient").
110-
-define(VERSION, "1.5.0").
110+
-define(VERSION, "1.6.0").
111111
-define(EVENT_SCHEMA, "3").
112112
-define(DEFAULT_OFFLINE, false).
113113
-define(DEFAULT_REDIS_HOST, "127.0.0.1").

0 commit comments

Comments
 (0)