@stream-io/video-client 0.0.38 → 0.0.39

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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.0.39](https://github.com/GetStream/stream-video-js/compare/client0.0.38...client0.0.39) (2023-07-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * promise rejection on call leave ([#767](https://github.com/GetStream/stream-video-js/issues/767)) ([4b9fb95](https://github.com/GetStream/stream-video-js/commit/4b9fb959649126594855a1699058da907d7b5832))
11
+
5
12
  ### [0.0.38](https://github.com/GetStream/stream-video-js/compare/client0.0.37...client0.0.38) (2023-07-07)
6
13
 
7
14
 
@@ -6093,6 +6093,7 @@ class Publisher {
6093
6093
  this.trackLayersCache[trackType] = undefined;
6094
6094
  });
6095
6095
  }
6096
+ this.pc.removeEventListener('negotiationneeded', this.onNegotiationNeeded);
6096
6097
  this.pc.close();
6097
6098
  };
6098
6099
  /**
@@ -11814,7 +11815,7 @@ class StreamClient {
11814
11815
  }
11815
11816
  getUserAgent() {
11816
11817
  return (this.userAgent ||
11817
- `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.37"}`);
11818
+ `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.38"}`);
11818
11819
  }
11819
11820
  setUserAgent(userAgent) {
11820
11821
  this.userAgent = userAgent;