Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit e9cd457

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.6.0
1 parent 179a0d5 commit e9cd457

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

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

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

5+
## [2.6.0] - 2022-04-20
6+
### Added:
7+
- Added `integrations/test_data.h`. Test Data 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.
8+
9+
- Added `integrations/file_data.h`. File Data is a new way to inject feature flag data via an external resource.
10+
11+
### Fixed:
12+
- Fixed bug in `LDAllFlagsState` where invalid flags were included in the output.
13+
- Fixed `LDConfigSetSendEvents` to properly disable analytic events when set to false. As part of this change, public functions `LDClientTrack`, `LDClientTrackMetric`, `LDClientAlias`, and `LDClientIdentify` now return true when analytic events are disabled.
14+
- Fixed JSON serialization of time values to remove fractional millisecond component.
15+
516
## [2.5.0] - 2022-02-23
617
### Added:
718
- Added `LDVersion()`, equivalent to `LD_SDK_VERSION`. Useful when wrapping the SDK with a higher level language that cannot access the `LD_SDK_VERSION` symbol.

include/launchdarkly/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/** @brief The current SDK version string. This value adheres to semantic
99
* versioning and is included in the HTTP user agent sent to LaunchDarkly.
1010
*/
11-
#define LD_SDK_VERSION "2.5.0"
11+
#define LD_SDK_VERSION "2.6.0"
1212

1313
#ifdef __cplusplus
1414
extern "C" {

0 commit comments

Comments
 (0)