Skip to content

Commit fec9934

Browse files
authored
feat: Rename allFlags to 'Generate bootstrap details' and add storing data features (#328)
1 parent e2a9d2f commit fec9934

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

schemas/sdk_metadata.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ INSERT INTO sdk_feature_info (id, name, description) VALUES
116116
('contexts', 'Contexts and context kinds', 'Evaluate flags based on contexts. A context is a generalized way of referring to the people, services, machines, or other resources that encounter feature flags. SDKs without this feature only support flag evaluation for users.'),
117117
('experimentation', 'Experimentation', 'Connect a flag with one or more metrics to measure end-user behavior for different variations of a flag. Requires minimum SDK versions, but no SDK configuration.'),
118118
('variationDetail', 'Flag evaluation reasons', 'Receive information about how a flag variation was calculated, for example, because it matched a specific targeting rule.'),
119-
('allFlags', 'Getting all flags', 'Return the flag variations for all feature flags for a given context.'),
119+
('allFlags', 'Generate bootstrap details', 'Return the flag variations for all feature flags for a given context.'),
120120
('hooks', 'Hooks', 'Define callbacks that are executed by the SDK at various points of interest, usually for metrics or tracing.'),
121121
('migrations', 'Migration flags', 'Configure how to read and write data for an old and new system, determine which stage of a migration the application is in, execute the correct read and write calls for each stage.'),
122122
('multiEnv', 'Multiple environments', 'Evaluate flags from multiple environments using a single client instance'),
@@ -129,6 +129,9 @@ INSERT INTO sdk_feature_info (id, name, description) VALUES
129129
('secureMode', 'Secure mode', 'For clent-side SDKs, require a hash, signed with the SDK key for the LaunchDarkly environment, to evaluate flag variations. For server-side or edge SDKs, generate a secure mode hash.'),
130130
('track', 'Sending custom events', 'Record actions taken in your application as events. You can connect to these events to metrics for use in experiments.'),
131131
('storingData', 'Storing data', 'Configure an external database as a feature store. Persist flag data across application restarts.'),
132+
('storingDataConsul', 'Storing data (Consul)', 'Configure Consul as a feature store. Persist flag data across application restarts.'),
133+
('storingDataDynamodb', 'Storing data (DynamoDB)', 'Configure DynamoDB as a feature store. Persist flag data across application restarts.'),
134+
('storingDataRedis', 'Storing data (Redis)', 'Configure Redis as a feature store. Persist flag data across application restarts.'),
132135
('flagChanges', 'Subscribing to flag changes', 'Use a listener pattern to subscribe to flag change notifications.'),
133136
('testDataSource', 'Test data sources', 'Mock data of an SDK. Useful for unit tests; cannot be used in production.'),
134137
('webProxy', 'Web proxy configuration', 'Configure the SDK to connect to LaunchDarkly through a web proxy.'),

0 commit comments

Comments
 (0)