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

Commit 176b099

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 6.2.1
1 parent 73fa3b4 commit 176b099

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
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).
44

5+
## [6.2.1] - 2021-12-10
6+
### Fixed:
7+
- Replaced all uses of `for...in` for iterating over arrays and properties to use other constructs such as `for...of`. This makes the SDK more resilient in environments where application code or other libraries may have added new properties to the prototypes of standard JS types such as `Array`. (Thanks, [luke-schleicher](https://github.com/launchdarkly/node-server-sdk/pull/230)!)
8+
59
## [6.2.0] - 2021-07-22
610
### Added:
711
- The SDK now supports evaluation of Big Segments. An Early Access Program for creating and syncing Big Segments from customer data platforms is available to enterprise customers.

docs/typedoc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
out: '/tmp/project-releaser/project/docs/build/html',
3+
exclude: [
4+
'**/node_modules/**',
5+
'test-types.ts'
6+
],
7+
name: "LaunchDarkly Server-Side Node SDK (6.2.1)",
8+
readme: 'none', // don't add a home page with a copy of README.md
9+
entryPoints: "/tmp/project-releaser/project/index.d.ts"
10+
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-node-server-sdk",
3-
"version": "6.2.0",
3+
"version": "6.2.1",
44
"description": "LaunchDarkly Server-Side SDK for Node.js",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)