You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.txt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
1.12.1 (December 12, 2023)
2
+
- Updated PluggableStorage, for producer mode, and LocalStorage, for standalone mode, to clear the storage before initiating the synchronization process if it was previously synchronized with a different SDK key (i.e., a different environment) or different Split Filter criteria.
3
+
- Bugfixing - Fixed an issue when tracking telemetry latencies for the new `getTreatmentsByFlagSet(s)` methods in Redis and Pluggable storages, which was causing the SDK to not track those stats.
4
+
1
5
1.12.0 (December 4, 2023)
2
6
- Added support for Flag Sets in "consumer" and "partial consumer" modes for Pluggable and Redis storages.
3
7
- Updated evaluation flow to log a warning when using flag sets that don't contain cached feature flags.
isStorageSync(settings) ? // If the SDK is not ready, treatment may be incorrect due to having splits but not segments data, or storage is not connected
47
-
treatmentNotReady :
48
-
Promise.resolve(treatmentNotReady);// Promisify if async
47
+
isAsync ? // If the SDK is not ready, treatment may be incorrect due to having splits but not segments data, or storage is not connected
isStorageSync(settings) ? // If the SDK is not ready, treatment may be incorrect due to having splits but not segments data, or storage is not connected
75
-
treatmentsNotReady(featureFlagNames) :
76
-
Promise.resolve(treatmentsNotReady(featureFlagNames));// Promisify if async
75
+
isAsync ? // If the SDK is not ready, treatment may be incorrect due to having splits but not segments data, or storage is not connected
0 commit comments