Skip to content

Commit 05a82f9

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 4.0.0
1 parent b9b5ac0 commit 05a82f9

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

CHANGELOG.md

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

33
All notable changes to the `launchdarkly-js-sdk-common` package will be documented in this file. Changes that affect the dependent SDKs such as `launchdarkly-js-client-sdk` should also be logged in those projects, in the next release that uses the updated version of this package. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [4.0.0] - 2022-01-14
6+
### Changed:
7+
- Updated `uuid` package to 8.x.
8+
- In TypeScript, the property `LDEvaluationDetail.reason` is now nullable, which correctly reflects the fact that evaluation reasons may not always be available.
9+
10+
### Removed:
11+
- Removed the type `NonNullableLDEvaluationReason`, which was a side effect of the `LDEvaluationDetail.reason` being incorrectly defined before.
12+
- Removed all types, properties, and functions that were deprecated as of the last 3.x release.
13+
514
## [3.5.0] - 2022-01-14
615
### Added:
716
- New configurable logger factory `commonBasicLogger` and `BasicLoggerOptions`. The `commonBasicLogger` method is not intended to be exported directly in the SDKs, but wrapped to provide platform-specific behavior.

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 Javascript SDK Core Components (4.0.0)",
8+
readme: 'none', // don't add a home page with a copy of README.md
9+
entryPoints: "/tmp/project-releaser/project/typings.d.ts",
10+
entryPointStrategy: "expand"
11+
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "launchdarkly-js-sdk-common",
3-
"version": "3.5.0",
3+
"version": "4.0.0",
44
"description": "LaunchDarkly SDK for JavaScript - common code",
55
"author": "LaunchDarkly <team@launchdarkly.com>",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)