@launchdarkly/js-server-sdk-common
Advanced tools
Comparing version 2.1.3 to 2.2.0
@@ -5,2 +5,23 @@ # Changelog | ||
## [2.2.0](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-v2.1.3...js-server-sdk-common-v2.2.0) (2024-02-06) | ||
### Features | ||
* Implement common client side support for auto environment attributes. ([#356](https://github.com/launchdarkly/js-core/issues/356)) ([8d80259](https://github.com/launchdarkly/js-core/commit/8d80259f7379827e46bef8bcf8293e3b2d966d25)) | ||
* React-native support for auto-env attributes. Only affects react-native package. ([deea99c](https://github.com/launchdarkly/js-core/commit/deea99ca2fbb3865f2ce55a83b2cf12e0ae2db5e)) | ||
* Update eslint jest configuration and versions. ([deea99c](https://github.com/launchdarkly/js-core/commit/deea99ca2fbb3865f2ce55a83b2cf12e0ae2db5e)) | ||
### Bug Fixes | ||
* Add LDOptions.application name and versionName. ([#358](https://github.com/launchdarkly/js-core/issues/358)) ([cd75210](https://github.com/launchdarkly/js-core/commit/cd75210d20e3d989897ea42276792d934ac8c9c1)) | ||
### Dependencies | ||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @launchdarkly/js-sdk-common bumped from 2.1.1 to 2.2.0 | ||
## [2.1.3](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-v2.1.2...js-server-sdk-common-v2.1.3) (2024-01-16) | ||
@@ -7,0 +28,0 @@ |
@@ -192,2 +192,5 @@ import { LDClientContext, LDLogger, subsystem, VoidFunction } from '@launchdarkly/js-sdk-common'; | ||
* Information about the application where the LaunchDarkly SDK is running. | ||
* | ||
* Note that this config option may be renamed to applicationInfo in a future major version | ||
* to be consistent with other SDKs. | ||
*/ | ||
@@ -216,4 +219,18 @@ application?: { | ||
version?: string; | ||
/** | ||
* A human-friendly application name representing the application where the LaunchDarkly SDK is running. | ||
* | ||
* This can be specified as any string value as long as it only uses the following characters: ASCII letters, | ||
* ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored. | ||
*/ | ||
name?: string; | ||
/** | ||
* A human-friendly name representing the version of the application where the LaunchDarkly SDK is running. | ||
* | ||
* This can be specified as any string value as long as it only uses the following characters: ASCII letters, | ||
* ASCII digits, period, hyphen, underscore. A string containing any other characters will be ignored. | ||
*/ | ||
versionName?: string; | ||
}; | ||
} | ||
//# sourceMappingURL=LDOptions.d.ts.map |
{ | ||
"name": "@launchdarkly/js-server-sdk-common", | ||
"version": "2.1.3", | ||
"version": "2.2.0", | ||
"type": "commonjs", | ||
@@ -30,3 +30,3 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"@launchdarkly/js-sdk-common": "2.1.1", | ||
"@launchdarkly/js-sdk-common": "2.2.0", | ||
"semver": "7.5.4" | ||
@@ -39,4 +39,4 @@ }, | ||
"@types/semver": "^7.3.13", | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"@typescript-eslint/eslint-plugin": "^6.20.0", | ||
"@typescript-eslint/parser": "^6.20.0", | ||
"eslint": "^8.45.0", | ||
@@ -47,2 +47,3 @@ "eslint-config-airbnb-base": "^15.0.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-jest": "^27.6.3", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
@@ -49,0 +50,0 @@ "jest": "^29.5.0", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
589376
8289
20
+ Added@launchdarkly/js-sdk-common@2.2.0(transitive)
- Removed@launchdarkly/js-sdk-common@2.1.1(transitive)