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
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
11.0.4 (January 9, 2025)
2
+
- Bugfixing - Updated @splitsoftware/splitio-commons package to version 2.0.3, which properly handles rejected promises when using targeting rules with segment matchers in consumer modes (e.g., Redis and Pluggable storages).
3
+
1
4
11.0.3 (December 4, 2024)
2
5
- Bugfixing - Updated @splitsoftware/splitio-commons package to version 2.0.2 that sanitizes the `SplitSDKMachineName` header value to avoid exceptions on HTTP/S requests when it contains non ISO-8859-1 characters (Related to issue https://github.com/splitio/javascript-client/issues/847).
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,4 +84,4 @@ For a comprehensive list of open source projects visit our [Github page](https:/
84
84
85
85
**Learn more about Split:**
86
86
87
-
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](http://help.split.io) for more detailed information.
87
+
Visit [split.io/product](https://www.split.io/product) for an overview of Split, or visit our documentation at [help.split.io](https://help.split.io) for more detailed information.
Copy file name to clipboardExpand all lines: src/__tests__/browserSuites/ready-from-cache.spec.js
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -564,7 +564,7 @@ export default function (fetchMock, assert) {
564
564
});
565
565
566
566
client.once(client.Event.SDK_READY,()=>{
567
-
t.deepEqual(manager.names(),['p1__split','p2__split'],'p1__split should be added for evaluation');
567
+
t.deepEqual(manager.names().sort(),['p1__split','p2__split'],'p1__split should be added for evaluation');
568
568
569
569
client.destroy().then(()=>{
570
570
t.equal(localStorage.getItem('readyFromCache_5B.SPLITIO.splits.till'),'1457552620999','splits.till must correspond to the till of the last successfully fetched Splits');
@@ -610,11 +610,11 @@ export default function (fetchMock, assert) {
@@ -304,7 +304,7 @@ tape('Node.js Redis', function (t) {
304
304
assert.deepEqual(trackedImpressionsAndEvents,[TOTAL_RAW_IMPRESSIONS-DEDUPED_IMPRESSIONS,TOTAL_EVENTS],'Tracked impressions and events should be stored in Redis');
0 commit comments