@splitsoftware/splitio 10.19.1-rc3 → 10.19.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,5 +1,5 @@
1
1
  10.19.1 (Jun 13, 2022)
2
- - Updated eventsource dependecy range to ^1.1.2 to avoid dependency resolution to a vulnerable version of this package as much as possible when combined with other dependencies.
2
+ - Updated eventsource dependency range to ^1.1.2 to avoid a vulnerability and dependency resolution to a vulnerable version of url-parse transitive dependency.
3
3
  - Bugfixing - Updated submitters logic, to avoid dropping impressions and events that are being tracked while POST request is pending.
4
4
 
5
5
  10.19.0 (May 24, 2022)
@@ -1 +1 @@
1
- export var packageVersion = '10.19.1-rc3';
1
+ export var packageVersion = '10.19.2-rc.1';
@@ -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 = '10.19.1-rc3';
4
+ exports.packageVersion = '10.19.2-rc.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.19.1-rc3",
3
+ "version": "10.19.2-rc.1",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -32,7 +32,7 @@
32
32
  "node": ">=6"
33
33
  },
34
34
  "dependencies": {
35
- "@splitsoftware/splitio-commons": "1.4.1-rc.1",
35
+ "@splitsoftware/splitio-commons": "1.4.2-rc.1",
36
36
  "@types/google.analytics": "0.0.40",
37
37
  "@types/ioredis": "^4.28.0",
38
38
  "ioredis": "^4.28.0",
package/src/.DS_Store CHANGED
Binary file
@@ -1 +1 @@
1
- export const packageVersion = '10.19.1-rc3';
1
+ export const packageVersion = '10.19.2-rc.1';
@@ -1545,9 +1545,9 @@ declare namespace SplitIO {
1545
1545
  * Get the data of a split in SplitView format.
1546
1546
  * @function split
1547
1547
  * @param {string} splitName The name of the split we wan't to get info of.
1548
- * @returns {SplitView} The SplitIO.SplitView of the given split.
1548
+ * @returns {SplitView | null} The SplitIO.SplitView of the given split or null if the split is not found.
1549
1549
  */
1550
- split(splitName: string): SplitView;
1550
+ split(splitName: string): SplitView | null;
1551
1551
  }
1552
1552
  /**
1553
1553
  * Representation of a manager instance with asynchronous storage of the SDK.
Binary file