@splitsoftware/splitio 10.19.0 → 10.19.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGES.txt
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
11.0.0 (May 27, 2022)
|
|
2
|
+
- BREAKING CHANGE: NodeJS >= v12.0.0 is required.
|
|
3
|
+
- Updated EventSource dependency for vulnerability fixes (Related to issues https://github.com/splitio/javascript-client/issues/665 and https://github.com/splitio/javascript-client/issues/677).
|
|
4
|
+
|
|
1
5
|
10.19.0 (May 24, 2022)
|
|
2
6
|
- Added `scheduler.telemetryRefreshRate` property to SDK configuration, and deprecated `scheduler.metricsRefreshRate` property.
|
|
3
7
|
- Updated SDK telemetry storage, metrics and updater to be more effective and send less often.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.19.0';
|
|
1
|
+
export var packageVersion = '10.19.1-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.19.0",
|
|
3
|
+
"version": "10.19.1-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -28,8 +28,7 @@
|
|
|
28
28
|
"module": "es/index.js",
|
|
29
29
|
"types": "types",
|
|
30
30
|
"engines": {
|
|
31
|
-
"
|
|
32
|
-
"node": ">=6"
|
|
31
|
+
"node": ">= 12.0.0"
|
|
33
32
|
},
|
|
34
33
|
"dependencies": {
|
|
35
34
|
"@splitsoftware/splitio-commons": "1.4.0",
|
|
@@ -41,7 +40,7 @@
|
|
|
41
40
|
"unfetch": "^4.2.0"
|
|
42
41
|
},
|
|
43
42
|
"optionalDependencies": {
|
|
44
|
-
"eventsource": "^
|
|
43
|
+
"eventsource": "^2.0.2"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
46
|
"@types/node-fetch": "^2.5.12",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.19.0';
|
|
1
|
+
export const packageVersion = '10.19.1-rc.0';
|