@splitsoftware/splitio 11.10.1-rc.0 → 11.11.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,5 +1,8 @@
|
|
|
1
|
+
11.11.0 (February 24, 2026)
|
|
2
|
+
- Updated @splitsoftware/splitio-commons package to version 2.12.0, which supports both ioredis v4 and v5 as transitive dependency.
|
|
3
|
+
|
|
1
4
|
11.10.1 (February 3, 2026)
|
|
2
|
-
- Updated js-yaml dependency for vulnerability fixes.
|
|
5
|
+
- Updated js-yaml dependency for vulnerability fixes (Related to issue https://github.com/splitio/javascript-client/issues/913).
|
|
3
6
|
|
|
4
7
|
11.10.0 (January 28, 2026)
|
|
5
8
|
- Updated @splitsoftware/splitio-commons package to version 2.11.0, which:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '11.
|
|
1
|
+
export var packageVersion = '11.11.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.11.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"node": ">=14.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@splitsoftware/splitio-commons": "2.
|
|
41
|
+
"@splitsoftware/splitio-commons": "2.12.0",
|
|
42
42
|
"bloom-filters": "^3.0.4",
|
|
43
|
-
"ioredis": "^4.28.0",
|
|
43
|
+
"ioredis": "^4.28.0 || ^5.0.0",
|
|
44
44
|
"js-yaml": "^4.1.1",
|
|
45
45
|
"node-fetch": "^2.7.0",
|
|
46
46
|
"tslib": "^2.3.1",
|
|
@@ -107,7 +107,10 @@
|
|
|
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",
|
|
109
109
|
"test-node-e2e-push": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/push/node.spec.js | tap-min",
|
|
110
|
-
"test-node-e2e-redis": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/consumer/node_redis.spec.js | tap-min",
|
|
110
|
+
"test-node-e2e-redis-run": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/consumer/node_redis.spec.js | tap-min",
|
|
111
|
+
"test-node-e2e-redis": "npm run test-node-e2e-redis:v4 && npm run test-node-e2e-redis:v5",
|
|
112
|
+
"test-node-e2e-redis:v4": "npm install ioredis@4 --no-save && node -e \"console.log('\\n>> Testing with ioredis', require('./node_modules/ioredis/package.json').version, '\\n')\"&& npm run test-node-e2e-redis-run",
|
|
113
|
+
"test-node-e2e-redis:v5": "npm install ioredis@5 --no-save && node -e \"console.log('\\n>> Testing with ioredis', require('./node_modules/ioredis/package.json').version, '\\n')\"&& npm run test-node-e2e-redis-run",
|
|
111
114
|
"test-ts-decls": "tsc --build ts-tests",
|
|
112
115
|
"test": "npm run test-node && npm run test-browser",
|
|
113
116
|
"all": "npm run check && npm run build && npm run test-ts-decls && npm run test",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '11.
|
|
1
|
+
export const packageVersion = '11.11.0';
|