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

Commit 65e94e0

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 5.14.6
1 parent bca5511 commit 65e94e0

File tree

4 files changed

+6874
-1
lines changed

4 files changed

+6874
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
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+
## [5.14.6] - 2022-03-28
6+
This release contains no changes to SDK functionality. It differs from 5.14.5 only in that the NPM lockfile `package-lock.json` has been removed from source control (a change that was already made in 6.x, but had not been backported to the 5.x maintenance branch util now).
7+
8+
The lockfile does not affect the dependencies that are loaded when an application uses the SDK, because NPM only pays attention to the lockfile of the root project (the application). Running a security scan on the `node-server-sdk` project produced false results, since the scanner would look at the dependency versions that _were_ current at the time the lockfile was generated-- not the versions that would now be used if an application installed the SDK.
9+
510
## [5.14.5] - 2021-06-10
611
### Fixed:
712
- Updated transitive dependency on the package `url-parse` due to a [vulnerability warning](https://github.com/advisories/GHSA-9m6j-fcg5-2442).

docs/typedoc.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 (5.14.6)",
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+
entryPointStrategy: "expand"
11+
};

0 commit comments

Comments
 (0)