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

Commit def0361

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 4.1.0
1 parent 5d24367 commit def0361

15 files changed

+2594
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.1.0] - 2022-12-07
6+
### Added:
7+
- Added support for `launchdarkly-node-server-sdk` `7.0.0` and greater.
8+
59
## [4.0.1] - 2022-04-06
610
### Fixed:
711
- If the SDK attempts to store a feature flag or segment whose total data size is over the 400KB limit for DynamoDB items, this integration will now log (at `error` level) a message like `The item "my-flag-key" in "features" was too large to store in DynamoDB and was dropped` but will still process all other data updates. Previously, it would cause the SDK to enter an error state in which the oversized item would be pointlessly retried and other updates might be lost. ([#25](https://github.com/launchdarkly/node-server-sdk-dynamodb/issues/25))

docs/build/html/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/build/html/assets/highlight.css

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
:root {
2+
--light-code-background: #F5F5F5;
3+
--dark-code-background: #1E1E1E;
4+
}
5+
6+
@media (prefers-color-scheme: light) { :root {
7+
--code-background: var(--light-code-background);
8+
} }
9+
10+
@media (prefers-color-scheme: dark) { :root {
11+
--code-background: var(--dark-code-background);
12+
} }
13+
14+
body.light {
15+
--code-background: var(--light-code-background);
16+
}
17+
18+
body.dark {
19+
--code-background: var(--dark-code-background);
20+
}
21+
22+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)