@splitsoftware/splitio 10.23.2-rc.0 → 10.23.2-rc.1
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
|
+
10.24.0 (October XX, 2023)
|
|
2
|
+
- Added `defaultTreatment` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager (Related to issue https://github.com/splitio/javascript-commons/issues/225).
|
|
3
|
+
- Updated @splitsoftware/splitio-commons package to version 1.10.0 that includes vulnerability fixes, and adds the `defaultTreatment` property to the `SplitView` object.
|
|
4
|
+
|
|
1
5
|
10.23.1 (September 22, 2023)
|
|
2
6
|
- Updated @splitsoftware/splitio-commons package to version 1.9.1. This update removes the handler for 'unload' DOM events, that can prevent browsers from being able to put pages in the back/forward cache for faster back and forward loads (Related to issue https://github.com/splitio/javascript-client/issues/759).
|
|
3
7
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.23.2-rc.
|
|
1
|
+
export var packageVersion = '10.23.2-rc.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.23.2-rc.
|
|
3
|
+
"version": "10.23.2-rc.1",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"node": ">=6"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@splitsoftware/splitio-commons": "1.
|
|
43
|
+
"@splitsoftware/splitio-commons": "1.10.1-rc.0",
|
|
44
44
|
"@types/google.analytics": "0.0.40",
|
|
45
45
|
"@types/ioredis": "^4.28.0",
|
|
46
46
|
"bloom-filters": "^3.0.0",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"check:version": "cross-env NODE_ENV=test tape -r ./ts-node.register src/settings/__tests__/defaults.spec.js",
|
|
101
101
|
"test-browser": "npm run test-browser-unit && npm run test-browser-e2e",
|
|
102
102
|
"test-browser-unit": "cross-env NODE_ENV=test karma start karma/unit.karma.conf.js",
|
|
103
|
-
"test-browser-e2e": "npm run test-browser-e2e-online && npm run test-browser-e2e-offline && npm run test-browser-e2e-destroy && npm run test-browser-e2e-errorCatching && npm run test-browser-e2e-push
|
|
103
|
+
"test-browser-e2e": "npm run test-browser-e2e-online && npm run test-browser-e2e-offline && npm run test-browser-e2e-destroy && npm run test-browser-e2e-errorCatching && npm run test-browser-e2e-push",
|
|
104
104
|
"test-browser-e2e-online": "cross-env NODE_ENV=test karma start karma/e2e.online.karma.conf.js",
|
|
105
105
|
"test-browser-e2e-offline": "cross-env NODE_ENV=test karma start karma/e2e.offline.karma.conf.js",
|
|
106
106
|
"test-browser-e2e-destroy": "cross-env NODE_ENV=test karma start karma/e2e.destroy.karma.conf.js",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.23.2-rc.
|
|
1
|
+
export const packageVersion = '10.23.2-rc.1';
|
package/types/splitio.d.ts
CHANGED
|
@@ -663,7 +663,12 @@ declare namespace SplitIO {
|
|
|
663
663
|
*/
|
|
664
664
|
configs: {
|
|
665
665
|
[treatmentName: string]: string
|
|
666
|
-
}
|
|
666
|
+
},
|
|
667
|
+
/**
|
|
668
|
+
* The default treatment of the feature flag.
|
|
669
|
+
* @property {string} defaultTreatment
|
|
670
|
+
*/
|
|
671
|
+
defaultTreatment: string,
|
|
667
672
|
};
|
|
668
673
|
/**
|
|
669
674
|
* A promise that resolves to a feature flag view.
|