@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.0 (February 23, 2026)
2
- - Updated @splitsoftware/splitio-commons package to version 2.12.0, which:
3
- - Add support for ioredis v5
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,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageVersion = void 0;
4
- exports.packageVersion = '11.11.1-rc.0';
4
+ exports.packageVersion = '11.11.1';
@@ -1 +1 @@
1
- export var packageVersion = '11.11.1-rc.0';
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-rc.0",
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.11.1-rc.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": "^1.1.4",
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 && npm run test-node-e2e-redis",
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-rc.0';
1
+ export const packageVersion = '11.11.1';
package/types/index.d.ts CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  export = JsSdk;
8
8
 
9
- declare module JsSdk {
9
+ declare namespace JsSdk {
10
10
  /**
11
11
  * Split.io SDK factory function.
12
12
  * The settings parameter should be an object that complies with the SplitIO.INodeAsyncSettings.