@stream-io/video-react-sdk 1.24.2 → 1.25.0
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 +19 -0
- package/dist/index.cjs.js +3 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -5
- package/dist/index.es.js.map +1 -1
- package/package.json +4 -4
- package/src/components/BackgroundFilters/BackgroundFilters.tsx +3 -4
- package/src/utilities/callControlHandler.ts +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.25.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.24.3...@stream-io/video-react-sdk-1.25.0) (2025-10-30)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-client` updated to version `1.36.0`
|
|
10
|
+
- `@stream-io/video-filters-web` updated to version `0.4.0`
|
|
11
|
+
- `@stream-io/video-react-bindings` updated to version `1.10.4`
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- Migrate logger to js-toolkit logger implementation ([#1959](https://github.com/GetStream/stream-video-js/issues/1959)) ([5a424f7](https://github.com/GetStream/stream-video-js/commit/5a424f72cec2a8cbc0bfa23147d9988ab9bfbdc1))
|
|
16
|
+
|
|
17
|
+
## [1.24.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.24.2...@stream-io/video-react-sdk-1.24.3) (2025-10-27)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
- `@stream-io/video-client` updated to version `1.35.1`
|
|
22
|
+
- `@stream-io/video-react-bindings` updated to version `1.10.3`
|
|
23
|
+
|
|
5
24
|
## [1.24.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.24.1...@stream-io/video-react-sdk-1.24.2) (2025-10-24)
|
|
6
25
|
|
|
7
26
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -882,7 +882,7 @@ const BackgroundFiltersProvider = (props) => {
|
|
|
882
882
|
.catch((err) => console.error('Failed to load TFLite', err));
|
|
883
883
|
}, [basePath, isSupported, modelFilePath, tfFilePath]);
|
|
884
884
|
const handleError = react.useCallback((error) => {
|
|
885
|
-
|
|
885
|
+
console.warn('[filters] Filter encountered an error and will be disabled');
|
|
886
886
|
disableBackgroundFilter();
|
|
887
887
|
onError?.(error);
|
|
888
888
|
}, [disableBackgroundFilter, onError]);
|
|
@@ -1284,7 +1284,6 @@ const DefaultReactionsMenu = ({ reactions, layout = 'horizontal', }) => {
|
|
|
1284
1284
|
* @param handler event handler to wrap
|
|
1285
1285
|
*/
|
|
1286
1286
|
const createCallControlHandler = (props, handler) => {
|
|
1287
|
-
const logger = videoClient.getLogger(['react-sdk']);
|
|
1288
1287
|
return async () => {
|
|
1289
1288
|
try {
|
|
1290
1289
|
await handler();
|
|
@@ -1295,7 +1294,7 @@ const createCallControlHandler = (props, handler) => {
|
|
|
1295
1294
|
return;
|
|
1296
1295
|
}
|
|
1297
1296
|
if (!isNotAllowedError(error)) {
|
|
1298
|
-
|
|
1297
|
+
console.error('Call control handler failed', error);
|
|
1299
1298
|
}
|
|
1300
1299
|
}
|
|
1301
1300
|
};
|
|
@@ -3006,7 +3005,7 @@ const checkCanJoinEarly = (startsAt, joinAheadTimeSeconds) => {
|
|
|
3006
3005
|
return Date.now() >= +startsAt - (joinAheadTimeSeconds ?? 0) * 1000;
|
|
3007
3006
|
};
|
|
3008
3007
|
|
|
3009
|
-
const [major, minor, patch] = ("1.
|
|
3008
|
+
const [major, minor, patch] = ("1.25.0").split('.');
|
|
3010
3009
|
videoClient.setSdkInfo({
|
|
3011
3010
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
3012
3011
|
major,
|