@splitsoftware/splitio 11.2.1-rc.1 → 11.2.1-rc.2
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
|
11.2.1 (May 7, 2025)
|
|
2
|
-
- Updated @splitsoftware/splitio-commons package to version 2.2.1, which optimizes Redis storage to avoid lazy require of the `ioredis` dependency
|
|
2
|
+
- Updated @splitsoftware/splitio-commons package to version 2.2.1, which optimizes the Redis storage to avoid lazy require of the `ioredis` dependency and allow queueing feature flag evaluations before SDK_READY event is emitted (Reverted in v10.22.0).
|
|
3
3
|
|
|
4
4
|
11.2.0 (March 28, 2025)
|
|
5
5
|
- Added a new optional argument to the client `getTreatment` methods to allow passing additional evaluation options, such as a map of properties to append to the generated impressions sent to Split backend. Read more in our docs.
|
|
@@ -124,7 +124,8 @@
|
|
|
124
124
|
10.22.0 (October 5, 2022)
|
|
125
125
|
- 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.
|
|
126
126
|
- Updated default value of `scheduler.featuresRefreshRate` config parameter from 5 seconds to 60 seconds for Node.js and from 30 seconds to 60 seconds for Browser.
|
|
127
|
-
- Updated @splitsoftware/splitio-commons package to version 1.7.1, that improves the performance of feature flag evaluations (i.e., `getTreatment(s)` method calls) when using the default storage in memory,
|
|
127
|
+
- Updated @splitsoftware/splitio-commons package to version 1.7.1, that improves the performance of feature flag evaluations (i.e., `getTreatment(s)` method calls) when using the default storage in memory,
|
|
128
|
+
and avoid calling the storage for cached feature flags when the SDK is not ready or ready from cache, among other improvements.
|
|
128
129
|
|
|
129
130
|
10.21.1 (July 25, 2022)
|
|
130
131
|
- Bugfixing - Added missed type definitions `enabled` from `sync`.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '11.2.1-rc.
|
|
1
|
+
export var packageVersion = '11.2.1-rc.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "11.2.1-rc.
|
|
3
|
+
"version": "11.2.1-rc.2",
|
|
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.2.1-rc.
|
|
41
|
+
"@splitsoftware/splitio-commons": "2.2.1-rc.3",
|
|
42
42
|
"bloom-filters": "^3.0.4",
|
|
43
43
|
"ioredis": "^4.28.0",
|
|
44
44
|
"js-yaml": "^3.13.1",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '11.2.1-rc.
|
|
1
|
+
export const packageVersion = '11.2.1-rc.2';
|