@stream-io/video-react-sdk 1.14.6 → 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 CHANGED
@@ -2,6 +2,30 @@
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
+
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)
19
+
20
+ ### Dependency Updates
21
+
22
+ - `@stream-io/video-client` updated to version `1.21.0`
23
+ - `@stream-io/video-react-bindings` updated to version `1.5.19`
24
+
25
+ ### Features
26
+
27
+ - encode and decode PerformanceStats tracing ([#1765](https://github.com/GetStream/stream-video-js/issues/1765)) ([138ea84](https://github.com/GetStream/stream-video-js/commit/138ea84fee834da03cf3c8042fbb2f071526f135))
28
+
5
29
  ## [1.14.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.14.5...@stream-io/video-react-sdk-1.14.6) (2025-05-01)
6
30
 
7
31
  ### Dependency Updates
package/README.md CHANGED
@@ -91,7 +91,7 @@ Here are some of the features we support:
91
91
  - [ ] Logging 2.0
92
92
  - [x] Hardware-accelerated video encoding on supported platforms
93
93
  - [x] Dynascale 2.0 (codec switching)
94
- - [x] Improved stat collection
94
+ - [x] Improved stat collection and device performance metrics
95
95
  - [ ] E2E testing platform
96
96
  - [ ] Dynascale: turn off incoming video when the browser is in the background
97
97
 
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.14.6").split('.');
2729
+ const [major, minor, patch] = ("1.16.0").split('.');
2730
2730
  videoClient.setSdkInfo({
2731
2731
  type: videoClient.SfuModels.SdkType.REACT,
2732
2732
  major,