@stream-io/video-react-sdk 1.19.6 → 1.19.8

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,24 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.19.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.19.7...@stream-io/video-react-sdk-1.19.8) (2025-08-15)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-client` updated to version `1.27.5`
10
+ - `@stream-io/video-react-bindings` updated to version `1.7.14`
11
+
12
+ ## [1.19.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.19.6...@stream-io/video-react-sdk-1.19.7) (2025-08-13)
13
+
14
+ ### Dependency Updates
15
+
16
+ - `@stream-io/video-client` updated to version `1.27.4`
17
+ - `@stream-io/video-react-bindings` updated to version `1.7.13`
18
+
19
+ ### Bug Fixes
20
+
21
+ - apply the crossorigin attribute before applying src ([#1886](https://github.com/GetStream/stream-video-js/issues/1886)) ([32f82a2](https://github.com/GetStream/stream-video-js/commit/32f82a24cb494e97c1ca2dee1b45a5da80a590d7))
22
+
5
23
  ## [1.19.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.19.5...@stream-io/video-react-sdk-1.19.6) (2025-08-11)
6
24
 
7
25
  ### Bug Fixes
package/dist/index.cjs.js CHANGED
@@ -992,7 +992,7 @@ const useRenderer = (tfLite, call) => {
992
992
  tfLite,
993
993
  ]);
994
994
  const children = (jsxRuntime.jsxs("div", { className: "str-video__background-filters", children: [jsxRuntime.jsx("video", { className: clsx('str-video__background-filters__video', videoSize.height > videoSize.width &&
995
- 'str-video__background-filters__video--tall'), ref: videoRef, playsInline: true, muted: true, controls: false, ...videoSize }), backgroundImage && (jsxRuntime.jsx("img", { className: "str-video__background-filters__background-image", alt: "Background", ref: bgImageRef, src: backgroundImage, crossOrigin: "anonymous", ...videoSize })), jsxRuntime.jsx("canvas", { className: "str-video__background-filters__target-canvas", ...videoSize, ref: canvasRef })] }));
995
+ 'str-video__background-filters__video--tall'), ref: videoRef, playsInline: true, muted: true, controls: false, ...videoSize }), backgroundImage && (jsxRuntime.jsx("img", { className: "str-video__background-filters__background-image", alt: "Background", ref: bgImageRef, crossOrigin: "anonymous", src: backgroundImage, ...videoSize })), jsxRuntime.jsx("canvas", { className: "str-video__background-filters__target-canvas", ...videoSize, ref: canvasRef })] }));
996
996
  return {
997
997
  start,
998
998
  children,
@@ -2960,7 +2960,7 @@ const checkCanJoinEarly = (startsAt, joinAheadTimeSeconds) => {
2960
2960
  return Date.now() >= +startsAt - (joinAheadTimeSeconds ?? 0) * 1000;
2961
2961
  };
2962
2962
 
2963
- const [major, minor, patch] = ("1.19.6").split('.');
2963
+ const [major, minor, patch] = ("1.19.8").split('.');
2964
2964
  videoClient.setSdkInfo({
2965
2965
  type: videoClient.SfuModels.SdkType.REACT,
2966
2966
  major,