Skip to content

Commit 56c814e

Browse files
Merge pull request #770 from splitio/polishing
Polishing
2 parents bc94b6b + b8c7617 commit 56c814e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- 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).
77

88
10.23.0 (July 18, 2023)
9-
- Updated @splitsoftware/splitio-commons package to version 1.8.4 that includes minor improvements:
9+
- Updated @splitsoftware/splitio-commons package to version 1.9.0 that includes minor improvements:
1010
- Updated streaming architecture implementation to apply feature flag updates from the notification received which is now enhanced, improving efficiency and reliability of the whole update system.
1111

1212
10.22.6 (July 6, 2023)

src/__tests__/destroy/browser.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const settings = settingsFactory({
1919
});
2020

2121
fetchMock.getOnce(url(settings, '/splitChanges?since=-1'), { status: 200, body: splitChangesMock1 });
22-
fetchMock.getOnce(url(settings, '/splitChanges?since=-1500492097547'), { status: 200, body: splitChangesMock2 });
22+
fetchMock.getOnce(url(settings, '/splitChanges?since=1500492097547'), { status: 200, body: splitChangesMock2 });
2323
fetchMock.getOnce(url(settings, '/mySegments/ut1'), { status: 200, body: mySegmentsMock });
2424
fetchMock.getOnce(url(settings, '/mySegments/ut2'), { status: 200, body: mySegmentsMock });
2525
fetchMock.getOnce(url(settings, '/mySegments/ut3'), { status: 200, body: mySegmentsMock });

src/__tests__/destroy/node.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import splitChangesMock2 from '../mocks/splitChanges.since.1500492097547.json';
1818
import impressionsMock from '../mocks/impressions.json';
1919

2020
fetchMock.get(url(settings, '/splitChanges?since=-1'), { status: 200, body: splitChangesMock1 });
21-
fetchMock.get(url(settings, '/splitChanges?since=-1500492097547'), { status: 200, body: splitChangesMock2 });
21+
fetchMock.get(url(settings, '/splitChanges?since=1500492097547'), { status: 200, body: splitChangesMock2 });
2222
fetchMock.postOnce(url(settings, '/v1/metrics/config'), 200);
2323

2424
tape('SDK destroy for NodeJS', async function (assert) {

types/splitio.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,8 +1293,8 @@ declare namespace SplitIO {
12931293
}
12941294
/**
12951295
* This represents the interface for the SDK instance with synchronous storage.
1296-
* @interface ISDK
1297-
* @extends IBasicSDK
1296+
* @interface IBrowserSDK
1297+
* @extends ISDK
12981298
*/
12991299
interface IBrowserSDK extends ISDK {
13001300
/**

0 commit comments

Comments
 (0)