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

Commit

Permalink
merge from public after release
Browse files Browse the repository at this point in the history
  • Loading branch information
LaunchDarklyCI committed Dec 11, 2019
2 parents 1f75d71 + 77c4660 commit f866ab4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to the LaunchDarkly Server-Side SDK for Node.js will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [5.10.0] - 2019-12-11
### Added:
- `RedisFeatureStore` now accepts an optional `client` parameter, if you have an existing `RedisClient` instance that you want to reuse.

### Changed:
- The SDK now logs a warning if any configuration property has an inappropriate type, such as `baseUri:3` or `offline:"yes"`. For boolean properties, the SDK will still interpret the value in terms of truthiness, which was the previous behavior. For all other types, since there's no such commonly accepted way to coerce the type, it will fall back to the default setting for that property; previously, the behavior was undefined but most such mistakes would have caused the SDK to throw an exception at some later point.


## [5.9.2] - 2019-10-23
### Changed:
- Event listeners for `update` events were receiving an entire flag configuration object as an argument. This was not useful for applications (since the SDK does not provide any way to use such an object directly), and was unsafe since the object was shared with internal code and was mutable. The argument for `update` events is now an object with only one property, `key` (the flag key).
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launchdarkly-node-server-sdk",
"version": "5.9.2",
"version": "5.10.0",
"description": "LaunchDarkly Server-Side SDK for Node.js",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f866ab4

Please sign in to comment.