@splitsoftware/splitio 11.7.2-rc.0 → 11.7.2-rc.2
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,8 +1,6 @@
|
|
|
1
|
-
11.8.0 (October
|
|
2
|
-
-
|
|
3
|
-
|
|
4
|
-
11.7.1 (October 8, 2025)
|
|
5
|
-
- Bugfix - Updated @splitsoftware/splitio-commons package to version 2.7.1, which fixes the `debug` option to support log levels when the `logger` option is used.
|
|
1
|
+
11.8.0 (October 24, 2025)
|
|
2
|
+
- Added new configuration for Fallback Treatments, which allows setting a treatment value and optional config to be returned in place of "control", either globally or by flag. Read more in our docs.
|
|
3
|
+
- Updated @splitsoftware/splitio-commons package to version 2.8.0.
|
|
6
4
|
|
|
7
5
|
11.7.0 (October 7, 2025)
|
|
8
6
|
- Added support for custom loggers: added `logger` configuration option and `factory.Logger.setLogger` method to allow the SDK to use a custom logger.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '11.7.2-rc.
|
|
1
|
+
export var packageVersion = '11.7.2-rc.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "11.7.2-rc.
|
|
3
|
+
"version": "11.7.2-rc.2",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"node": ">=14.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@splitsoftware/splitio-commons": "2.7.
|
|
41
|
+
"@splitsoftware/splitio-commons": "2.7.9-rc.0",
|
|
42
42
|
"bloom-filters": "^3.0.4",
|
|
43
43
|
"ioredis": "^4.28.0",
|
|
44
44
|
"js-yaml": "^3.13.1",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"test-node": "npm run test-node-unit && npm run test-node-e2e",
|
|
103
103
|
"test-node-unit": "cross-env NODE_ENV=test tape -r ./ts-node.register \"src/*/**/__tests__/**/!(browser).spec.js\" | tap-min",
|
|
104
104
|
"test-node-e2e": "npm run test-node-e2e-online && npm run test-node-e2e-offline && npm run test-node-e2e-destroy && npm run test-node-e2e-errorCatching && npm run test-node-e2e-push && npm run test-node-e2e-redis",
|
|
105
|
-
"test-node-e2e-online": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/online/node.spec.js",
|
|
105
|
+
"test-node-e2e-online": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/online/node.spec.js | tap-min",
|
|
106
106
|
"test-node-e2e-offline": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/offline/node.spec.js | tap-min",
|
|
107
107
|
"test-node-e2e-destroy": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/destroy/node.spec.js | tap-min",
|
|
108
108
|
"test-node-e2e-errorCatching": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/errorCatching/node.spec.js | tap-min",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '11.7.2-rc.
|
|
1
|
+
export const packageVersion = '11.7.2-rc.2';
|