@stream-io/video-react-sdk 1.15.0 → 1.16.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 +13 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +11 -11
- package/src/components/CallStats/CallStats.tsx +1 -1
- package/src/components/NoiseCancellation/NoiseCancellationProvider.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.16.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.15.0...@stream-io/video-react-sdk-1.16.0) (2025-05-08)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/audio-filters-web` updated to version `0.3.0`
|
|
10
|
+
- `@stream-io/video-client` updated to version `1.22.0`
|
|
11
|
+
- `@stream-io/video-filters-web` updated to version `0.2.0`
|
|
12
|
+
- `@stream-io/video-react-bindings` updated to version `1.6.0`
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- Expo 53 Swift Config Plugin and React Native 0.79 compatibility ([#1714](https://github.com/GetStream/stream-video-js/issues/1714)) ([380331e](https://github.com/GetStream/stream-video-js/commit/380331e11fd6182c3111413aa25689a669dd3c9c))
|
|
17
|
+
|
|
5
18
|
## [1.15.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.14.6...@stream-io/video-react-sdk-1.15.0) (2025-05-02)
|
|
6
19
|
|
|
7
20
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -1500,7 +1500,7 @@ const CallStats = (props) => {
|
|
|
1500
1500
|
const { t } = videoReactBindings.useI18n();
|
|
1501
1501
|
const [publishBitrate, setPublishBitrate] = react.useState('-');
|
|
1502
1502
|
const [subscribeBitrate, setSubscribeBitrate] = react.useState('-');
|
|
1503
|
-
const previousStats = react.useRef();
|
|
1503
|
+
const previousStats = react.useRef(undefined);
|
|
1504
1504
|
const { useCallStatsReport } = videoReactBindings.useCallStateHooks();
|
|
1505
1505
|
const callStatsReport = useCallStatsReport();
|
|
1506
1506
|
react.useEffect(() => {
|
|
@@ -1877,7 +1877,7 @@ const NoiseCancellationProvider = (props) => {
|
|
|
1877
1877
|
}, [noiseCancellation]);
|
|
1878
1878
|
const isSupported = isSupportedByBrowser && hasCapability && noiseCancellationAllowed;
|
|
1879
1879
|
const [isEnabled, setIsEnabled] = react.useState(false);
|
|
1880
|
-
const deinit = react.useRef();
|
|
1880
|
+
const deinit = react.useRef(undefined);
|
|
1881
1881
|
react.useEffect(() => {
|
|
1882
1882
|
if (!call || !isSupported)
|
|
1883
1883
|
return;
|
|
@@ -2726,7 +2726,7 @@ const LivestreamPlayer = (props) => {
|
|
|
2726
2726
|
return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2727
2727
|
};
|
|
2728
2728
|
|
|
2729
|
-
const [major, minor, patch] = ("1.
|
|
2729
|
+
const [major, minor, patch] = ("1.16.0").split('.');
|
|
2730
2730
|
videoClient.setSdkInfo({
|
|
2731
2731
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2732
2732
|
major,
|