Skip to content

Commit 0a52806

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 4.0.2
1 parent 1854450 commit 0a52806

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-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-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.2] - 2022-01-25
6+
### Removed:
7+
- Removed the `version` export which was originally a constant inserted by the Rollup build, but was no longer usable since Rollup is no longer being used. The SDKs never used this export, since they have `version` properties of their own; the version string of `launchdarkly-js-sdk-common` was never meant to be exposed to applications.
8+
59
## [4.0.1] - 2022-01-21
610
### Changed:
711
- This package is now published as a regular Node module. Previously, it was published as minified bundles created by Rollup. There was no need for this since Rollup is only needed for web code, and the `js-client-sdk` build already runs Rollup to embed the `js-sdk-common` code. Using Rollup caused the platform-dependent behavior of `uuid` to fail because the code for only one platform (browser or Node) was embedded.

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.2)",
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": "4.0.1",
3+
"version": "4.0.2",
44
"description": "LaunchDarkly SDK for JavaScript - common code",
55
"author": "LaunchDarkly <team@launchdarkly.com>",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)