Skip to content

Commit 22ef058

Browse files
Fix ts and add changes file
1 parent 27dc057 commit 22ef058

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.11.0 (January XX, 2026)
2+
- Added metadata to SDK_UPDATE events to indicate the type of update (FLAGS_UPDATE or SEGMENTS_UPDATE) and the names of updated flags or segments.
3+
- Added metadata to SDK_READY and SDK_READY_FROM_CACHE events, including `initialCacheLoad` (boolean indicating if SDK was loaded from cache) and `lastUpdateTimestamp` (Int64 milliseconds since epoch).
4+
15
2.10.1 (December 18, 2025)
26
- Bugfix - Handle `null` prerequisites properly.
37

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": "2.10.1",
3+
"version": "2.10.2-rc.1",
44
"description": "Split JavaScript SDK common components",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",

types/splitio.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Type definitions for Split Software SDKs
22
// Project: https://www.split.io/
33

4-
import { RedisOptions } from 'ioredis';
5-
import { RequestOptions } from 'http';
4+
import type { RedisOptions } from 'ioredis';
5+
import type { RequestOptions } from 'http';
66

77
export as namespace SplitIO;
88
export = SplitIO;

0 commit comments

Comments
 (0)