@splitsoftware/splitio 11.11.1-rc.0 → 11.11.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,6 +1,8 @@
|
|
|
1
|
-
11.11.
|
|
2
|
-
- Updated
|
|
3
|
-
|
|
1
|
+
11.11.1 (March 18, 2026)
|
|
2
|
+
- Updated TypeScript declaration to use `namespace` instead of `module` for compatibility with TypeScript 7 (Related to issue https://github.com/splitio/javascript-client/issues/920).
|
|
3
|
+
|
|
4
|
+
11.11.0 (February 24, 2026)
|
|
5
|
+
- Updated @splitsoftware/splitio-commons package to version 2.12.0, which supports both ioredis v4 and v5 as transitive dependency.
|
|
4
6
|
|
|
5
7
|
11.10.1 (February 3, 2026)
|
|
6
8
|
- Updated js-yaml dependency for vulnerability fixes (Related to issue https://github.com/splitio/javascript-client/issues/913).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '11.11.1
|
|
1
|
+
export var packageVersion = '11.11.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "11.11.1
|
|
3
|
+
"version": "11.11.1",
|
|
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.
|
|
41
|
+
"@splitsoftware/splitio-commons": "2.12.0",
|
|
42
42
|
"bloom-filters": "^3.0.4",
|
|
43
43
|
"ioredis": "^4.28.0 || ^5.0.0",
|
|
44
44
|
"js-yaml": "^4.1.1",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"karma-tap": "^4.2.0",
|
|
62
62
|
"karma-webpack": "^5.0.0",
|
|
63
63
|
"lodash": "^4.17.21",
|
|
64
|
-
"node-polyfill-webpack-plugin": "^
|
|
64
|
+
"node-polyfill-webpack-plugin": "^4.1.0",
|
|
65
65
|
"proxyquire": "^2.1.3",
|
|
66
66
|
"puppeteer": "^3.3.0",
|
|
67
67
|
"redis-dumpz": "0.1.12",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"test-browser-e2e-push": "cross-env NODE_ENV=test karma start karma/e2e.push.karma.conf.js",
|
|
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
|
-
"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
|
|
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",
|
|
105
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",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '11.11.1
|
|
1
|
+
export const packageVersion = '11.11.1';
|