@splitsoftware/splitio 10.19.1-rc2 → 10.19.2-rc.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,5 @@
|
|
|
1
|
-
10.19.1 (Jun
|
|
2
|
-
- Updated eventsource
|
|
1
|
+
10.19.1 (Jun 13, 2022)
|
|
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
|
+
export var packageVersion = '10.19.2-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.19.
|
|
3
|
+
"version": "10.19.2-rc.0",
|
|
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.
|
|
35
|
+
"@splitsoftware/splitio-commons": "1.4.2-rc.0",
|
|
36
36
|
"@types/google.analytics": "0.0.40",
|
|
37
37
|
"@types/ioredis": "^4.28.0",
|
|
38
38
|
"ioredis": "^4.28.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.19.
|
|
1
|
+
export const packageVersion = '10.19.2-rc.0';
|
package/types/splitio.d.ts
CHANGED
|
@@ -758,6 +758,17 @@ declare namespace SplitIO {
|
|
|
758
758
|
* If not provided, events are sent using the key and traffic type provided at SDK config
|
|
759
759
|
*/
|
|
760
760
|
identities?: Identity[],
|
|
761
|
+
/**
|
|
762
|
+
* Optional flag to log an error if the `auto-require` script is not detected.
|
|
763
|
+
* The auto-require script automatically requires the `splitTracker` plugin for created trackers,
|
|
764
|
+
* and should be placed right after your Google Analytics, GTM or gtag.js script tag.
|
|
765
|
+
*
|
|
766
|
+
* @see {@link https://help.split.io/hc/en-us/articles/360040838752#google-tag-manager}
|
|
767
|
+
*
|
|
768
|
+
* @property {boolean} autoRequire
|
|
769
|
+
* @default false
|
|
770
|
+
*/
|
|
771
|
+
autoRequire?: boolean,
|
|
761
772
|
}
|
|
762
773
|
/**
|
|
763
774
|
* Object representing the data sent by Split (events and impressions).
|