chore: Update sdk_metadata features#509
Draft
devin-ai-integration[bot] wants to merge 3 commits intomainfrom
Draft
chore: Update sdk_metadata features#509devin-ai-integration[bot] wants to merge 3 commits intomainfrom
devin-ai-integration[bot] wants to merge 3 commits intomainfrom
Conversation
Co-Authored-By: Aaron Zeisler <azeisler@launchdarkly.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Aaron Zeisler <azeisler@launchdarkly.com>
Member
|
For support before client-side 3.x check this repository: https://github.com/launchdarkly/c-client-sdk Use its git commit history and changelogs for those repositories. |
- offlineMode: 3.0 -> 1.0 (existed in legacy c-client-sdk from initial release) - variationDetail: 1.0 -> 1.1 (added in c-client-sdk 1.1.0) Co-Authored-By: Aaron Zeisler <azeisler@launchdarkly.com>
Contributor
Author
|
@kinyoklion Thanks for the pointer! I cloned both legacy repos and cross-referenced their CHANGELOGs against the features in this PR. Here's what I found and changed: Corrections made (client SDK):
Server SDK — all versions verified correct:
Other notes:
|
kinyoklion
approved these changes
Mar 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
featuresmetadata to.sdk_metadata.jsonfor both the C++ Client SDK and C++ Server SDK. Feature names use canonical camelCase keys fromsdk-meta/products/feature_info.json, and introduction versions are sourced from the SDK features documentation table and verified against the repo's CHANGELOGs where applicable.For features that predate the cpp-sdks monorepo (3.x), introduction versions were cross-referenced against the legacy c-client-sdk and c-server-sdk CHANGELOGs.
C++ Client SDK (12 features): allFlags, appMetadata, bigSegments, contexts, experimentation, flagChanges, inlineContextCustomEvents, offlineMode, privateAttrs, relayProxyProxy, track, variationDetail
C++ Server SDK (16 features): allFlags, appMetadata, contexts, experimentation, fileDataSource, hooks, inlineContextCustomEvents, offlineMode, privateAttrs, relayProxyDaemon, relayProxyProxy, storingData, storingDataRedis, testDataSource, track, variationDetail
Updates since last revision
Added features (verified against repo CHANGELOGs):
hooksadded to server SDK at3.10— confirmed vialibs/server-sdk/CHANGELOG.mdentry "Add support for hooks" under## [3.10.0]offlineModeadded to client SDK at1.0— see version correction belowVersion corrections based on legacy c-client-sdk analysis (per reviewer feedback to check pre-3.x repos):
offlineMode(client SDK):3.0→1.0— offline mode existed in the legacy c-client-sdk from its initial release. The cpp-sdks monorepo re-added it in prerelease0.2.0, but since the feature was available in the SDK lineage since1.0, that version is used.variationDetail(client SDK):1.0→1.1— the legacy c-client-sdk explicitly added evaluation reasons /VariationDetailin version 1.1.0.Legacy repo analysis notes:
multiEnvwas present in c-client-sdk 1.2.0 but does not appear to be supported in the current cpp-sdks client SDK (no matching code found), so it was not added.Review & Testing Checklist for Human
variationDetail: "1.1"for client SDK vs"1.0"for server SDK — the asymmetry is because c-client-sdk explicitly added evaluation reasons in 1.1.0, while the c-server-sdk appears to have had it from 1.0.0. Confirm this is correct, or whether both should be the same.offlineMode: "1.0"for client SDK — changed from"3.0"based on legacy c-client-sdk analysis. Confirm using the legacy version (rather than the cpp-sdks monorepo version) is the desired convention.bigSegments: "1.0"for client SDK — the docs say "All" (meaning all versions)."1.0"was used as the first stable release version. The earliest git tag islaunchdarkly-cpp-client-v0.0.0, so confirm"1.0"is the correct first stable version.storingDataandstoringDataRedisboth at"1.2"— the docs say "1.2 (Redis)" for C++ server storing data. Verify Redis was the only store supported and that"1.2"is correct for both.pluginSupport,omitAnonContexts, andpollingResponseCompressionare not included. Verify none of these have been added in recent releases.Notes