@splitsoftware/splitio 10.24.0-beta → 10.24.0-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,13 +1,16 @@
|
|
|
1
|
-
10.24.0 (
|
|
2
|
-
|
|
1
|
+
10.24.0 (December XX, 2023)
|
|
2
|
+
- Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
|
|
3
3
|
- Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
|
|
4
4
|
- getTreatmentsByFlagSet and getTreatmentsByFlagSets
|
|
5
5
|
- getTreatmentsWithConfigByFlagSets and getTreatmentsWithConfigByFlagSets
|
|
6
6
|
- Added a new optional Split Filter configuration option. This allows the SDK and Split services to only synchronize the flags in the specified flag sets, avoiding unused or unwanted flags from being synced on the SDK instance, bringing all the benefits from a reduced payload.
|
|
7
7
|
- Note: Only applicable when the SDK is in charge of the rollout data synchronization. When not applicable, the SDK will log a warning on init.
|
|
8
|
-
-
|
|
8
|
+
- Added `sets` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager to expose flag sets on flag views.
|
|
9
9
|
- Added `defaultTreatment` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager (Related to issue https://github.com/splitio/javascript-commons/issues/225).
|
|
10
|
-
- Updated @splitsoftware/splitio-commons package to version 1.
|
|
10
|
+
- Updated @splitsoftware/splitio-commons package to version 1.12.0 that includes vulnerability fixes, flag sets support, and other improvements.
|
|
11
|
+
- Updated Redis adapter to handle timeouts and queueing of some missing commands: 'hincrby', 'popNRaw', and 'pipeline.exec'.
|
|
12
|
+
- Bugfixing - Fixed manager methods in consumer modes to return results in a promise when the SDK is not operational (not ready or destroyed).
|
|
13
|
+
- Bugfixing - Fixed SDK key validation in NodeJS to ensure the SDK_READY_TIMED_OUT event is emitted when a client-side type SDK key is provided instead of a server-side one (Related to issue https://github.com/splitio/javascript-client/issues/768).
|
|
11
14
|
|
|
12
15
|
10.23.1 (September 22, 2023)
|
|
13
16
|
- Updated @splitsoftware/splitio-commons package to version 1.9.1. This update removes the handler for 'unload' DOM events, that can prevent browsers from being able to put pages in the back/forward cache for faster back and forward loads (Related to issue https://github.com/splitio/javascript-client/issues/759).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.24.0-
|
|
1
|
+
export var packageVersion = '10.24.0-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.24.0-
|
|
3
|
+
"version": "10.24.0-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"node": ">=6"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@splitsoftware/splitio-commons": "1.
|
|
43
|
+
"@splitsoftware/splitio-commons": "1.12.1-rc.3",
|
|
44
44
|
"@types/google.analytics": "0.0.40",
|
|
45
45
|
"@types/ioredis": "^4.28.0",
|
|
46
46
|
"bloom-filters": "^3.0.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.24.0-
|
|
1
|
+
export const packageVersion = '10.24.0-rc.0';
|
package/types/splitio.d.ts
CHANGED
|
@@ -223,8 +223,6 @@ interface ISharedSettings {
|
|
|
223
223
|
* List of feature flag filters. These filters are used to fetch a subset of the feature flag definitions in your environment, in order to reduce the delay of the SDK to be ready.
|
|
224
224
|
* This configuration is only meaningful when the SDK is working in "standalone" mode.
|
|
225
225
|
*
|
|
226
|
-
* At the moment, only one type of feature flag filter is supported: by name.
|
|
227
|
-
*
|
|
228
226
|
* Example:
|
|
229
227
|
* `splitFilter: [
|
|
230
228
|
* { type: 'byName', values: ['my_feature_flag_1', 'my_feature_flag_2'] }, // will fetch feature flags named 'my_feature_flag_1' and 'my_feature_flag_2'
|