Skip to content

Commit ad50b76

Browse files
rc
1 parent 6a3e486 commit ad50b76

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
- Added a bloom filter utility and platform-specific modules (`src/platform/`) for reuse across SDKs.
55
- Added support for the Configs SDK:
66
- new type declarations,
7-
- a fallback calculator with sanitizer,
7+
- fallback calculator with sanitizer,
88
- default treatment evaluation (without a target),
9-
- a new `CONFIGS_UPDATE` metadata type for `SDK_UPDATE` event,
10-
- an optional `entityType` field in the `/testImpressions/bulk` payload,
9+
- new `CONFIGS_UPDATE` metadata type for `SDK_UPDATE` event,
10+
- optional `entityType` field in the `/testImpressions/bulk` payload,
1111
- input validation for the target object.
1212
- Removed the misleading warning log 'No listeners for SDK_READY event detected', since users can use the `whenReady` method to wait for the SDK to be ready.
1313
- BREAKING CHANGES: Renamed some types and modules, and updated the signatures of others for clarity and reusability.

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": "3.0.0-rc.0",
3+
"version": "3.0.0-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2467,7 +2467,7 @@ declare namespace SplitIO {
24672467
/**
24682468
* Configs SDK client interface.
24692469
*/
2470-
interface ConfigsClient extends IStatusInterface {
2470+
interface ConfigsClient extends Omit<IStatusInterface, 'ready'> {
24712471
/**
24722472
* Destroys the client.
24732473
*

0 commit comments

Comments
 (0)