launchdarkly-js-sdk-common
Advanced tools
Comparing version 4.3.2 to 4.3.3
@@ -5,2 +5,9 @@ # Change log | ||
## [4.3.2] - 2022-10-20 | ||
### Added: | ||
- Implemented `jitter` and `backoff` for streaming connections. When a connection fails the retry will start at the `streamReconnectDelay` and will double on each unsuccessful consecutive connection attempt (`backoff`) to a max of 30 seconds. The delay will be adjusted from 50%-100% of the calculated delay to prevent many clients from attempting to reconnect at the same time (`jitter`). | ||
### Changed: | ||
- Removed usage of `flatMap`. (Thanks [@mateuszsikora](https://github.com/launchdarkly/js-sdk-common/pull/77)) | ||
## [4.3.1] - 2022-10-17 | ||
@@ -7,0 +14,0 @@ ### Fixed: |
{ | ||
"name": "launchdarkly-js-sdk-common", | ||
"version": "4.3.2", | ||
"version": "4.3.3", | ||
"description": "LaunchDarkly SDK for JavaScript - common code", | ||
@@ -5,0 +5,0 @@ "author": "LaunchDarkly <team@launchdarkly.com>", |
@@ -1,2 +0,2 @@ | ||
const { messages } = require('.'); | ||
const messages = require('./messages'); | ||
const SafeInspector = require('./SafeInspector'); | ||
@@ -3,0 +3,0 @@ const { onNextTick } = require('./utils'); |
@@ -1,2 +0,2 @@ | ||
const { messages } = require('.'); | ||
const messages = require('./messages'); | ||
@@ -3,0 +3,0 @@ /** |
Sorry, the diff of this file is not supported yet
400956