@stream-io/video-client 1.2.0 → 1.2.1

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
+ ### [1.2.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.2.0...@stream-io/video-client-1.2.1) (2024-06-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * join doesn't work on chrome 86 ([#1386](https://github.com/GetStream/stream-video-js/issues/1386)) ([7b462da](https://github.com/GetStream/stream-video-js/commit/7b462da8131e086f224c0590221d549a38ba419c))
11
+
5
12
  ## [1.2.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.1.0...@stream-io/video-client-1.2.0) (2024-06-03)
6
13
 
7
14
 
@@ -6411,7 +6411,7 @@ const getGenericSdp = async (direction) => {
6411
6411
  const offer = await tempPc.createOffer();
6412
6412
  let sdp = offer.sdp ?? '';
6413
6413
  tempPc.getTransceivers().forEach((t) => {
6414
- t.stop();
6414
+ t.stop?.();
6415
6415
  });
6416
6416
  tempPc.close();
6417
6417
  return sdp;
@@ -15289,7 +15289,7 @@ class StreamClient {
15289
15289
  });
15290
15290
  };
15291
15291
  this.getUserAgent = () => {
15292
- const version = "1.2.0" ;
15292
+ const version = "1.2.1" ;
15293
15293
  return (this.userAgent ||
15294
15294
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
15295
15295
  };