@stream-io/video-react-sdk 1.27.1 → 1.27.2
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,21 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.27.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.27.1...@stream-io/video-react-sdk-1.27.2) (2025-11-25)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/audio-filters-web` updated to version `0.6.1`
|
|
10
|
+
- `@stream-io/video-client` updated to version `1.37.3`
|
|
11
|
+
- `@stream-io/video-filters-web` updated to version `0.5.1`
|
|
12
|
+
- `@stream-io/video-react-bindings` updated to version `1.11.4`
|
|
13
|
+
|
|
14
|
+
- instructions for Claude and other coding agents ([#2012](https://github.com/GetStream/stream-video-js/issues/2012)) ([08a3459](https://github.com/GetStream/stream-video-js/commit/08a345954f7cb5b1fae5a4b39b5b585bf1f631ec))
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- **noise cancellation:** delay toggling until initialization is finished ([#2014](https://github.com/GetStream/stream-video-js/issues/2014)) ([d28b8ea](https://github.com/GetStream/stream-video-js/commit/d28b8ea282322a25688ff48966b0dc10dd7e60bd))
|
|
19
|
+
|
|
5
20
|
## [1.27.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.27.0...@stream-io/video-react-sdk-1.27.1) (2025-11-20)
|
|
6
21
|
|
|
7
22
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -1656,7 +1656,7 @@ const SpeakerTest = (props) => {
|
|
|
1656
1656
|
const audioElementRef = react.useRef(null);
|
|
1657
1657
|
const [isPlaying, setIsPlaying] = react.useState(false);
|
|
1658
1658
|
const { t } = videoReactBindings.useI18n();
|
|
1659
|
-
const { audioUrl = `https://unpkg.com/${"@stream-io/video-react-sdk"}@${"1.27.
|
|
1659
|
+
const { audioUrl = `https://unpkg.com/${"@stream-io/video-react-sdk"}@${"1.27.2"}/assets/piano.mp3`, } = props;
|
|
1660
1660
|
// Update audio output device when selection changes
|
|
1661
1661
|
react.useEffect(() => {
|
|
1662
1662
|
const audio = audioElementRef.current;
|
|
@@ -2301,10 +2301,14 @@ const NoiseCancellationProvider = (props) => {
|
|
|
2301
2301
|
? enabledOrSetter(isEnabled)
|
|
2302
2302
|
: enabledOrSetter;
|
|
2303
2303
|
if (enable) {
|
|
2304
|
-
noiseCancellation.enable()
|
|
2304
|
+
noiseCancellation.enable().catch((err) => {
|
|
2305
|
+
console.error('Failed to enable noise cancellation', err);
|
|
2306
|
+
});
|
|
2305
2307
|
}
|
|
2306
2308
|
else {
|
|
2307
|
-
noiseCancellation.disable()
|
|
2309
|
+
noiseCancellation.disable().catch((err) => {
|
|
2310
|
+
console.error('Failed to disable noise cancellation', err);
|
|
2311
|
+
});
|
|
2308
2312
|
}
|
|
2309
2313
|
},
|
|
2310
2314
|
}), [isEnabled, isSupported, noiseCancellation]);
|
|
@@ -3265,7 +3269,7 @@ const checkCanJoinEarly = (startsAt, joinAheadTimeSeconds) => {
|
|
|
3265
3269
|
return Date.now() >= +startsAt - (joinAheadTimeSeconds ?? 0) * 1000;
|
|
3266
3270
|
};
|
|
3267
3271
|
|
|
3268
|
-
const [major, minor, patch] = ("1.27.
|
|
3272
|
+
const [major, minor, patch] = ("1.27.2").split('.');
|
|
3269
3273
|
videoClient.setSdkInfo({
|
|
3270
3274
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
3271
3275
|
major,
|