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

Commit 8acace3

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 4.0.0
1 parent 267069a commit 8acace3

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
All notable changes to the LaunchDarkly Node.js SDK DynamoDB integration will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [4.0.0] - 2021-07-22
6+
### Added:
7+
- Added support for Big Segments. An Early Access Program for creating and syncing Big Segments from customer data platforms is available to enterprise customers.
8+
9+
### Changed:
10+
- `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.
11+
12+
To update existing code for this version, change your imports like so:
13+
14+
```js
15+
// BEFORE:
16+
// CommonJS style
17+
const DynamoDBFeatureStore = require('launchdarkly-node-server-sdk-dynamodb');
18+
// or ES6 style
19+
import DynamoDBFeatureStore from 'launchdarkly-node-server-sdk-dynamodb';
20+
21+
// AFTER:
22+
// CommonJS style
23+
const { DynamoDBFeatureStore } = require('launchdarkly-node-server-sdk-dynamodb');
24+
// or ES6 style
25+
import { DynamoDBFeatureStore } from 'launchdarkly-node-server-sdk-dynamodb';
26+
```
27+
528
## [3.0.0] - 2021-06-17
629
The 3.0.0 release of `launchdarkly-node-server-sdk-dynamodb` is for use with version 6.x of the LaunchDarkly server-side SDK for Node.js. It has the same functionality as the previous major version, but its dependencies, Node version compatibility, and internal API have been updated to match the 6.0.0 release of the SDK.
730

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-node-server-sdk-dynamodb",
3-
"version": "4.0.0-alpha.1",
3+
"version": "4.0.0",
44
"description": "DynamoDB-backed feature store for the LaunchDarkly Node.js SDK",
55
"main": "index.js",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)