Skip to content

Commit 2bfc800

Browse files
Polishing
1 parent d7d0c8e commit 2bfc800

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.13.0 (January 4, 2024)
2+
- Removed the getOptions method from the IPlatform interface to simplify the code. Request options can be handled inside the getFetch method.
3+
14
1.12.1 (December 12, 2023)
25
- 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.
36
- 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.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio-commons",
3-
"version": "1.12.1",
3+
"version": "1.12.2-rc.0",
44
"description": "Split Javascript SDK common components",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",

src/services/splitApi.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ function userKeyToQueryParam(userKey: string) {
1717
* Factory of SplitApi objects, which group the collection of Split HTTP endpoints used by the SDK
1818
*
1919
* @param settings validated settings object
20-
* @param platform object containing environment-specific `getFetch` dependency
20+
* @param getFetch environment-specific `getFetch` method
21+
* @param telemetryTracker telemetry tracker
2122
*/
2223
export function splitApiFactory(
2324
settings: ISettings,

0 commit comments

Comments
 (0)