You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.txt
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
1.15.0 (May 13, 2024)
2
+
- Added an optional settings validation parameter to let overwrite the default flag spec version, used by the JS Synchronizer.
3
+
1
4
1.14.0 (May 6, 2024)
2
5
- Added support for targeting rules based on semantic versions (https://semver.org/).
3
6
- Added special impression label "targeting rule type unsupported by sdk" when the matcher type is not supported by the SDK, which returns 'control' treatment.
@@ -86,7 +89,7 @@
86
89
- Bugfixing - Removed js-yaml dependency to avoid resolution to an incompatible version on certain npm versions when installing third-party dependencies that also define js-yaml as transitive dependency (Related to issue https://github.com/splitio/javascript-client/issues/662).
87
90
88
91
1.5.0 (June 29, 2022)
89
-
- Added a new config option to control the tasks that listen or poll for updates on feature flags and segments, via the new config sync.enabled. Running online, Split SDK will always pull the most recent updates upon initialization, this only affects updates fetching on a running instance. Useful when a consistent session experience is a must or to save resources when updates are not being used.
92
+
- Added a new config option to control the tasks that listen or poll for updates on feature flags and segments, via the new config `sync.enabled`. Running online, Split SDK will always pull the most recent updates upon initialization, this only affects updates fetching on a running instance. Useful when a consistent session experience is a must or to save resources when updates are not being used.
90
93
- Updated telemetry logic to track the anonymous config for user consent flag set to declined or unknown.
91
94
- Updated submitters logic, to avoid duplicating the post of impressions to Split cloud when the SDK is destroyed while its periodic post of impressions is running.
@@ -78,7 +78,7 @@ export class SSEClient implements ISSEClient {
78
78
returnencodeURIComponent(params+channel);
79
79
}
80
80
).join(',');
81
-
consturl=`${this.streamingUrl}?channels=${channelsQueryParam}&accessToken=${authToken.token}&v=${VERSION}&heartbeats=true`;// same results using `&heartbeats=false`
81
+
consturl=`${this.streamingUrl}?channels=${channelsQueryParam}&accessToken=${authToken.token}&v=${ABLY_API_VERSION}&heartbeats=true`;// same results using `&heartbeats=false`
82
82
83
83
this.connection=newthis.eventSource!(
84
84
// For client-side SDKs, SplitSDKClientKey and SplitSDKClientKey metadata is passed as query params,
0 commit comments