This repository has been archived by the owner on May 30, 2024. It is now read-only.
4.0.0
[4.0.0] - 2021-07-22
Added:
- Added support for Big Segments. An Early Access Program for creating and syncing Big Segments from customer data platforms is available to enterprise customers.
Changed:
DynamoDBFeatureStore
is now a named export, not a default export. This breaking change was made because the package now has an additional named export (DynamoDBBigSegmentStore
). There are no other backward-incompatible changes in the package.
To update existing code for this version, change your imports like so:
// BEFORE:
// CommonJS style
const DynamoDBFeatureStore = require('launchdarkly-node-server-sdk-dynamodb');
// or ES6 style
import DynamoDBFeatureStore from 'launchdarkly-node-server-sdk-dynamodb';
// AFTER:
// CommonJS style
const { DynamoDBFeatureStore } = require('launchdarkly-node-server-sdk-dynamodb');
// or ES6 style
import { DynamoDBFeatureStore } from 'launchdarkly-node-server-sdk-dynamodb';