Skip to content

Commit a736e46

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 3.5.1
1 parent c2e5f5d commit a736e46

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
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+
## [3.5.1] - 2022-02-17
6+
### Fixed:
7+
- If the SDK receives invalid JSON data from a streaming connection (possibly as a result of the connection being cut off), it now uses its regular error-handling logic: the error is emitted as an `error` event or, if there are no `error` event listeners, it is logged. Previously, it would be thrown as an unhandled exception.
8+
59
## [3.5.0] - 2022-01-14
610
### Added:
711
- 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 (3.5.1)",
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-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "3.5.1",
44
"description": "LaunchDarkly SDK for JavaScript - common code",
55
"author": "LaunchDarkly <team@launchdarkly.com>",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)