@stream-io/video-client 1.25.4 → 1.25.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.25.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.25.4...@stream-io/video-client-1.25.5) (2025-07-08)
6
+
7
+ ### Bug Fixes
8
+
9
+ - relax SFU leaveAndClose constraints ([#1848](https://github.com/GetStream/stream-video-js/issues/1848)) ([dbf8bb0](https://github.com/GetStream/stream-video-js/commit/dbf8bb0c6f9f5358f21db3e78bd40ce01ad9bf6d)), closes [#1846](https://github.com/GetStream/stream-video-js/issues/1846)
10
+
5
11
  ## [1.25.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.25.3...@stream-io/video-client-1.25.4) (2025-07-07)
6
12
 
7
13
  ### Bug Fixes
@@ -5810,7 +5810,7 @@ const aggregate = (stats) => {
5810
5810
  return report;
5811
5811
  };
5812
5812
 
5813
- const version = "1.25.4";
5813
+ const version = "1.25.5";
5814
5814
  const [major, minor, patch] = version.split('.');
5815
5815
  let sdkInfo = {
5816
5816
  type: SdkType.PLAIN_JAVASCRIPT,
@@ -7877,9 +7877,9 @@ class StreamSfuClient {
7877
7877
  return this.tracer?.take();
7878
7878
  };
7879
7879
  this.leaveAndClose = async (reason) => {
7880
- await this.joinTask;
7881
7880
  try {
7882
7881
  this.isLeaving = true;
7882
+ await this.joinTask;
7883
7883
  await this.notifyLeave(reason);
7884
7884
  }
7885
7885
  catch (err) {
@@ -14284,7 +14284,7 @@ class StreamClient {
14284
14284
  this.getUserAgent = () => {
14285
14285
  if (!this.cachedUserAgent) {
14286
14286
  const { clientAppIdentifier = {} } = this.options;
14287
- const { sdkName = 'js', sdkVersion = "1.25.4", ...extras } = clientAppIdentifier;
14287
+ const { sdkName = 'js', sdkVersion = "1.25.5", ...extras } = clientAppIdentifier;
14288
14288
  this.cachedUserAgent = [
14289
14289
  `stream-video-${sdkName}-v${sdkVersion}`,
14290
14290
  ...Object.entries(extras).map(([key, value]) => `${key}=${value}`),