Socket
Socket
Sign inDemoInstall

@launchdarkly/node-server-sdk

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@launchdarkly/node-server-sdk - npm Package Compare versions

Comparing version 8.2.5 to 8.2.6

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [8.2.6](https://github.com/launchdarkly/js-core/compare/node-server-sdk-v8.2.5...node-server-sdk-v8.2.6) (2024-05-21)
### Bug Fixes
* Configure max backoff and jitter ratio to ensure exponential backoff. ([#464](https://github.com/launchdarkly/js-core/issues/464)) ([87563cb](https://github.com/launchdarkly/js-core/commit/87563cb516c42da921f8a52790b935d672c5107c))
## [8.2.5](https://github.com/launchdarkly/js-core/compare/node-server-sdk-v8.2.4...node-server-sdk-v8.2.5) (2024-02-12)

@@ -7,0 +14,0 @@

2

dist/package.json
{
"name": "@launchdarkly/node-server-sdk",
"version": "8.2.5",
"version": "8.2.6",
"description": "LaunchDarkly Server-Side SDK for Node.js",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/server-node",

@@ -33,3 +33,3 @@ /// <reference types="node" />

eventNames(): (string | symbol)[];
emitter: EventEmitter;
emitter: EventEmitter<[never]>;
};

@@ -36,0 +36,0 @@ } & typeof BigSegmentStoreStatusProviderNode;

@@ -30,5 +30,5 @@ /// <reference types="node" />

eventNames(): (string | symbol)[];
emitter: EventEmitter;
emitter: EventEmitter<[never]>;
};
} & TBase;
//# sourceMappingURL=Emits.d.ts.map

@@ -30,3 +30,3 @@ /// <reference types="node" />

eventNames(): (string | symbol)[];
emitter: EventEmitter;
emitter: EventEmitter<[never]>;
};

@@ -33,0 +33,0 @@ } & typeof LDClientNode;

@@ -97,3 +97,3 @@ "use strict";

createEventSource(url, eventSourceInitDict) {
const expandedOptions = Object.assign(Object.assign({}, eventSourceInitDict), { agent: this.agent, tlsParams: this.tlsOptions });
const expandedOptions = Object.assign(Object.assign({}, eventSourceInitDict), { agent: this.agent, tlsParams: this.tlsOptions, maxBackoffMillis: 30 * 1000, jitterRatio: 0.5 });
return new launchdarkly_eventsource_1.EventSource(url, expandedOptions);

@@ -100,0 +100,0 @@ }

{
"name": "@launchdarkly/node-server-sdk",
"version": "8.2.5",
"version": "8.2.6",
"description": "LaunchDarkly Server-Side SDK for Node.js",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/server-node",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc