Skip to content

Releases: launchdarkly/erlang-server-sdk

2.1.0

01 Aug 22:05
Compare
Choose a tag to compare

[2.1.0] - 2023-08-01

Added:

  • A new configuration option, redis_tls, for configuring TLS settings for redis. When this option is omitted Redis will not use TLS. When specified it should contain a list of ssl:tls_option(). These options will be forwarded to eredis.

2.0.5

12 Jun 16:27
Compare
Choose a tag to compare

[2.0.5] - 2023-06-12

Changed:

  • Upgraded yamerl to version 0.10.0.

2.0.4

05 Jun 16:05
Compare
Choose a tag to compare

[2.0.4] - 2023-06-05

Fixed:

  • Remove error log message associated with debugging redis initialization state.

2.0.3

30 May 17:30
Compare
Choose a tag to compare

[2.0.3] - 2023-05-30

Fixed:

  • Add missing boolean() type to the ldclient_context:attribute_value() definition.

2.0.2

26 May 18:59
Compare
Choose a tag to compare

[2.0.2] - 2023-05-26

Fixed:

  • Fixed an issue that would prevent using values from redis for variation or all_flags_state calls before client initialization was complete. After this change if the erlang SDK is using an initialized redis prefix, then it will be able to evaluate against that store before initialization is complete. Note that the SDK did not previously store the $inited key used when detecting that a store is initialized, so the store will need updated by this SDK version (or newer) at least once before it would be considered initialized.

2.0.1

04 May 20:52
Compare
Choose a tag to compare

[2.0.1] - 2023-05-04

Fixed:

  • Fixed an issue where invalid contexts would generate events resulting in a crash in the event server.

2.0.0

22 Feb 23:30
Compare
Choose a tag to compare

[2.0.0] - 2023-02-22

The latest version of this SDK supports LaunchDarkly's new custom contexts feature. Contexts are an evolution of a previously-existing concept, "users." Contexts let you create targeting rules for feature flags based on a variety of different information, including attributes pertaining to users, organizations, devices, and more. You can even combine contexts to create "multi-contexts."

This feature is only available to members of LaunchDarkly's Early Access Program (EAP). If you're in the EAP, you can use contexts by updating your SDK to the latest version and, if applicable, updating your Relay Proxy. Outdated SDK versions do not support contexts, and will cause unpredictable flag evaluation behavior.

If you are not in the EAP, only use single contexts of kind "user", or continue to use the user type if available. If you try to create contexts, the context will be sent to LaunchDarkly, but any data not related to the user object will be ignored.

For detailed information about this version, please refer to the list below. For information on how to upgrade from the previous version, please read the migration guide.

Added:

  • Added a new module, ldclient_context, which defines the new "context" model.
  • All SDK methods that took an ldclient_user:user() now accept an ldclient_context:context() as well.
  • Added ldclient_flagbuilder:if_match/4, ldclient_flagbuilder:if_not_match/4, ldclient_flagbuilder:and_match/4, and ldclient_flagbuilder:and_not_match/4 which allow creating rules targeting specific context kinds using ldclient_testdata.

Changed (breaking changes from 1.x):

  • The secondary meta-attribute, which previously affected percentage rollouts, no longer exists. If you set an attribute with that name in ldclient_context:context(), it will simply be a custom attribute like any other.
  • Evaluations now treat the anonymous attribute as a simple boolean, with no distinction between a false state and an undefined state.
  • The binary() values in private_attributes in the configuration map now represent attribute references. If an attribute name had started with a /, then that will need to be escaped. For instance /myAttribute would now reference an attribute named myAttribute not an attribute named /myAttribute. The attribute reference would need to be updated to the escaped form /~1myAttribute.
  • ldclient_flagbuilder:variation_for_all_users has been replaced with ldclient_flagbuilder:variation_for_all and now applies to contexts.
  • ldclient_flagbuilder:variation_for_user has been replaced with ldclient_flagbuilder:variation_for_context and requires a context kind to be provided.
  • user_keys_capacity has been replaced with context_keys_capacity in the option configuration map.

Changed (behavioral changes):

  • The SDK can now evaluate segments that have rules referencing other segments.
  • Analytics event data now uses a new JSON schema due to differences between the context model and the old user model.

Removed:

  • Removed the secondary meta-attribute in ldclient_user:user().
  • The ldclient:alias method no longer exists because alias events are not needed in the new context model.
  • The inline_users_in_events option no longer exists because it is not relevant in the new context model.

1.6.0

30 Jan 23:00
Compare
Choose a tag to compare

[1.6.0] - 2023-01-30

Added:

  • 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.
ldclient:start_instance("sdk-key", #{
  application => #{
    id => <<"my-app-id">>,
    version => <<"my-app-version">>
  }
})
  • Added support for using server time, from response headers, when determining if debug events should be sent.

Changed:

  • Updated jitter/backoff implementation to be consistent with other SDK implementations.
  • Upgraded lru to version 2.4.0.
  • Upgrade certifi to version 2.10.0.
  • Removed dependency on backoff.

Fixed:

  • Fixed an issue where the SDK did not handle deleted flags/segments correctly in combination with evaluation of all flags.
  • Allow for track data to be null.

1.5.0

23 Jun 16:32
Compare
Choose a tag to compare

[1.5.0] - 2022-06-23

Changed:

  • Updated certifi to 2.9.0.
  • Updated shotgun to 0.5.3. This should obviate the need to override shotgun in mix.exs for Elixir projects.

Fixed:

  • Updated URI parsing to work with OTP 25. Removing the usage of http_uri:parse and replacing it with uri_string:parse.

1.4.0

20 Apr 22:53
Compare
Choose a tag to compare

[1.4.0] - 2022-04-20

Added:

  • ldclient:all_flags_state/3 to be used instead of ldclient:all_flags_state/1 or /2 if you are passing flag data to the front end for use with the JavaScript SDK. It preserves some flag metadata that the front end requires in order to send analytics events correctly. It does NOT yet support selecting client-side-enabled flags.
  • ldclient_testdata is a new way to inject feature flag data programmatically into the SDK for testing—either with fixed values for each flag, or with targets and/or rules that can return different values for different users. Unlike the file data source, this mechanism does not use any external resources, only the data that your test code has provided.
  • Support for the SDK test harness.

Fixed:

  • An issue with handling firstName and lastName in rules. The SDK uses first_name and last_name atoms for these fields and there was an issue with when the attribute names were converted. Now name conversion for attributes are done after evaluation and processing of private attributes.
  • ldclient:track and ldclient:tack_metric will not allow for types other than map() to be used for data.
  • The SDK was sending identify events for users with an empty key when it should not.
  • The SDK would send duplicate events for a user which had been identified and then was noticed by a feature evaluation. Now the event will be de-duplicated correctly within the LRU cache timeout.
  • Rule matches against dates in the user object, which could not be parsed, would cause evaluation to fail and return the default value. Now they will correctly result in the rule not matching instead.
  • The configuration was not trimming trailing / from URLs.

Changed:

  • Event fields which contained false or null will not generally be omitted from events for compactness.
  • Clarifications to documentation.