Skip to content

Commit 08711d9

Browse files
Update changelog entry
1 parent a131a23 commit 08711d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- Added support for targeting rules based on semantic versions (https://semver.org/).
44
- Added special impression label "targeting rule type unsupported by sdk" when the matcher type is not supported by the SDK, which returns 'control' treatment.
55
- Updated Split API client to include the flags spec version query parameter for the `splitChanges` and `auth` endpoints.
6-
- Updated internal use of the SDK client to remove EventEmitter memory leak warnings. These warnings are emitted when using multiple hooks and components from the SDK simultaneously, but they do not indicate an actual memory leak and are irrelevant for SDK usage (Related to https://github.com/splitio/react-client/issues/191).
6+
- Updated internal use of the SDK client to remove EventEmitter memory leak warnings. These warnings were emitted when using multiple hooks and components from the SDK simultaneously, but they do not indicate an actual memory leak and are irrelevant for SDK usage (Related to https://github.com/splitio/react-client/issues/191).
77

88
1.11.1 (March 26, 2024)
99
- Bugfixing - Added tslib as an explicit dependency to avoid issues with some package managers that don't resolve it automatically as a transitive dependency from @splitsoftware/splitio-commons (Related to issue https://github.com/splitio/javascript-client/issues/795).

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function getSplitClient(factory: SplitIO.IBrowserSDK, key?: SplitIO.Split
5454
// Handle client lastUpdate
5555
if (client.lastUpdate === undefined) {
5656
// Remove EventEmitter warning emitted when using multiple SDK hooks or components.
57-
// Unlike JS SDK, users don't need to use the client directly and so the warning is not relevant.
57+
// Unlike JS SDK, users can avoid using the client directly, making the warning irrelevant.
5858
client.setMaxListeners(0);
5959

6060
const updateLastUpdate = () => {

0 commit comments

Comments
 (0)