@splitsoftware/splitio-commons 1.7.0 → 1.7.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,3 +1,6 @@
|
|
|
1
|
+
1.7.1 (October 5, 2022)
|
|
2
|
+
- Updated default value of `scheduler.featuresRefreshRate` config parameter to 60 seconds.
|
|
3
|
+
|
|
1
4
|
1.7.0 (October 4, 2022)
|
|
2
5
|
- Added a new impressions mode for the SDK called NONE, to be used in factory when there is no desire to capture impressions on an SDK factory to feed Split's analytics engine. Running NONE mode, the SDK will only capture unique keys evaluated for a particular feature flag instead of full blown impressions.
|
|
3
6
|
- Updated SDK telemetry to support pluggable storage, partial consumer mode, and synchronizer.
|
|
@@ -26,8 +26,8 @@ exports.base = {
|
|
|
26
26
|
IPAddressesEnabled: undefined
|
|
27
27
|
},
|
|
28
28
|
scheduler: {
|
|
29
|
-
// fetch feature updates each
|
|
30
|
-
featuresRefreshRate:
|
|
29
|
+
// fetch feature updates each 60 sec
|
|
30
|
+
featuresRefreshRate: 60,
|
|
31
31
|
// fetch segments updates each 60 sec
|
|
32
32
|
segmentsRefreshRate: 60,
|
|
33
33
|
// publish telemetry stats each 3600 secs (1 hour)
|
|
@@ -23,8 +23,8 @@ export var base = {
|
|
|
23
23
|
IPAddressesEnabled: undefined
|
|
24
24
|
},
|
|
25
25
|
scheduler: {
|
|
26
|
-
// fetch feature updates each
|
|
27
|
-
featuresRefreshRate:
|
|
26
|
+
// fetch feature updates each 60 sec
|
|
27
|
+
featuresRefreshRate: 60,
|
|
28
28
|
// fetch segments updates each 60 sec
|
|
29
29
|
segmentsRefreshRate: 60,
|
|
30
30
|
// publish telemetry stats each 3600 secs (1 hour)
|
package/package.json
CHANGED
|
@@ -28,8 +28,8 @@ export const base = {
|
|
|
28
28
|
},
|
|
29
29
|
|
|
30
30
|
scheduler: {
|
|
31
|
-
// fetch feature updates each
|
|
32
|
-
featuresRefreshRate:
|
|
31
|
+
// fetch feature updates each 60 sec
|
|
32
|
+
featuresRefreshRate: 60,
|
|
33
33
|
// fetch segments updates each 60 sec
|
|
34
34
|
segmentsRefreshRate: 60,
|
|
35
35
|
// publish telemetry stats each 3600 secs (1 hour)
|