@stream-io/video-react-native-sdk 1.38.2 → 1.39.1-beta.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.
Files changed (50) hide show
  1. package/CHANGELOG.md +1629 -0
  2. package/android/src/main/java/com/streamvideo/reactnative/StreamVideoReactNativeModule.kt +81 -0
  3. package/android/src/main/java/com/streamvideo/reactnative/recorder/AudioPipeline.kt +436 -0
  4. package/android/src/main/java/com/streamvideo/reactnative/recorder/EncoderConstants.kt +17 -0
  5. package/android/src/main/java/com/streamvideo/reactnative/recorder/PipelineHost.kt +36 -0
  6. package/android/src/main/java/com/streamvideo/reactnative/recorder/RecorderPlaybackSamplesSink.kt +60 -0
  7. package/android/src/main/java/com/streamvideo/reactnative/recorder/RecorderVideoSink.kt +31 -0
  8. package/android/src/main/java/com/streamvideo/reactnative/recorder/TracksRecorderManager.kt +329 -0
  9. package/android/src/main/java/com/streamvideo/reactnative/recorder/VideoPipeline.kt +472 -0
  10. package/dist/commonjs/components/Participant/ParticipantView/ParticipantLabel.js +4 -3
  11. package/dist/commonjs/components/Participant/ParticipantView/ParticipantLabel.js.map +1 -1
  12. package/dist/commonjs/hooks/index.js +11 -0
  13. package/dist/commonjs/hooks/index.js.map +1 -1
  14. package/dist/commonjs/hooks/useLoopbackRecording.js +243 -0
  15. package/dist/commonjs/hooks/useLoopbackRecording.js.map +1 -0
  16. package/dist/commonjs/utils/internal/callingx/callingx.js +2 -2
  17. package/dist/commonjs/utils/internal/callingx/callingx.js.map +1 -1
  18. package/dist/commonjs/version.js +1 -1
  19. package/dist/commonjs/version.js.map +1 -1
  20. package/dist/module/components/Participant/ParticipantView/ParticipantLabel.js +5 -4
  21. package/dist/module/components/Participant/ParticipantView/ParticipantLabel.js.map +1 -1
  22. package/dist/module/hooks/index.js +1 -0
  23. package/dist/module/hooks/index.js.map +1 -1
  24. package/dist/module/hooks/useLoopbackRecording.js +238 -0
  25. package/dist/module/hooks/useLoopbackRecording.js.map +1 -0
  26. package/dist/module/utils/internal/callingx/callingx.js +2 -2
  27. package/dist/module/utils/internal/callingx/callingx.js.map +1 -1
  28. package/dist/module/version.js +1 -1
  29. package/dist/module/version.js.map +1 -1
  30. package/dist/typescript/components/Participant/ParticipantView/ParticipantLabel.d.ts.map +1 -1
  31. package/dist/typescript/hooks/index.d.ts +1 -0
  32. package/dist/typescript/hooks/index.d.ts.map +1 -1
  33. package/dist/typescript/hooks/useLoopbackRecording.d.ts +85 -0
  34. package/dist/typescript/hooks/useLoopbackRecording.d.ts.map +1 -0
  35. package/dist/typescript/version.d.ts +1 -1
  36. package/dist/typescript/version.d.ts.map +1 -1
  37. package/ios/StreamVideoReactNative-Bridging-Header.h +2 -0
  38. package/ios/StreamVideoReactNative.m +81 -0
  39. package/ios/TracksRecorder/AudioPipeline.swift +270 -0
  40. package/ios/TracksRecorder/PipelineHost.swift +56 -0
  41. package/ios/TracksRecorder/RecorderAudioRenderTap.swift +154 -0
  42. package/ios/TracksRecorder/RecorderVideoSink.swift +137 -0
  43. package/ios/TracksRecorder/TracksRecorderManager.swift +327 -0
  44. package/ios/TracksRecorder/VideoPipeline.swift +297 -0
  45. package/package.json +7 -6
  46. package/src/components/Participant/ParticipantView/ParticipantLabel.tsx +5 -3
  47. package/src/hooks/index.ts +1 -0
  48. package/src/hooks/useLoopbackRecording.ts +438 -0
  49. package/src/utils/internal/callingx/callingx.ts +2 -2
  50. package/src/version.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -2,11 +2,23 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.39.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.38.2...@stream-io/video-react-native-sdk-1.39.0) (2026-06-19)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-client` updated to version `1.54.0`
10
+ - `@stream-io/video-react-bindings` updated to version `1.17.0`
11
+
12
+ ### Features
13
+
14
+ - **client:** show connecting indicator while video track is connecting ([#2275](https://github.com/GetStream/stream-video-js/issues/2275)) ([a9c670d](https://github.com/GetStream/stream-video-js/commit/a9c670dec44cc008f1b22aab8cb61998e71d3050)), closes [GetStream/react-native-webrtc#32](https://github.com/GetStream/react-native-webrtc/issues/32)
15
+
5
16
  ## [1.38.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.38.1...@stream-io/video-react-native-sdk-1.38.2) (2026-06-12)
6
17
 
7
18
  ### Dependency Updates
8
19
 
9
20
  - `@stream-io/video-client` updated to version `1.53.2`
21
+ - **client:** keep user_id populated in call event telemetry when a disconnect races an in-flight join ([#2284](https://github.com/GetStream/stream-video-js/issues/2284)) ([4403348](https://github.com/GetStream/stream-video-js/commit/4403348115500499cd60919a417d97659546bb8b))
10
22
  - `@stream-io/video-react-bindings` updated to version `1.16.5`
11
23
 
12
24
  ## [1.38.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.38.0...@stream-io/video-react-native-sdk-1.38.1) (2026-06-12)
@@ -15,6 +27,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
15
27
 
16
28
  - `@stream-io/react-native-callingx` updated to version `0.5.1`
17
29
  - `@stream-io/video-client` updated to version `1.53.1`
30
+ - **client:** Send call data in JoinInitiated event ([#2283](https://github.com/GetStream/stream-video-js/issues/2283)) ([7e9ce3e](https://github.com/GetStream/stream-video-js/commit/7e9ce3e3e3c4ebe8080f86793855a39abe7e19ef))
18
31
  - `@stream-io/video-react-bindings` updated to version `1.16.4`
19
32
 
20
33
  ### Bug Fixes
@@ -30,6 +43,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
30
43
  - `@stream-io/react-native-callingx` updated to version `0.5.0`
31
44
  - `@stream-io/video-filters-react-native` updated to version `0.13.0`
32
45
  - `@stream-io/video-client` updated to version `1.53.0`
46
+ - **Features**
47
+ - **client:** Call event reporting ([#2261](https://github.com/GetStream/stream-video-js/issues/2261)) ([246b8c8](https://github.com/GetStream/stream-video-js/commit/246b8c826cccd22a09cd34391e9a773e91860fa8))
48
+ - **Bug Fixes**
49
+ - **client:** preserve captured stage error in call event reporting ([#2281](https://github.com/GetStream/stream-video-js/issues/2281)) ([890ce0b](https://github.com/GetStream/stream-video-js/commit/890ce0b25d0f1530ba9ebd2ef56fe366f3377312))
33
50
  - `@stream-io/video-react-bindings` updated to version `1.16.3`
34
51
 
35
52
  - upgrade Expo config-plugin (react-native-webrtc) to v15 and bump Expo SDK 56 deps ([#2276](https://github.com/GetStream/stream-video-js/issues/2276)) ([af675b8](https://github.com/GetStream/stream-video-js/commit/af675b8bd6bcf08320f748cb8be1b56bedf13937))
@@ -65,6 +82,13 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
65
82
  - `@stream-io/react-native-callingx` updated to version `0.3.1`
66
83
  - `@stream-io/video-filters-react-native` updated to version `0.12.4`
67
84
  - `@stream-io/video-client` updated to version `1.52.0`
85
+ - **Features**
86
+ - **client:** add hasInterruptedTrack helper ([#2266](https://github.com/GetStream/stream-video-js/issues/2266)) ([c723eb6](https://github.com/GetStream/stream-video-js/commit/c723eb67bffcb00edc03e4960a0d3a600bba8687))
87
+ - **client:** echo negotiationId in subscriber offer answer ([#2166](https://github.com/GetStream/stream-video-js/issues/2166)) ([749e0ad](https://github.com/GetStream/stream-video-js/commit/749e0ad025d579cf2a2792e6016f5eaffb9ee7a7))
88
+ - **Bug Fixes**
89
+ - **client:** clamp drifted getStats timestamps to wall time ([#2258](https://github.com/GetStream/stream-video-js/issues/2258)) ([9d96df5](https://github.com/GetStream/stream-video-js/commit/9d96df552337fea27285a4260a4d1d76b39eb7b7))
90
+ - **Other**
91
+ - **deps:** upgrade React Native 0.85, React 19.2, Vite 8/Vitest 4, and Expo 56 ([#2268](https://github.com/GetStream/stream-video-js/issues/2268)) ([2c8ab9d](https://github.com/GetStream/stream-video-js/commit/2c8ab9d9238f3700dabbd04c9ce5bf3aaa4c7a13))
68
92
  - `@stream-io/video-react-bindings` updated to version `1.16.2`
69
93
 
70
94
  - **deps:** upgrade React Native 0.85, React 19.2, Vite 8/Vitest 4, and Expo 56 ([#2268](https://github.com/GetStream/stream-video-js/issues/2268)) ([2c8ab9d](https://github.com/GetStream/stream-video-js/commit/2c8ab9d9238f3700dabbd04c9ce5bf3aaa4c7a13))
@@ -77,6 +101,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
77
101
  - `@stream-io/react-native-callingx` updated to version `0.3.1`
78
102
  - `@stream-io/video-filters-react-native` updated to version `0.12.3`
79
103
  - `@stream-io/video-client` updated to version `1.51.0`
104
+ - **Features**
105
+ - **client:** Register virtual devices ([#2220](https://github.com/GetStream/stream-video-js/issues/2220)) ([c663e2d](https://github.com/GetStream/stream-video-js/commit/c663e2df9f82cf64c38a9d3e6a1e86282107b27d))
106
+ - **Bug Fixes**
107
+ - **client:** bail reconnects during in-flight lifecycles and clean up listeners ([#2257](https://github.com/GetStream/stream-video-js/issues/2257)) ([f6fa17e](https://github.com/GetStream/stream-video-js/commit/f6fa17e041cef1aebeba38b06d6cfba5c085e5a6))
108
+ - **client:** stop sending RTP after track.stop() on Firefox ([#2237](https://github.com/GetStream/stream-video-js/issues/2237)) ([5b7e9b8](https://github.com/GetStream/stream-video-js/commit/5b7e9b8bd17c43f17d66586dd88617ae91bac609))
80
109
  - `@stream-io/video-react-bindings` updated to version `1.16.1`
81
110
 
82
111
  - pinned rn version ([#2259](https://github.com/GetStream/stream-video-js/issues/2259)) ([04d192e](https://github.com/GetStream/stream-video-js/commit/04d192ed9aca73705fd5eefa8184e29ebc778eea))
@@ -103,6 +132,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
103
132
  ### Dependency Updates
104
133
 
105
134
  - `@stream-io/video-client` updated to version `1.50.0`
135
+ - **Features**
136
+ - **client:** honor SFU degradationPreference on the publisher ([#2241](https://github.com/GetStream/stream-video-js/issues/2241)) ([85b34a3](https://github.com/GetStream/stream-video-js/commit/85b34a39ba669b59fb1842f047a5c03c4fd196f9)), closes [#1886](https://github.com/GetStream/stream-video-js/issues/1886)
137
+ - **Bug Fixes**
138
+ - **client:** prevent call.join() hang on silent WS handshake stall ([#2225](https://github.com/GetStream/stream-video-js/issues/2225)) ([68cf5f0](https://github.com/GetStream/stream-video-js/commit/68cf5f05bdd1b2ecb2b14814f4702c14d84dea13))
106
139
  - `@stream-io/video-react-bindings` updated to version `1.16.0`
107
140
 
108
141
  ### Features
@@ -121,6 +154,14 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
121
154
  - `@stream-io/react-native-callingx` updated to version `0.2.0`
122
155
  - `@stream-io/video-filters-react-native` updated to version `0.12.2`
123
156
  - `@stream-io/video-client` updated to version `1.49.0`
157
+ - **Features**
158
+ - **client:** bound SFU reconnection attempts and harden ICE recovery ([#2221](https://github.com/GetStream/stream-video-js/issues/2221)) ([bf837b1](https://github.com/GetStream/stream-video-js/commit/bf837b1bbabe5ff4a9a183b5581ef7963ed6cde0))
159
+ - **Bug Fixes**
160
+ - **client:** capture sessionId before await in updateLocalStreamState ([#2229](https://github.com/GetStream/stream-video-js/issues/2229)) ([e48ec08](https://github.com/GetStream/stream-video-js/commit/e48ec0848651ff461a18f379283edce2359ce65a))
161
+ - **client:** prevent screen share audio loopback by default ([#2226](https://github.com/GetStream/stream-video-js/issues/2226)) ([6877fb5](https://github.com/GetStream/stream-video-js/commit/6877fb51c168cfcc1b908dfde3c088f1af4b5c27))
162
+ - **client:** stale local publishedTracks after mute and SFU reconnect ([#2230](https://github.com/GetStream/stream-video-js/issues/2230)) ([728147a](https://github.com/GetStream/stream-video-js/commit/728147aab154247e178d4414dd8095285844f5e1))
163
+ - **react:** Improve background filter degradation detection ([#2210](https://github.com/GetStream/stream-video-js/issues/2210)) ([391915e](https://github.com/GetStream/stream-video-js/commit/391915e1e025ce3eaf5ebe7b135f57463ead8e42))
164
+ - **screenshare:** disable echoCancellation by default for screen share audio ([dfc95b1](https://github.com/GetStream/stream-video-js/commit/dfc95b19ca6b723573e1c5970a3ccd6048653480))
124
165
  - `@stream-io/video-react-bindings` updated to version `1.15.1`
125
166
 
126
167
  - added expo plugins ([#2207](https://github.com/GetStream/stream-video-js/issues/2207)) ([2199149](https://github.com/GetStream/stream-video-js/commit/2199149fac1ce1db1b5d6e812660a22f6b817065))
@@ -158,6 +199,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
158
199
  ### Dependency Updates
159
200
 
160
201
  - `@stream-io/video-client` updated to version `1.47.0`
202
+ - **Features**
203
+ - **client:** JoinCall with hints for high scale livestream ([#2199](https://github.com/GetStream/stream-video-js/issues/2199)) ([704681a](https://github.com/GetStream/stream-video-js/commit/704681ad9ce7a0013325b6db91644e1907d0db0b))
204
+ - **Bug Fixes**
205
+ - **client:** align device preference persistence with permission and track end events ([#2196](https://github.com/GetStream/stream-video-js/issues/2196)) ([b4ed7c2](https://github.com/GetStream/stream-video-js/commit/b4ed7c2c6bc6fb6777a411b69747ccc36aa82f44))
161
206
  - `@stream-io/video-react-bindings` updated to version `1.14.2`
162
207
 
163
208
  ## [1.32.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.32.1...@stream-io/video-react-native-sdk-1.32.2) (2026-04-09)
@@ -172,6 +217,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
172
217
 
173
218
  - `@stream-io/react-native-callingx` updated to version `0.1.0`
174
219
  - `@stream-io/video-client` updated to version `1.46.1`
220
+ - **Bug Fixes**
221
+ - ignore late ICE candidates after cleanup for RN speech detector ([#2193](https://github.com/GetStream/stream-video-js/issues/2193)) ([f8735d6](https://github.com/GetStream/stream-video-js/commit/f8735d604d86fc476b9b7e01eed0af03176625be))
222
+ - **Other**
223
+ - remove listeners and stop even on permission error - rn speech detector ([f4fdd9e](https://github.com/GetStream/stream-video-js/commit/f4fdd9e1a008b52011ef18562152aad60a1f7936))
175
224
  - `@stream-io/video-react-bindings` updated to version `1.14.1`
176
225
 
177
226
  ## [1.32.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.31.1...@stream-io/video-react-native-sdk-1.32.0) (2026-04-09)
@@ -182,6 +231,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
182
231
  - `@stream-io/react-native-callingx` updated to version `0.1.0`
183
232
  - `@stream-io/video-filters-react-native` updated to version `0.12.0`
184
233
  - `@stream-io/video-client` updated to version `1.46.0`
234
+ - **Features**
235
+ - **client:** expose blocked autoplay audio state and explicit resume API ([#2187](https://github.com/GetStream/stream-video-js/issues/2187)) ([adbec63](https://github.com/GetStream/stream-video-js/commit/adbec63a23d47cf7c1002897e242c3f2a6a7007c))
236
+ - **Bug Fixes**
237
+ - **client:** deduplicate mic.capture_report trace emissions ([#2189](https://github.com/GetStream/stream-video-js/issues/2189)) ([152ae90](https://github.com/GetStream/stream-video-js/commit/152ae907910616e79bc20321bc56df4cfe0dcc4a))
238
+ - **client:** support server-side pinning on participant join ([#2190](https://github.com/GetStream/stream-video-js/issues/2190)) ([2c354a4](https://github.com/GetStream/stream-video-js/commit/2c354a4b05f688766663bd13e0da7da601c8971d))
185
239
  - `@stream-io/video-react-bindings` updated to version `1.14.0`
186
240
 
187
241
  ### Features
@@ -193,6 +247,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
193
247
  ### Dependency Updates
194
248
 
195
249
  - `@stream-io/video-client` updated to version `1.45.0`
250
+ - **Features**
251
+ - **client:** Disconnected device event ([#2178](https://github.com/GetStream/stream-video-js/issues/2178)) ([5017ca0](https://github.com/GetStream/stream-video-js/commit/5017ca0fd53f5d203167d55227cb7fddc055705a))
252
+ - **Bug Fixes**
253
+ - **client:** warn about dangling audio bindings only for published audio tracks ([#2183](https://github.com/GetStream/stream-video-js/issues/2183)) ([ff47662](https://github.com/GetStream/stream-video-js/commit/ff47662484cd666cf321b61d9b49dd4eb161192f))
196
254
  - `@stream-io/video-react-bindings` updated to version `1.13.15`
197
255
 
198
256
  ### Bug Fixes
@@ -215,13 +273,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
215
273
  ### Dependency Updates
216
274
 
217
275
  - `@stream-io/video-client` updated to version `1.44.5`
276
+ - make WebAudio opt-in, add AudioBindingsWatchdog ([#2171](https://github.com/GetStream/stream-video-js/issues/2171)) ([8d00f48](https://github.com/GetStream/stream-video-js/commit/8d00f485a37fec23dca340d32738a3cb1f7f325a))
218
277
  - `@stream-io/video-react-bindings` updated to version `1.13.14`
278
+ - **react:** reset recording toggle state and expose record button errors ([#2174](https://github.com/GetStream/stream-video-js/issues/2174)) ([2af6347](https://github.com/GetStream/stream-video-js/commit/2af63478ad9050bf339212537a6cb424f97387b8))
219
279
 
220
280
  ## [1.30.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.3...@stream-io/video-react-native-sdk-1.30.4) (2026-03-20)
221
281
 
222
282
  ### Dependency Updates
223
283
 
224
284
  - `@stream-io/video-client` updated to version `1.44.4`
285
+ - **Bug Fixes**
286
+ - **react:** remove default broken microphone notification from call controls ([#2158](https://github.com/GetStream/stream-video-js/issues/2158)) ([4a95b9c](https://github.com/GetStream/stream-video-js/commit/4a95b9c29e9d2728ae7eea764f07ec8507aa0f5a))
287
+ - **Other**
288
+ - trace device permission state transitions ([#2168](https://github.com/GetStream/stream-video-js/issues/2168)) ([e4203a3](https://github.com/GetStream/stream-video-js/commit/e4203a34cad1c90d1bc5612fc379dd1f0f0ebe5d))
225
289
  - `@stream-io/video-react-bindings` updated to version `1.13.13`
226
290
 
227
291
  ## [1.30.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.2...@stream-io/video-react-native-sdk-1.30.3) (2026-03-06)
@@ -229,6 +293,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
229
293
  ### Dependency Updates
230
294
 
231
295
  - `@stream-io/video-client` updated to version `1.44.3`
296
+ - **client:** prevent concurrent SFU updateSubscriptions during reconnects ([#2155](https://github.com/GetStream/stream-video-js/issues/2155)) ([1ac32d2](https://github.com/GetStream/stream-video-js/commit/1ac32d261c9a54aa8e3636a60e3c8f3e1407ae16))
232
297
  - `@stream-io/video-react-bindings` updated to version `1.13.12`
233
298
 
234
299
  ## [1.30.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.30.1...@stream-io/video-react-native-sdk-1.30.2) (2026-03-06)
@@ -238,6 +303,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
238
303
  - `@stream-io/noise-cancellation-react-native` updated to version `0.5.1`
239
304
  - `@stream-io/video-filters-react-native` updated to version `0.10.1`
240
305
  - `@stream-io/video-client` updated to version `1.44.2`
306
+ - do not setup speaker early for ringing type calls ([#2154](https://github.com/GetStream/stream-video-js/issues/2154)) ([57adb90](https://github.com/GetStream/stream-video-js/commit/57adb90f03cfaceb4e6d3c050feaea239b80b1d9))
241
307
  - `@stream-io/video-react-bindings` updated to version `1.13.11`
242
308
 
243
309
  ### Bug Fixes
@@ -249,6 +315,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
249
315
  ### Dependency Updates
250
316
 
251
317
  - `@stream-io/video-client` updated to version `1.44.1`
318
+ - **client:** handle SFU tag changes during reconnect ([#2149](https://github.com/GetStream/stream-video-js/issues/2149)) ([5aa89d3](https://github.com/GetStream/stream-video-js/commit/5aa89d378a73d33d8e46a6eb40e688bd0f50cca9)), closes [#2121](https://github.com/GetStream/stream-video-js/issues/2121)
252
319
  - `@stream-io/video-react-bindings` updated to version `1.13.10`
253
320
 
254
321
  ### Bug Fixes
@@ -260,6 +327,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
260
327
  ### Dependency Updates
261
328
 
262
329
  - `@stream-io/video-client` updated to version `1.44.0`
330
+ - **Features**
331
+ - **react:** Deprecate usePersistedDevicePreferences and move the logic to the SDK core ([#2108](https://github.com/GetStream/stream-video-js/issues/2108)) ([7bbbd93](https://github.com/GetStream/stream-video-js/commit/7bbbd93bdd93dd4ebed02c089b6a4ab8423135fd))
332
+ - **react:** Embeddable/pre-built video components ([#2117](https://github.com/GetStream/stream-video-js/issues/2117)) ([11b4b9f](https://github.com/GetStream/stream-video-js/commit/11b4b9f0438877a5917c95117474cedc1f693907))
333
+ - **Bug Fixes**
334
+ - allow anonymous StreamVideoClientOptions to accept token fields ([#2142](https://github.com/GetStream/stream-video-js/issues/2142)) ([165a9c3](https://github.com/GetStream/stream-video-js/commit/165a9c305dda6cae0fde78c446825a7da11f302c)), closes [#2138](https://github.com/GetStream/stream-video-js/issues/2138)
335
+ - Allow guest and anonymous users without auth options ([#2140](https://github.com/GetStream/stream-video-js/issues/2140)) ([12749ae](https://github.com/GetStream/stream-video-js/commit/12749ae2552a2b8c0442cb8beaa34e13f66cc7e6)), closes [#2138](https://github.com/GetStream/stream-video-js/issues/2138)
336
+ - Strengthen StreamVideoClientOptions types and align React sample apps ([#2138](https://github.com/GetStream/stream-video-js/issues/2138)) ([915f990](https://github.com/GetStream/stream-video-js/commit/915f9904e045f61593c7328f790cd54516c80213))
337
+ - **Other**
338
+ - update agent instructions [skip ci] ([9cec4c6](https://github.com/GetStream/stream-video-js/commit/9cec4c6431ff51549fcfc870a0df935b0b8aa850))
263
339
  - `@stream-io/video-react-bindings` updated to version `1.13.9`
264
340
 
265
341
  ### Features
@@ -271,6 +347,13 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
271
347
  ### Dependency Updates
272
348
 
273
349
  - `@stream-io/video-client` updated to version `1.43.0`
350
+ - **Features**
351
+ - **client:** add list recording APIs and deprecate query methods ([#2135](https://github.com/GetStream/stream-video-js/issues/2135)) ([5331cb5](https://github.com/GetStream/stream-video-js/commit/5331cb5205466dc052c729fb07d84209208af362))
352
+ - **Bug Fixes**
353
+ - **client:** harden flat-line no-audio detection ([#2131](https://github.com/GetStream/stream-video-js/issues/2131)) ([9c2aa22](https://github.com/GetStream/stream-video-js/commit/9c2aa222b189c5e24510430dfddbf164555abf1c))
354
+ - **client:** prevent stale speaking-while-muted detector ([#2130](https://github.com/GetStream/stream-video-js/issues/2130)) ([e5c408d](https://github.com/GetStream/stream-video-js/commit/e5c408d73de1b8f20e775642b0b19eb0ffd979a8))
355
+ - **Other**
356
+ - **client:** trace updatePublishOptions overrides ([#2136](https://github.com/GetStream/stream-video-js/issues/2136)) ([bcc1e92](https://github.com/GetStream/stream-video-js/commit/bcc1e92ac89374324a57d1df85be38a2661a4c53))
274
357
  - `@stream-io/video-react-bindings` updated to version `1.13.8`
275
358
 
276
359
  ## [1.29.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.29.2...@stream-io/video-react-native-sdk-1.29.3) (2026-02-16)
@@ -289,6 +372,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
289
372
  ### Dependency Updates
290
373
 
291
374
  - `@stream-io/video-client` updated to version `1.42.2`
375
+ - improve the handling of join errors and prevent cross-socket event leaking ([#2121](https://github.com/GetStream/stream-video-js/issues/2121)) ([72d0834](https://github.com/GetStream/stream-video-js/commit/72d08343243990f14f29103734eea6f7cb6092c9))
292
376
  - `@stream-io/video-react-bindings` updated to version `1.13.6`
293
377
 
294
378
  ## [1.29.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.29.0...@stream-io/video-react-native-sdk-1.29.1) (2026-02-10)
@@ -308,6 +392,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
308
392
  ### Dependency Updates
309
393
 
310
394
  - `@stream-io/video-client` updated to version `1.42.0`
395
+ - **Features**
396
+ - Detectors for broken microphone setup ([#2090](https://github.com/GetStream/stream-video-js/issues/2090)) ([552b3f4](https://github.com/GetStream/stream-video-js/commit/552b3f4e3c54e0b6fa67221cd510f4ea1f6f8a61))
397
+ - **Bug Fixes**
398
+ - **react:** apply defaultConstraints to speaking-while-muted detection stream ([#2103](https://github.com/GetStream/stream-video-js/issues/2103)) ([28b5538](https://github.com/GetStream/stream-video-js/commit/28b55380778723fc308d37396c8095a5a3ef7aa2))
399
+ - start speaking while muted detection in pristine state too ([#2110](https://github.com/GetStream/stream-video-js/issues/2110)) ([bc093bc](https://github.com/GetStream/stream-video-js/commit/bc093bc3ac2451541524b134a9044131a69964af))
311
400
  - `@stream-io/video-react-bindings` updated to version `1.13.4`
312
401
 
313
402
  ### Features
@@ -319,6 +408,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
319
408
  ### Dependency Updates
320
409
 
321
410
  - `@stream-io/video-client` updated to version `1.41.3`
411
+ - **react:** improve logic for calculating the lower / upper threshold for video filter degradation ([#2094](https://github.com/GetStream/stream-video-js/issues/2094)) ([5cd2d5c](https://github.com/GetStream/stream-video-js/commit/5cd2d5cb34fc7bbdfaf9529eb9f8d33a40346cab))
412
+ - **stats:** adjust send stats frequency and include "leave reason" ([#2104](https://github.com/GetStream/stream-video-js/issues/2104)) ([0182832](https://github.com/GetStream/stream-video-js/commit/018283299bebe5d5078d4006ec86b6cd56884e77))
322
413
  - `@stream-io/video-react-bindings` updated to version `1.13.3`
323
414
 
324
415
  ## [1.28.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.28.1...@stream-io/video-react-native-sdk-1.28.2) (2026-01-28)
@@ -326,6 +417,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
326
417
  ### Dependency Updates
327
418
 
328
419
  - `@stream-io/video-client` updated to version `1.41.2`
420
+ - deduplicate RN compatibility assertions ([#2101](https://github.com/GetStream/stream-video-js/issues/2101)) ([5b9e6bc](https://github.com/GetStream/stream-video-js/commit/5b9e6bc227c55b067eea6345315bca015c8a7ee4))
329
421
  - `@stream-io/video-react-bindings` updated to version `1.13.2`
330
422
 
331
423
  ## [1.28.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.28.0...@stream-io/video-react-native-sdk-1.28.1) (2026-01-26)
@@ -333,6 +425,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
333
425
  ### Dependency Updates
334
426
 
335
427
  - `@stream-io/video-client` updated to version `1.41.1`
428
+ - **safari:** Handle interrupted AudioContext and AudioSession states ([#2098](https://github.com/GetStream/stream-video-js/issues/2098)) ([975901f](https://github.com/GetStream/stream-video-js/commit/975901f399b46479928ec1e9f32da7e47bba9ad3))
336
429
  - `@stream-io/video-react-bindings` updated to version `1.13.1`
337
430
 
338
431
  ### Bug Fixes
@@ -347,6 +440,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
347
440
  - `@stream-io/noise-cancellation-react-native` updated to version `0.5.0`
348
441
  - `@stream-io/video-filters-react-native` updated to version `0.10.0`
349
442
  - `@stream-io/video-client` updated to version `1.41.0`
443
+ - **Features**
444
+ - **recording:** Support for Individual, Raw and Composite recording ([#2071](https://github.com/GetStream/stream-video-js/issues/2071)) ([e53269c](https://github.com/GetStream/stream-video-js/commit/e53269ce697121b70dbebaf4a6d2cf875440a2af))
445
+ - **Bug Fixes**
446
+ - add start bitrate even if there is no existing fmtp line ([#2088](https://github.com/GetStream/stream-video-js/issues/2088)) ([ae1f496](https://github.com/GetStream/stream-video-js/commit/ae1f4965a7ab0b00dbdea45090c6aed49eafabb7))
350
447
  - `@stream-io/video-react-bindings` updated to version `1.13.0`
351
448
 
352
449
  ### Features
@@ -358,6 +455,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
358
455
  ### Dependency Updates
359
456
 
360
457
  - `@stream-io/video-client` updated to version `1.40.3`
458
+ - **react:** resolve call state race condition when using join with ring ([#2086](https://github.com/GetStream/stream-video-js/issues/2086)) ([6c2d3b3](https://github.com/GetStream/stream-video-js/commit/6c2d3b35ac96dbf7a85cadba47068a0e417d65be)), closes [#1755](https://github.com/GetStream/stream-video-js/issues/1755) [#2035](https://github.com/GetStream/stream-video-js/issues/2035)
459
+ - **react:** resolve call state race condition when using join with ring ([#2084](https://github.com/GetStream/stream-video-js/issues/2084)) ([f9b5946](https://github.com/GetStream/stream-video-js/commit/f9b59465f22b35304dbd01601e3f6166e1d02ea0)), closes [#1755](https://github.com/GetStream/stream-video-js/issues/1755) [#2035](https://github.com/GetStream/stream-video-js/issues/2035)
361
460
  - `@stream-io/video-react-bindings` updated to version `1.12.10`
362
461
 
363
462
  ### Bug Fixes
@@ -369,6 +468,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
369
468
  ### Dependency Updates
370
469
 
371
470
  - `@stream-io/video-client` updated to version `1.40.2`
471
+ - handle unrecoverable SFU join errors ([9b8198d](https://github.com/GetStream/stream-video-js/commit/9b8198d00e901a8eade169495a14d25c8d3bdf1e))
472
+ - handle unrecoverable SFU join errors ([#2083](https://github.com/GetStream/stream-video-js/issues/2083)) ([6ffb576](https://github.com/GetStream/stream-video-js/commit/6ffb5761b3dfb8e649cfa4f16dd30d294475eeae))
372
473
  - `@stream-io/video-react-bindings` updated to version `1.12.9`
373
474
 
374
475
  ## [1.27.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.27.1...@stream-io/video-react-native-sdk-1.27.2) (2026-01-14)
@@ -376,6 +477,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
376
477
  ### Dependency Updates
377
478
 
378
479
  - `@stream-io/video-client` updated to version `1.40.1`
480
+ - ensure proper set up of server-side preferences for mic and camera ([#2080](https://github.com/GetStream/stream-video-js/issues/2080)) ([3529c8f](https://github.com/GetStream/stream-video-js/commit/3529c8fc0233d3f9f8f21c80cffc4ec27334954f))
379
481
  - `@stream-io/video-react-bindings` updated to version `1.12.8`
380
482
 
381
483
  ## [1.27.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.27.0...@stream-io/video-react-native-sdk-1.27.1) (2026-01-09)
@@ -383,6 +485,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
383
485
  ### Dependency Updates
384
486
 
385
487
  - `@stream-io/video-client` updated to version `1.40.0`
488
+ - Call Stats Map ([#2025](https://github.com/GetStream/stream-video-js/issues/2025)) ([6c784f0](https://github.com/GetStream/stream-video-js/commit/6c784f0acacce3d23d0f589ff423d6a0d04c1e95))
386
489
  - `@stream-io/video-react-bindings` updated to version `1.12.7`
387
490
 
388
491
  ## [1.27.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.6...@stream-io/video-react-native-sdk-1.27.0) (2025-12-30)
@@ -400,6 +503,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
400
503
  ### Dependency Updates
401
504
 
402
505
  - `@stream-io/video-client` updated to version `1.39.3`
506
+ - adjusted shouldRejectCall implementation ([#2072](https://github.com/GetStream/stream-video-js/issues/2072)) ([2107e3d](https://github.com/GetStream/stream-video-js/commit/2107e3db65309664a7797cacae054aeb7a371f4a))
507
+ - **rpc:** Reliable SFU request timeouts ([#2066](https://github.com/GetStream/stream-video-js/issues/2066)) ([f842b74](https://github.com/GetStream/stream-video-js/commit/f842b74109af02c8454f5ff4f6618baac650ed4e))
403
508
  - `@stream-io/video-react-bindings` updated to version `1.12.6`
404
509
 
405
510
  ### Bug Fixes
@@ -411,6 +516,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
411
516
  ### Dependency Updates
412
517
 
413
518
  - `@stream-io/video-client` updated to version `1.39.2`
519
+ - **Bug Fixes**
520
+ - **safari:** verify that AudioContext supports `setSinkId` ([#2069](https://github.com/GetStream/stream-video-js/issues/2069)) ([e7fbe10](https://github.com/GetStream/stream-video-js/commit/e7fbe10d06acce52a2e3f4f7d008882fa23e9c89))
521
+ - slow rampup on vp9/h264 codec ([#2056](https://github.com/GetStream/stream-video-js/issues/2056)) ([b5ad360](https://github.com/GetStream/stream-video-js/commit/b5ad360eab83a139198d05b4f42b777315135ab6))
522
+ - **Other**
523
+ - upgrade stream dependencies ([#2065](https://github.com/GetStream/stream-video-js/issues/2065)) ([04ca858](https://github.com/GetStream/stream-video-js/commit/04ca858517072f861c1ddae0876f0b425ca658e2))
414
524
  - `@stream-io/video-react-bindings` updated to version `1.12.5`
415
525
 
416
526
  ### Bug Fixes
@@ -436,6 +546,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
436
546
 
437
547
  - `@stream-io/noise-cancellation-react-native` updated to version `0.4.3`
438
548
  - `@stream-io/video-client` updated to version `1.39.0`
549
+ - **Features**
550
+ - **react:** Retryable call watching ([#2046](https://github.com/GetStream/stream-video-js/issues/2046)) ([7205011](https://github.com/GetStream/stream-video-js/commit/7205011a451995585848b89388c91ae9a1b0bc64))
551
+ - **Bug Fixes**
552
+ - add response tracing for the SetPublisher RPC ([#2055](https://github.com/GetStream/stream-video-js/issues/2055)) ([a25d9a8](https://github.com/GetStream/stream-video-js/commit/a25d9a89870db47be046f31c85888995e43d44cd))
439
553
  - `@stream-io/video-react-bindings` updated to version `1.12.3`
440
554
 
441
555
  ### Bug Fixes
@@ -447,6 +561,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
447
561
  ### Dependency Updates
448
562
 
449
563
  - `@stream-io/video-client` updated to version `1.38.2`
564
+ - revert usage of useSyncExternalStore ([#2043](https://github.com/GetStream/stream-video-js/issues/2043)) ([849e896](https://github.com/GetStream/stream-video-js/commit/849e8964ac90d5785a6d608443f80156d1081744)), closes [#1953](https://github.com/GetStream/stream-video-js/issues/1953) [#2034](https://github.com/GetStream/stream-video-js/issues/2034) [#2006](https://github.com/GetStream/stream-video-js/issues/2006) [#2008](https://github.com/GetStream/stream-video-js/issues/2008)
450
565
  - `@stream-io/video-react-bindings` updated to version `1.12.2`
451
566
 
452
567
  ## [1.26.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.0...@stream-io/video-react-native-sdk-1.26.1) (2025-12-08)
@@ -454,6 +569,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
454
569
  ### Dependency Updates
455
570
 
456
571
  - `@stream-io/video-client` updated to version `1.38.1`
572
+ - added call state update for handling case when call.ring event as not triggered ([#2035](https://github.com/GetStream/stream-video-js/issues/2035)) ([3c79665](https://github.com/GetStream/stream-video-js/commit/3c79665323ad5172d3af35e9ee2f86655ac11670))
573
+ - **state:** ensure stable empty array for participant predicates ([#2036](https://github.com/GetStream/stream-video-js/issues/2036)) ([1aa72c8](https://github.com/GetStream/stream-video-js/commit/1aa72c8daf482bd157866960b4b9a92e272ac90b)), closes [#2034](https://github.com/GetStream/stream-video-js/issues/2034) [#2008](https://github.com/GetStream/stream-video-js/issues/2008)
457
574
  - `@stream-io/video-react-bindings` updated to version `1.12.1`
458
575
 
459
576
  ## [1.26.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.25.0...@stream-io/video-react-native-sdk-1.26.0) (2025-12-08)
@@ -463,6 +580,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
463
580
  - `@stream-io/noise-cancellation-react-native` updated to version `0.4.2`
464
581
  - `@stream-io/video-filters-react-native` updated to version `0.9.2`
465
582
  - `@stream-io/video-client` updated to version `1.38.0`
583
+ - **react:** Extend the statistics report with audio stats ([#2020](https://github.com/GetStream/stream-video-js/issues/2020)) ([0f4df3c](https://github.com/GetStream/stream-video-js/commit/0f4df3ce5f3b865c8ef09766dd72bc33f65539f3))
466
584
  - `@stream-io/video-react-bindings` updated to version `1.12.0`
467
585
 
468
586
  - remove default sound from jsdoc comment for notifications ([8f38784](https://github.com/GetStream/stream-video-js/commit/8f38784c41808fb65a31f2e5591a71c32b201eca))
@@ -484,6 +602,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
484
602
 
485
603
  - `@stream-io/noise-cancellation-react-native` updated to version `0.4.2`
486
604
  - `@stream-io/video-client` updated to version `1.37.3`
605
+ - 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))
487
606
  - `@stream-io/video-react-bindings` updated to version `1.11.4`
488
607
 
489
608
  - 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))
@@ -499,6 +618,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
499
618
  - `@stream-io/noise-cancellation-react-native` updated to version `0.4.1`
500
619
  - `@stream-io/video-filters-react-native` updated to version `0.9.1`
501
620
  - `@stream-io/video-client` updated to version `1.37.2`
621
+ - **react-bindings:** getSnapshot caching ([#2008](https://github.com/GetStream/stream-video-js/issues/2008)) ([ed0983c](https://github.com/GetStream/stream-video-js/commit/ed0983cf2d1525a2faaa0b9e9387ac448b35c8e1)), closes [#2006](https://github.com/GetStream/stream-video-js/issues/2006) [#1953](https://github.com/GetStream/stream-video-js/issues/1953)
502
622
  - `@stream-io/video-react-bindings` updated to version `1.11.3`
503
623
 
504
624
  - update react-native to 0.81.5 ([33554fc](https://github.com/GetStream/stream-video-js/commit/33554fc31015f4af57ba19b1f925b19fbfcbe0ea))
@@ -522,6 +642,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
522
642
 
523
643
  - `@stream-io/video-filters-react-native` updated to version `0.9.0`
524
644
  - `@stream-io/video-client` updated to version `1.37.0`
645
+ - ring individual members ([#1755](https://github.com/GetStream/stream-video-js/issues/1755)) ([57564d6](https://github.com/GetStream/stream-video-js/commit/57564d63f21da7b95b582f74c88b24af7e77659c))
525
646
  - `@stream-io/video-react-bindings` updated to version `1.11.1`
526
647
 
527
648
  ## [1.24.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.2...@stream-io/video-react-native-sdk-1.24.3) (2025-11-12)
@@ -529,7 +650,9 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
529
650
  ### Dependency Updates
530
651
 
531
652
  - `@stream-io/video-client` updated to version `1.36.1`
653
+ - enforce the client to publish options on SDP level ([#1976](https://github.com/GetStream/stream-video-js/issues/1976)) ([1d93f72](https://github.com/GetStream/stream-video-js/commit/1d93f72cb4395aaf9b487eb66e0c3b6a8111aca4))
532
654
  - `@stream-io/video-react-bindings` updated to version `1.11.0`
655
+ - **react-bindings:** integrate useSyncExternalStore in useObservableValue ([#1953](https://github.com/GetStream/stream-video-js/issues/1953)) ([ad4b147](https://github.com/GetStream/stream-video-js/commit/ad4b147713f40c96658ddaf70a01d7ca8e369a14))
533
656
 
534
657
  ### Bug Fixes
535
658
 
@@ -574,6 +697,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
574
697
  ### Dependency Updates
575
698
 
576
699
  - `@stream-io/video-client` updated to version `1.35.1`
700
+ - **deps-dev:** bump happy-dom from 20.0.0 to 20.0.2 ([#1970](https://github.com/GetStream/stream-video-js/issues/1970)) ([702f409](https://github.com/GetStream/stream-video-js/commit/702f409b2e5529e7b8f1cfc757e2e776c75deacf)), closes [#1934](https://github.com/GetStream/stream-video-js/issues/1934) [#1932](https://github.com/GetStream/stream-video-js/issues/1932) [#0](https://github.com/GetStream/stream-video-js/issues/0) [#1934](https://github.com/GetStream/stream-video-js/issues/1934) [#0](https://github.com/GetStream/stream-video-js/issues/0) [#1932](https://github.com/GetStream/stream-video-js/issues/1932)
577
701
  - `@stream-io/video-react-bindings` updated to version `1.10.3`
578
702
 
579
703
  ### Features
@@ -589,6 +713,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
589
713
  ### Dependency Updates
590
714
 
591
715
  - `@stream-io/video-client` updated to version `1.35.0`
716
+ - Participant Stats ([#1922](https://github.com/GetStream/stream-video-js/issues/1922)) ([b96de03](https://github.com/GetStream/stream-video-js/commit/b96de03a2b96db2288a6d2d52a25d3deea9148d8))
592
717
  - `@stream-io/video-react-bindings` updated to version `1.10.2`
593
718
 
594
719
  ### Bug Fixes
@@ -606,6 +731,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
606
731
  ### Dependency Updates
607
732
 
608
733
  - `@stream-io/video-client` updated to version `1.34.1`
734
+ - camera toggle along with flip ([#1961](https://github.com/GetStream/stream-video-js/issues/1961)) ([2703121](https://github.com/GetStream/stream-video-js/commit/2703121d27aee7a54bdc07b99a30feea9a4e4512))
609
735
  - `@stream-io/video-react-bindings` updated to version `1.10.1`
610
736
 
611
737
  ### Bug Fixes
@@ -619,6 +745,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
619
745
  - `@stream-io/noise-cancellation-react-native` updated to version `0.4.0`
620
746
  - `@stream-io/video-filters-react-native` updated to version `0.8.0`
621
747
  - `@stream-io/video-client` updated to version `1.34.0`
748
+ - **Bug Fixes**
749
+ - flush rtc stats when reconnecting ([#1946](https://github.com/GetStream/stream-video-js/issues/1946)) ([fb1f6fc](https://github.com/GetStream/stream-video-js/commit/fb1f6fcb2837154a4fe746a6efe4f9a4830bca20))
750
+ - **Other**
751
+ - use fromPartial instead of suppressing ts-errors ([#1949](https://github.com/GetStream/stream-video-js/issues/1949)) ([95e5654](https://github.com/GetStream/stream-video-js/commit/95e5654e2bac5dc7c5126079795fca9951652290))
622
752
  - `@stream-io/video-react-bindings` updated to version `1.10.0`
623
753
 
624
754
  - add useEffectEvent shim to bindings with react 19.2 dev dep ([#1944](https://github.com/GetStream/stream-video-js/issues/1944)) ([26ca6bd](https://github.com/GetStream/stream-video-js/commit/26ca6bd7702d4960c098104e12db18f7d8afc7ce))
@@ -639,6 +769,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
639
769
  ### Dependency Updates
640
770
 
641
771
  - `@stream-io/video-client` updated to version `1.33.1`
772
+ - ensure ingress participants are prioritized ([#1943](https://github.com/GetStream/stream-video-js/issues/1943)) ([a51a119](https://github.com/GetStream/stream-video-js/commit/a51a119cfb9f13736395b4afb3d3947ef994a6d9))
642
773
  - `@stream-io/video-react-bindings` updated to version `1.9.1`
643
774
 
644
775
  ## [1.21.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.21.0...@stream-io/video-react-native-sdk-1.21.1) (2025-09-30)
@@ -646,6 +777,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
646
777
  ### Dependency Updates
647
778
 
648
779
  - `@stream-io/video-client` updated to version `1.33.0`
780
+ - **Features**
781
+ - Audio profiles and Hi-Fi stereo audio ([#1887](https://github.com/GetStream/stream-video-js/issues/1887)) ([3b60c89](https://github.com/GetStream/stream-video-js/commit/3b60c89b8c0dbc40544fe13be79c10e93bbddd3d))
782
+ - **Bug Fixes**
783
+ - **client:** server side pinning ([#1936](https://github.com/GetStream/stream-video-js/issues/1936)) ([cd33b9e](https://github.com/GetStream/stream-video-js/commit/cd33b9e4417e8fdc452b6d4a192e10183ddfa31b))
649
784
  - `@stream-io/video-react-bindings` updated to version `1.9.0`
650
785
 
651
786
  ### Bug Fixes
@@ -659,6 +794,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
659
794
  - `@stream-io/noise-cancellation-react-native` updated to version `0.3.0`
660
795
  - `@stream-io/video-filters-react-native` updated to version `0.7.0`
661
796
  - `@stream-io/video-client` updated to version `1.32.0`
797
+ - restore calling state after unrecoverable join fail ([#1935](https://github.com/GetStream/stream-video-js/issues/1935)) ([8ab0168](https://github.com/GetStream/stream-video-js/commit/8ab01680d01cc47f9cf48078634358507f0c109d))
798
+ - send unifiedSessionId in the initial join request ([#1934](https://github.com/GetStream/stream-video-js/issues/1934)) ([e6a533d](https://github.com/GetStream/stream-video-js/commit/e6a533d7e926086ac5930ebfb4648dade449d15a))
662
799
  - `@stream-io/video-react-bindings` updated to version `1.8.4`
663
800
 
664
801
  ### Features
@@ -686,6 +823,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
686
823
  ### Dependency Updates
687
824
 
688
825
  - `@stream-io/video-client` updated to version `1.31.0`
826
+ - **Features**
827
+ - introduce @stream-io/worker-timers ([94c962b](https://github.com/GetStream/stream-video-js/commit/94c962b2c5f731c152771b7803a59664fa925477))
828
+ - **Bug Fixes**
829
+ - **video-filters:** prevent background tab throttling ([#1920](https://github.com/GetStream/stream-video-js/issues/1920)) ([f93d5cc](https://github.com/GetStream/stream-video-js/commit/f93d5cc5785957c7f181fcaf689ec366df9e646b))
689
830
  - `@stream-io/video-react-bindings` updated to version `1.8.3`
690
831
 
691
832
  ### Bug Fixes
@@ -697,6 +838,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
697
838
  ### Dependency Updates
698
839
 
699
840
  - `@stream-io/video-client` updated to version `1.30.1`
841
+ - don't apply default camera state if video is off ([#1917](https://github.com/GetStream/stream-video-js/issues/1917)) ([9cf1d75](https://github.com/GetStream/stream-video-js/commit/9cf1d752d824a0527fbb187df21d8a020590d4bb))
842
+ - **rn:** set direction state for flip after constraints are applied ([1f03c59](https://github.com/GetStream/stream-video-js/commit/1f03c59b9b3fecc0ff1f7cb6b0eccb083b4a3475))
700
843
  - `@stream-io/video-react-bindings` updated to version `1.8.2`
701
844
 
702
845
  ## [1.20.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.12...@stream-io/video-react-native-sdk-1.20.13) (2025-09-11)
@@ -704,6 +847,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
704
847
  ### Dependency Updates
705
848
 
706
849
  - `@stream-io/video-client` updated to version `1.30.0`
850
+ - **Features**
851
+ - Participant Source ([#1896](https://github.com/GetStream/stream-video-js/issues/1896)) ([b1cf710](https://github.com/GetStream/stream-video-js/commit/b1cf710ac3bfda573c0379dac1e6a107d2dbabf6))
852
+ - **Other**
853
+ - Skip tests for StreamVideoClient coordinator API ([aabe1d0](https://github.com/GetStream/stream-video-js/commit/aabe1d0ad3e3a95698b422991729e46289ab0277))
707
854
  - `@stream-io/video-react-bindings` updated to version `1.8.1`
708
855
 
709
856
  ## [1.20.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.11...@stream-io/video-react-native-sdk-1.20.12) (2025-09-09)
@@ -711,6 +858,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
711
858
  ### Dependency Updates
712
859
 
713
860
  - `@stream-io/video-client` updated to version `1.29.0`
861
+ - **Features**
862
+ - opt-out from optimistic updates ([#1904](https://github.com/GetStream/stream-video-js/issues/1904)) ([45dba34](https://github.com/GetStream/stream-video-js/commit/45dba34d38dc64f456e37b593e38e420426529f5))
863
+ - **Bug Fixes**
864
+ - capabilities and call grants ([#1899](https://github.com/GetStream/stream-video-js/issues/1899)) ([5725dfa](https://github.com/GetStream/stream-video-js/commit/5725dfa29b1e5fdb6fe4e26825ce7b268664d2fa))
865
+ - graceful Axios request config overrides ([#1913](https://github.com/GetStream/stream-video-js/issues/1913)) ([a124099](https://github.com/GetStream/stream-video-js/commit/a124099f984a592750d66ac440ef6c27ae7a02d9))
714
866
  - `@stream-io/video-react-bindings` updated to version `1.8.0`
715
867
 
716
868
  - trace charging and battery level ([#1909](https://github.com/GetStream/stream-video-js/issues/1909)) ([31d7c01](https://github.com/GetStream/stream-video-js/commit/31d7c015a1b243b759b3ef8934e44c5dc521b9a2))
@@ -731,6 +883,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
731
883
  ### Dependency Updates
732
884
 
733
885
  - `@stream-io/video-client` updated to version `1.28.1`
886
+ - handle pre ended calls on ringing push arrival ([#1897](https://github.com/GetStream/stream-video-js/issues/1897)) ([935e375](https://github.com/GetStream/stream-video-js/commit/935e3756035639c651b3ac4469321a64b8576a0e))
734
887
  - `@stream-io/video-react-bindings` updated to version `1.7.16`
735
888
 
736
889
  ## [1.20.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.8...@stream-io/video-react-native-sdk-1.20.9) (2025-08-21)
@@ -738,6 +891,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
738
891
  ### Dependency Updates
739
892
 
740
893
  - `@stream-io/video-client` updated to version `1.28.0`
894
+ - Kick user from a call ([#1894](https://github.com/GetStream/stream-video-js/issues/1894)) ([32e2afc](https://github.com/GetStream/stream-video-js/commit/32e2afca0ea59e3f57e1ff9d05828c1e07fbff78))
741
895
  - `@stream-io/video-react-bindings` updated to version `1.7.15`
742
896
 
743
897
  ## [1.20.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.7...@stream-io/video-react-native-sdk-1.20.8) (2025-08-21)
@@ -756,6 +910,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
756
910
  ### Dependency Updates
757
911
 
758
912
  - `@stream-io/video-client` updated to version `1.27.5`
913
+ - synchronize ring events ([#1888](https://github.com/GetStream/stream-video-js/issues/1888)) ([0951e6d](https://github.com/GetStream/stream-video-js/commit/0951e6d4c825806937d6bdc548df9f186c531466))
759
914
  - `@stream-io/video-react-bindings` updated to version `1.7.14`
760
915
 
761
916
  ## [1.20.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.5...@stream-io/video-react-native-sdk-1.20.6) (2025-08-13)
@@ -763,6 +918,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
763
918
  ### Dependency Updates
764
919
 
765
920
  - `@stream-io/video-client` updated to version `1.27.4`
921
+ - expose isSupportedBrowser() utility ([#1859](https://github.com/GetStream/stream-video-js/issues/1859)) ([f51a434](https://github.com/GetStream/stream-video-js/commit/f51a4341f57407210ab2e9ba57f41818ddbd7ed9))
766
922
  - `@stream-io/video-react-bindings` updated to version `1.7.13`
767
923
 
768
924
  ## [1.20.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.4...@stream-io/video-react-native-sdk-1.20.5) (2025-08-07)
@@ -770,6 +926,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
770
926
  ### Dependency Updates
771
927
 
772
928
  - `@stream-io/video-client` updated to version `1.27.3`
929
+ - extended telemetry data for the signal websocket ([#1881](https://github.com/GetStream/stream-video-js/issues/1881)) ([984703d](https://github.com/GetStream/stream-video-js/commit/984703dabb8c6189eaf4d6925421568f6d0fd7fc))
773
930
  - `@stream-io/video-react-bindings` updated to version `1.7.12`
774
931
 
775
932
  ## [1.20.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.3...@stream-io/video-react-native-sdk-1.20.4) (2025-08-06)
@@ -789,6 +946,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
789
946
  - `@stream-io/noise-cancellation-react-native` updated to version `0.2.1`
790
947
  - `@stream-io/video-filters-react-native` updated to version `0.6.1`
791
948
  - `@stream-io/video-client` updated to version `1.27.2`
949
+ - improved logging and tracing ([#1874](https://github.com/GetStream/stream-video-js/issues/1874)) ([e450ce2](https://github.com/GetStream/stream-video-js/commit/e450ce2a294d6f80480fcc709591c13d9ede79e4))
792
950
  - `@stream-io/video-react-bindings` updated to version `1.7.11`
793
951
 
794
952
  ### Bug Fixes
@@ -809,6 +967,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
809
967
  - `@stream-io/noise-cancellation-react-native` updated to version `0.2.0`
810
968
  - `@stream-io/video-filters-react-native` updated to version `0.6.0`
811
969
  - `@stream-io/video-client` updated to version `1.27.1`
970
+ - synchronize updateMuteState; use correct fallback dimensions ([#1867](https://github.com/GetStream/stream-video-js/issues/1867)) ([154cdda](https://github.com/GetStream/stream-video-js/commit/154cddaa4462ee03af5fdf4929ad9f4e3d4b5070))
812
971
  - `@stream-io/video-react-bindings` updated to version `1.7.10`
813
972
 
814
973
  - bump webrtc version ([#1865](https://github.com/GetStream/stream-video-js/issues/1865)) ([18fd609](https://github.com/GetStream/stream-video-js/commit/18fd60945ef74eb23c089dc0b5adb2373b700602))
@@ -835,6 +994,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
835
994
  ### Dependency Updates
836
995
 
837
996
  - `@stream-io/video-client` updated to version `1.27.0`
997
+ - more graceful handling of SFU join failures ([#1853](https://github.com/GetStream/stream-video-js/issues/1853)) ([f38a4b5](https://github.com/GetStream/stream-video-js/commit/f38a4b5eef62210b08424640040a88065b680707))
838
998
  - `@stream-io/video-react-bindings` updated to version `1.7.9`
839
999
 
840
1000
  ### Features
@@ -850,6 +1010,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
850
1010
  ### Dependency Updates
851
1011
 
852
1012
  - `@stream-io/video-client` updated to version `1.26.1`
1013
+ - force `play-and-record` audioSession on Safari ([#1855](https://github.com/GetStream/stream-video-js/issues/1855)) ([a3552a3](https://github.com/GetStream/stream-video-js/commit/a3552a3be606ac99120b6c4ce6187eaa920a02ef))
853
1014
  - `@stream-io/video-react-bindings` updated to version `1.7.8`
854
1015
 
855
1016
  ## [1.18.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.6...@stream-io/video-react-native-sdk-1.18.0) (2025-07-11)
@@ -872,6 +1033,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
872
1033
  ### Dependency Updates
873
1034
 
874
1035
  - `@stream-io/video-client` updated to version `1.25.5`
1036
+ - relax SFU leaveAndClose constraints ([#1848](https://github.com/GetStream/stream-video-js/issues/1848)) ([dbf8bb0](https://github.com/GetStream/stream-video-js/commit/dbf8bb0c6f9f5358f21db3e78bd40ce01ad9bf6d)), closes [#1846](https://github.com/GetStream/stream-video-js/issues/1846)
875
1037
  - `@stream-io/video-react-bindings` updated to version `1.7.6`
876
1038
 
877
1039
  ## [1.17.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.4...@stream-io/video-react-native-sdk-1.17.5) (2025-07-07)
@@ -879,6 +1041,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
879
1041
  ### Dependency Updates
880
1042
 
881
1043
  - `@stream-io/video-client` updated to version `1.25.4`
1044
+ - sync call state after a failed reconnect ([#1846](https://github.com/GetStream/stream-video-js/issues/1846)) ([905e5c2](https://github.com/GetStream/stream-video-js/commit/905e5c2011d3267e83b3f2a861a4175de4111cfa))
882
1045
  - `@stream-io/video-react-bindings` updated to version `1.7.5`
883
1046
 
884
1047
  ## [1.17.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.3...@stream-io/video-react-native-sdk-1.17.4) (2025-07-03)
@@ -886,6 +1049,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
886
1049
  ### Dependency Updates
887
1050
 
888
1051
  - `@stream-io/video-client` updated to version `1.25.3`
1052
+ - bump the default test timeout ([bea27db](https://github.com/GetStream/stream-video-js/commit/bea27db1922a6f2a0899375d1a4cade1eb1291b5))
1053
+ - increase axios timeout ([d9cc4ac](https://github.com/GetStream/stream-video-js/commit/d9cc4ac69f58d12d97af0c714df564349c17c9b5))
889
1054
  - `@stream-io/video-react-bindings` updated to version `1.7.4`
890
1055
 
891
1056
  ### Bug Fixes
@@ -898,6 +1063,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
898
1063
  ### Dependency Updates
899
1064
 
900
1065
  - `@stream-io/video-client` updated to version `1.25.2`
1066
+ - resolve `default` device id into real id ([#1839](https://github.com/GetStream/stream-video-js/issues/1839)) ([1a1037f](https://github.com/GetStream/stream-video-js/commit/1a1037f21ef2926c7da78b6461499f37742935e9))
901
1067
  - `@stream-io/video-react-bindings` updated to version `1.7.3`
902
1068
 
903
1069
  ### Bug Fixes
@@ -909,6 +1075,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
909
1075
  ### Dependency Updates
910
1076
 
911
1077
  - `@stream-io/video-client` updated to version `1.25.1`
1078
+ - correctly setup and dispose device managers ([#1836](https://github.com/GetStream/stream-video-js/issues/1836)) ([92fbe6c](https://github.com/GetStream/stream-video-js/commit/92fbe6c1da3bf06847244f430652bdc9433533bf))
912
1079
  - `@stream-io/video-react-bindings` updated to version `1.7.2`
913
1080
 
914
1081
  ## [1.17.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.0...@stream-io/video-react-native-sdk-1.17.1) (2025-06-20)
@@ -916,6 +1083,14 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
916
1083
  ### Dependency Updates
917
1084
 
918
1085
  - `@stream-io/video-client` updated to version `1.25.0`
1086
+ - **Features**
1087
+ - stereo support ([#1833](https://github.com/GetStream/stream-video-js/issues/1833)) ([389b2f2](https://github.com/GetStream/stream-video-js/commit/389b2f2f0d7e4098b916a18b7c079d7029e35949))
1088
+ - Support for Screen Share content hinting ([#1834](https://github.com/GetStream/stream-video-js/issues/1834)) ([a09ff78](https://github.com/GetStream/stream-video-js/commit/a09ff78e8c5a78ea435bec17dfd5b2b63ef5c78d))
1089
+ - **Bug Fixes**
1090
+ - multiple FAST reconnect attempts and improved ICE restarts ([#1811](https://github.com/GetStream/stream-video-js/issues/1811)) ([f64c922](https://github.com/GetStream/stream-video-js/commit/f64c92292dcc6d216acb130ad51347449968f420))
1091
+ - ringing call fixes and support for pronto ([#1823](https://github.com/GetStream/stream-video-js/issues/1823)) ([c0414f8](https://github.com/GetStream/stream-video-js/commit/c0414f88ec7dd42ad35991565f9d337ea7e0fc6d))
1092
+ - **Other**
1093
+ - upgrade stream deps and improve API error code logging ([#1827](https://github.com/GetStream/stream-video-js/issues/1827)) ([8c30fef](https://github.com/GetStream/stream-video-js/commit/8c30fef80d78055f5adeae02f7347c1c3fe49b72)), closes [#1826](https://github.com/GetStream/stream-video-js/issues/1826)
919
1094
  - `@stream-io/video-react-bindings` updated to version `1.7.1`
920
1095
 
921
1096
  ## [1.17.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.16.1...@stream-io/video-react-native-sdk-1.17.0) (2025-06-12)
@@ -925,7 +1100,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
925
1100
  - `@stream-io/noise-cancellation-react-native` updated to version `0.1.1`
926
1101
  - `@stream-io/video-filters-react-native` updated to version `0.5.0`
927
1102
  - `@stream-io/video-client` updated to version `1.24.0`
1103
+ - configurable call stats reporting interval ([#1824](https://github.com/GetStream/stream-video-js/issues/1824)) ([74f72c0](https://github.com/GetStream/stream-video-js/commit/74f72c024d0cb34ae3e0fee4bd8f061fb51e4479))
1104
+ - don't compute call stats report if no one subscribed to it ([#1825](https://github.com/GetStream/stream-video-js/issues/1825)) ([fb6a8c9](https://github.com/GetStream/stream-video-js/commit/fb6a8c9e19c80be313d73fadb68810e7f7c1f071))
928
1105
  - `@stream-io/video-react-bindings` updated to version `1.7.0`
1106
+ - update i18next to its latest version ([#1807](https://github.com/GetStream/stream-video-js/issues/1807)) ([c524877](https://github.com/GetStream/stream-video-js/commit/c5248777c83b2a032423b59f6505cf4b2a09a9b9))
929
1107
 
930
1108
  - update webrtc version ([162a8d2](https://github.com/GetStream/stream-video-js/commit/162a8d24216a28659759ea16fe48630cadb1536f))
931
1109
 
@@ -939,6 +1117,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
939
1117
  ### Dependency Updates
940
1118
 
941
1119
  - `@stream-io/video-client` updated to version `1.23.5`
1120
+ - **react-native:** skip browser permission for react native ([#1818](https://github.com/GetStream/stream-video-js/issues/1818)) ([b18f418](https://github.com/GetStream/stream-video-js/commit/b18f418698e12b9804efb43e712ba813b0dbb056))
942
1121
  - `@stream-io/video-react-bindings` updated to version `1.6.8`
943
1122
 
944
1123
  ### Bug Fixes
@@ -950,6 +1129,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
950
1129
  ### Dependency Updates
951
1130
 
952
1131
  - `@stream-io/video-client` updated to version `1.23.4`
1132
+ - attach original token provider error as cause to loadToken rejection ([#1812](https://github.com/GetStream/stream-video-js/issues/1812)) ([15f817c](https://github.com/GetStream/stream-video-js/commit/15f817c2548a8edba8ca1004e133277d67cbeb4f))
1133
+ - improved video quality on low capture resolution ([#1814](https://github.com/GetStream/stream-video-js/issues/1814)) ([ebcfdf7](https://github.com/GetStream/stream-video-js/commit/ebcfdf7f7e8146fcaf18a8bee81086f5a23f5df3))
953
1134
  - `@stream-io/video-react-bindings` updated to version `1.6.7`
954
1135
 
955
1136
  ### Features
@@ -962,6 +1143,12 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
962
1143
 
963
1144
  - `@stream-io/noise-cancellation-react-native` updated to version `0.1.1`
964
1145
  - `@stream-io/video-client` updated to version `1.23.3`
1146
+ - **Bug Fixes**
1147
+ - inconsistent device state if applySettingsToStream fails ([#1808](https://github.com/GetStream/stream-video-js/issues/1808)) ([73d66c2](https://github.com/GetStream/stream-video-js/commit/73d66c2eaa7eca52b9d41b39f8f9fd0a0ce240ef))
1148
+ - test ([e0b93aa](https://github.com/GetStream/stream-video-js/commit/e0b93aaa13f22f0db30b61e6230aff40ba8fd92a))
1149
+ - use AudioContext for Safari ([#1810](https://github.com/GetStream/stream-video-js/issues/1810)) ([63542f4](https://github.com/GetStream/stream-video-js/commit/63542f419efa475c7acf50f053621ace74a1eff4))
1150
+ - **Other**
1151
+ - remove TODO ([9cfea4b](https://github.com/GetStream/stream-video-js/commit/9cfea4b54284cdd680a6d666436dedc5fd8956c3))
965
1152
  - `@stream-io/video-react-bindings` updated to version `1.6.6`
966
1153
 
967
1154
  ### Bug Fixes
@@ -980,6 +1167,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
980
1167
  ### Dependency Updates
981
1168
 
982
1169
  - `@stream-io/video-client` updated to version `1.23.2`
1170
+ - rpc error tracing ([#1801](https://github.com/GetStream/stream-video-js/issues/1801)) ([a9e86d5](https://github.com/GetStream/stream-video-js/commit/a9e86d5e51e72b15d044e012f5fcc5a44907c325))
983
1171
  - `@stream-io/video-react-bindings` updated to version `1.6.5`
984
1172
 
985
1173
  ## [1.14.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.14.0...@stream-io/video-react-native-sdk-1.14.1) (2025-05-21)
@@ -987,6 +1175,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
987
1175
  ### Dependency Updates
988
1176
 
989
1177
  - `@stream-io/video-client` updated to version `1.23.1`
1178
+ - restore echoCancellation settings ([#1799](https://github.com/GetStream/stream-video-js/issues/1799)) ([e839036](https://github.com/GetStream/stream-video-js/commit/e839036f279ee9b27ce3d62d4f07e3517c3e5fef)), closes [#1794](https://github.com/GetStream/stream-video-js/issues/1794)
990
1179
  - `@stream-io/video-react-bindings` updated to version `1.6.4`
991
1180
 
992
1181
  ## [1.14.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.13.3...@stream-io/video-react-native-sdk-1.14.0) (2025-05-20)
@@ -996,6 +1185,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
996
1185
  - `@stream-io/noise-cancellation-react-native` updated to version `0.1.0`
997
1186
  - `@stream-io/video-filters-react-native` updated to version `0.4.0`
998
1187
  - `@stream-io/video-client` updated to version `1.23.0`
1188
+ - do not mutate filters array during pipeline setup ([#1798](https://github.com/GetStream/stream-video-js/issues/1798)) ([e9832e5](https://github.com/GetStream/stream-video-js/commit/e9832e5ef41b3f6cddfe2d0cb2cf840e9b28bb86))
999
1189
  - `@stream-io/video-react-bindings` updated to version `1.6.3`
1000
1190
 
1001
1191
  ### Features
@@ -1010,6 +1200,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1010
1200
 
1011
1201
  - `@stream-io/video-filters-react-native` updated to version `0.3.1`
1012
1202
  - `@stream-io/video-client` updated to version `1.22.2`
1203
+ - adjust ErrorFromResponse class ([#1791](https://github.com/GetStream/stream-video-js/issues/1791)) ([c0abcba](https://github.com/GetStream/stream-video-js/commit/c0abcbacfddeb87d8378c4418f80e6770981cdc8)), closes [GetStream/chat#1540](https://github.com/GetStream/chat/issues/1540)
1013
1204
  - `@stream-io/video-react-bindings` updated to version `1.6.2`
1014
1205
 
1015
1206
  ### Bug Fixes
@@ -1021,6 +1212,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1021
1212
  ### Dependency Updates
1022
1213
 
1023
1214
  - `@stream-io/video-client` updated to version `1.22.1`
1215
+ - fixes an edge case where tracks weren't restored after a reconnect ([#1789](https://github.com/GetStream/stream-video-js/issues/1789)) ([d825e8e](https://github.com/GetStream/stream-video-js/commit/d825e8e39ac8cbd072ec9d5124e1ea0226216e08))
1024
1216
  - `@stream-io/video-react-bindings` updated to version `1.6.1`
1025
1217
 
1026
1218
  ## [1.13.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.13.0...@stream-io/video-react-native-sdk-1.13.1) (2025-05-09)
@@ -1035,6 +1227,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1035
1227
 
1036
1228
  - `@stream-io/video-filters-react-native` updated to version `0.3.0`
1037
1229
  - `@stream-io/video-client` updated to version `1.22.0`
1230
+ - graceful handling of LIVE_ENDED CallEnded reason ([#1783](https://github.com/GetStream/stream-video-js/issues/1783)) ([ff54390](https://github.com/GetStream/stream-video-js/commit/ff54390099e10c550b8bbac42658080a65007a30))
1231
+ - isolate mediaDevices traces ([#1779](https://github.com/GetStream/stream-video-js/issues/1779)) ([d8623f0](https://github.com/GetStream/stream-video-js/commit/d8623f0b06a6229bff96ea01dd1f2b851b7d3558)), closes [#1765](https://github.com/GetStream/stream-video-js/issues/1765)
1232
+ - make camera.flip() work more reliably with older devices ([#1781](https://github.com/GetStream/stream-video-js/issues/1781)) ([9dfbc55](https://github.com/GetStream/stream-video-js/commit/9dfbc556155c1ae9b528b50b140313c4decb024f)), closes [#1679](https://github.com/GetStream/stream-video-js/issues/1679)
1233
+ - use scoped locking for PeerConnection events ([#1785](https://github.com/GetStream/stream-video-js/issues/1785)) ([b0f93e8](https://github.com/GetStream/stream-video-js/commit/b0f93e83e70520b527efd94e9192ac7dca031864))
1038
1234
  - `@stream-io/video-react-bindings` updated to version `1.6.0`
1039
1235
 
1040
1236
  ### Features
@@ -1060,6 +1256,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1060
1256
  ### Dependency Updates
1061
1257
 
1062
1258
  - `@stream-io/video-client` updated to version `1.20.2`
1259
+ - add options for 4K RTMP and Recording ([#1775](https://github.com/GetStream/stream-video-js/issues/1775)) ([c09213d](https://github.com/GetStream/stream-video-js/commit/c09213df5fc8a46f5a8c5c1ef18f07fd05e1d547))
1260
+ - use timeout reason when auto-dropping calls (instead of decline) ([#1776](https://github.com/GetStream/stream-video-js/issues/1776)) ([a043148](https://github.com/GetStream/stream-video-js/commit/a04314814e728c3d05d53c8940e9c223fec18fcc))
1063
1261
  - `@stream-io/video-react-bindings` updated to version `1.5.18`
1064
1262
 
1065
1263
  ## [1.11.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.4...@stream-io/video-react-native-sdk-1.11.5) (2025-04-29)
@@ -1067,6 +1265,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1067
1265
  ### Dependency Updates
1068
1266
 
1069
1267
  - `@stream-io/video-client` updated to version `1.20.1`
1268
+ - dispose media stream if it cannot be published ([#1771](https://github.com/GetStream/stream-video-js/issues/1771)) ([83fbfd7](https://github.com/GetStream/stream-video-js/commit/83fbfd7bb77bd9a06d6955e6b48bb8238e573f57))
1269
+ - use more granular permission state for stats reporter ([#1774](https://github.com/GetStream/stream-video-js/issues/1774)) ([55afdfc](https://github.com/GetStream/stream-video-js/commit/55afdfcdac55fad25ba32978caf55a2f25f7580b))
1070
1270
  - `@stream-io/video-react-bindings` updated to version `1.5.17`
1071
1271
 
1072
1272
  ### Bug Fixes
@@ -1079,6 +1279,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1079
1279
  ### Dependency Updates
1080
1280
 
1081
1281
  - `@stream-io/video-client` updated to version `1.20.0`
1282
+ - **Features**
1283
+ - add getCallReport method ([#1767](https://github.com/GetStream/stream-video-js/issues/1767)) ([12e064f](https://github.com/GetStream/stream-video-js/commit/12e064f34a08731ded289651125bbe20e2bbf4f4))
1284
+ - **Other**
1285
+ - bump test timeout ([7d922ed](https://github.com/GetStream/stream-video-js/commit/7d922ed34c46851a257fb36ee644f1ff5e4cb917))
1082
1286
  - `@stream-io/video-react-bindings` updated to version `1.5.16`
1083
1287
 
1084
1288
  ## [1.11.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.2...@stream-io/video-react-native-sdk-1.11.3) (2025-04-15)
@@ -1086,13 +1290,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1086
1290
  ### Dependency Updates
1087
1291
 
1088
1292
  - `@stream-io/video-client` updated to version `1.19.3`
1293
+ - fast reconnect shouldn't be followed up with full rejoining on network switch ([#1760](https://github.com/GetStream/stream-video-js/issues/1760)) ([71363bd](https://github.com/GetStream/stream-video-js/commit/71363bdf0fb6cd6273ff6c2a0faf9ea1eb53f121))
1294
+ - watched calls should auto-subscribe for state updates ([#1762](https://github.com/GetStream/stream-video-js/issues/1762)) ([abcb45b](https://github.com/GetStream/stream-video-js/commit/abcb45b7fed4ca10e4ac6ea8ee18630ca5a9cb46)), closes [#1433](https://github.com/GetStream/stream-video-js/issues/1433)
1089
1295
  - `@stream-io/video-react-bindings` updated to version `1.5.15`
1296
+ - access device list lazily from call state hook ([#1761](https://github.com/GetStream/stream-video-js/issues/1761)) ([319353c](https://github.com/GetStream/stream-video-js/commit/319353caf709f6a9fa2197b2ac923b9ceecadb7c))
1090
1297
 
1091
1298
  ## [1.11.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.1...@stream-io/video-react-native-sdk-1.11.2) (2025-04-11)
1092
1299
 
1093
1300
  ### Dependency Updates
1094
1301
 
1095
1302
  - `@stream-io/video-client` updated to version `1.19.2`
1303
+ - enhance tracing data ([#1758](https://github.com/GetStream/stream-video-js/issues/1758)) ([a6f2e3a](https://github.com/GetStream/stream-video-js/commit/a6f2e3a5256519e4884ec07e2dd2d4417f2482fe))
1096
1304
  - `@stream-io/video-react-bindings` updated to version `1.5.14`
1097
1305
 
1098
1306
  ### Bug Fixes
@@ -1104,6 +1312,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1104
1312
  ### Dependency Updates
1105
1313
 
1106
1314
  - `@stream-io/video-client` updated to version `1.19.1`
1315
+ - add an opt-out for persisted device preferences ([#1753](https://github.com/GetStream/stream-video-js/issues/1753)) ([4d55c3e](https://github.com/GetStream/stream-video-js/commit/4d55c3ee982bcb72beec347489e7c945bb2c63e3))
1107
1316
  - `@stream-io/video-react-bindings` updated to version `1.5.13`
1108
1317
 
1109
1318
  - use RN 0.76.9 as a baseline ([#1750](https://github.com/GetStream/stream-video-js/issues/1750)) ([3846aa1](https://github.com/GetStream/stream-video-js/commit/3846aa1d748a2bb2dbf9262ec0036f2cf55874ea))
@@ -1128,6 +1337,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1128
1337
  ### Dependency Updates
1129
1338
 
1130
1339
  - `@stream-io/video-client` updated to version `1.18.9`
1340
+ - pick correct device for speaking while muted detection ([#1744](https://github.com/GetStream/stream-video-js/issues/1744)) ([33044f5](https://github.com/GetStream/stream-video-js/commit/33044f56ec7debba2e14d5a87dde9eaa87a02089)), closes [#1538](https://github.com/GetStream/stream-video-js/issues/1538)
1341
+ - reset the call state value when "live" ends ([#1740](https://github.com/GetStream/stream-video-js/issues/1740)) ([2123a10](https://github.com/GetStream/stream-video-js/commit/2123a104bb790a7384506fd475b779c02b116edd))
1131
1342
  - `@stream-io/video-react-bindings` updated to version `1.5.11`
1132
1343
 
1133
1344
  - remove react-native/eslint-config from the RN SDK ([#1743](https://github.com/GetStream/stream-video-js/issues/1743)) ([312d734](https://github.com/GetStream/stream-video-js/commit/312d73411642bdcc811885fb16d7d26a916c2d05))
@@ -1138,6 +1349,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1138
1349
  ### Dependency Updates
1139
1350
 
1140
1351
  - `@stream-io/video-client` updated to version `1.18.8`
1352
+ - **Bug Fixes**
1353
+ - implement retry logic for call joining process ([#1738](https://github.com/GetStream/stream-video-js/issues/1738)) ([71599c3](https://github.com/GetStream/stream-video-js/commit/71599c3ddda51a247d7933cd6b12ca8fd03d7033))
1354
+ - **Other**
1355
+ - dependency upgrades and cleanup ([#1727](https://github.com/GetStream/stream-video-js/issues/1727)) ([c3b0ede](https://github.com/GetStream/stream-video-js/commit/c3b0ede3ce444c28c51457155e8ccff584c2c1e5))
1141
1356
  - `@stream-io/video-react-bindings` updated to version `1.5.10`
1142
1357
 
1143
1358
  - align expo plugin background modes with flutter ([f6950cb](https://github.com/GetStream/stream-video-js/commit/f6950cb39d0c83413aca1c59e670efea5c5cdd6a))
@@ -1149,6 +1364,8 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1149
1364
  ### Dependency Updates
1150
1365
 
1151
1366
  - `@stream-io/video-client` updated to version `1.18.7`
1367
+ - rename `toJSON` to `asJSON` ([#1729](https://github.com/GetStream/stream-video-js/issues/1729)) ([0d7d074](https://github.com/GetStream/stream-video-js/commit/0d7d074dac1032690b5f4af4d6ba5fcdd56dfaa2))
1368
+ - update call reject reasons ([#1730](https://github.com/GetStream/stream-video-js/issues/1730)) ([100ed6b](https://github.com/GetStream/stream-video-js/commit/100ed6b9323b66e86123917abf4fc2973a677fca))
1152
1369
  - `@stream-io/video-react-bindings` updated to version `1.5.9`
1153
1370
 
1154
1371
  ### Bug Fixes
@@ -1160,6 +1377,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1160
1377
  ### Dependency Updates
1161
1378
 
1162
1379
  - `@stream-io/video-client` updated to version `1.18.6`
1380
+ - ensure negotiation runs sequentially ([#1722](https://github.com/GetStream/stream-video-js/issues/1722)) ([7e166aa](https://github.com/GetStream/stream-video-js/commit/7e166aaf606c3f751068cf60bd554e6374f701d7))
1163
1381
  - `@stream-io/video-react-bindings` updated to version `1.5.8`
1164
1382
 
1165
1383
  ## [1.10.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.14...@stream-io/video-react-native-sdk-1.10.15) (2025-03-12)
@@ -1167,6 +1385,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1167
1385
  ### Dependency Updates
1168
1386
 
1169
1387
  - `@stream-io/video-client` updated to version `1.18.5`
1388
+ - **Bug Fixes**
1389
+ - add pending browser permission state ([#1718](https://github.com/GetStream/stream-video-js/issues/1718)) ([7f24be6](https://github.com/GetStream/stream-video-js/commit/7f24be63d33105d0688be7b5b625bc9b6aa0d3a9))
1390
+ - **Other**
1391
+ - Upgrade to Next 15.2 ([#1717](https://github.com/GetStream/stream-video-js/issues/1717)) ([9b1aec3](https://github.com/GetStream/stream-video-js/commit/9b1aec3447dee611c0d900db44add6b6c89e2b8d))
1170
1392
  - `@stream-io/video-react-bindings` updated to version `1.5.7`
1171
1393
 
1172
1394
  ## [1.10.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.13...@stream-io/video-react-native-sdk-1.10.14) (2025-03-11)
@@ -1180,6 +1402,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1180
1402
  ### Dependency Updates
1181
1403
 
1182
1404
  - `@stream-io/video-client` updated to version `1.18.4`
1405
+ - retryable client.connectUser() ([#1710](https://github.com/GetStream/stream-video-js/issues/1710)) ([10b6860](https://github.com/GetStream/stream-video-js/commit/10b6860e1d65c38d8eb0ba7d7ea18f0ca30f5abc))
1183
1406
  - `@stream-io/video-react-bindings` updated to version `1.5.6`
1184
1407
 
1185
1408
  ### Bug Fixes
@@ -1208,6 +1431,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1208
1431
  ### Dependency Updates
1209
1432
 
1210
1433
  - `@stream-io/video-client` updated to version `1.18.3`
1434
+ - revert the release of cloned track on publisher dispose ([556fb61](https://github.com/GetStream/stream-video-js/commit/556fb610ae1c9a1965f38fc07e995683b5052544))
1211
1435
  - `@stream-io/video-react-bindings` updated to version `1.5.5`
1212
1436
 
1213
1437
  ## [1.10.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.9...@stream-io/video-react-native-sdk-1.10.10) (2025-03-04)
@@ -1215,6 +1439,9 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1215
1439
  ### Dependency Updates
1216
1440
 
1217
1441
  - `@stream-io/video-client` updated to version `1.18.2`
1442
+ - do not accept again on reconnections ([#1705](https://github.com/GetStream/stream-video-js/issues/1705)) ([bedd2d8](https://github.com/GetStream/stream-video-js/commit/bedd2d8aafd7ff8260f63b500e25807518ccd365))
1443
+ - do not stop original track in RN ([#1708](https://github.com/GetStream/stream-video-js/issues/1708)) ([ab0ada2](https://github.com/GetStream/stream-video-js/commit/ab0ada283c753d4cdfd59b6eaf75af26cf54fd7e))
1444
+ - prevent extra unnecessary reconnect after offline to online ([#1706](https://github.com/GetStream/stream-video-js/issues/1706)) ([bc3920a](https://github.com/GetStream/stream-video-js/commit/bc3920a81f398fd9e166ee4517b32d58f50d56fe))
1218
1445
  - `@stream-io/video-react-bindings` updated to version `1.5.4`
1219
1446
 
1220
1447
  ## [1.10.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.8...@stream-io/video-react-native-sdk-1.10.9) (2025-02-28)
@@ -1222,6 +1449,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1222
1449
  ### Dependency Updates
1223
1450
 
1224
1451
  - `@stream-io/video-client` updated to version `1.18.1`
1452
+ - prevent reconnecting state when offline ([#1703](https://github.com/GetStream/stream-video-js/issues/1703)) ([aeac90d](https://github.com/GetStream/stream-video-js/commit/aeac90d8b7b14820e3e0e30282e51fc7824f8bf8))
1225
1453
  - `@stream-io/video-react-bindings` updated to version `1.5.3`
1226
1454
 
1227
1455
  ## [1.10.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.7...@stream-io/video-react-native-sdk-1.10.8) (2025-02-27)
@@ -1243,6 +1471,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1243
1471
  ### Dependency Updates
1244
1472
 
1245
1473
  - `@stream-io/video-client` updated to version `1.18.0`
1474
+ - **Features**
1475
+ - align SDK version reporting, use higher-entropy user agent data for stats ([#1696](https://github.com/GetStream/stream-video-js/issues/1696)) ([e02e8d9](https://github.com/GetStream/stream-video-js/commit/e02e8d9b3843086a3fa859a8bd31ba65ace5a7fd))
1476
+ - **Bug Fixes**
1477
+ - don't implicitly mark calls as `ringing` ([#1697](https://github.com/GetStream/stream-video-js/issues/1697)) ([3429a7b](https://github.com/GetStream/stream-video-js/commit/3429a7ba52e13a43b96d2c3c28f270da111f84b2)), closes [/github.com/GetStream/stream-video-js/issues/1561#issuecomment-2662584543](https://github.com/GetStream//github.com/GetStream/stream-video-js/issues/1561/issues/issuecomment-2662584543)
1478
+ - use axios version that doesnt import node specific module ([#1699](https://github.com/GetStream/stream-video-js/issues/1699)) ([414e01b](https://github.com/GetStream/stream-video-js/commit/414e01b9c7e4c4862b429e48c506673bcc228fa4))
1246
1479
  - `@stream-io/video-react-bindings` updated to version `1.5.2`
1247
1480
 
1248
1481
  ### Bug Fixes
@@ -1269,6 +1502,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1269
1502
  ### Dependency Updates
1270
1503
 
1271
1504
  - `@stream-io/video-client` updated to version `1.17.1`
1505
+ - do not reconnect when device is offline ([#1688](https://github.com/GetStream/stream-video-js/issues/1688)) ([c6b6f58](https://github.com/GetStream/stream-video-js/commit/c6b6f58310a3365eb6f40d76a15c26791f413241))
1272
1506
  - `@stream-io/video-react-bindings` updated to version `1.5.1`
1273
1507
 
1274
1508
  ## [1.10.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.1...@stream-io/video-react-native-sdk-1.10.2) (2025-02-19)
@@ -1308,6 +1542,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1308
1542
  ### Dependency Updates
1309
1543
 
1310
1544
  - `@stream-io/video-client` updated to version `1.16.7`
1545
+ - relax device constraints on NotFoundError DOMException ([#1680](https://github.com/GetStream/stream-video-js/issues/1680)) ([c682908](https://github.com/GetStream/stream-video-js/commit/c682908408395f6863fd1549958cf4203bcc7f32))
1311
1546
  - `@stream-io/video-react-bindings` updated to version `1.4.15`
1312
1547
 
1313
1548
  ## [1.9.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.28...@stream-io/video-react-native-sdk-1.9.29) (2025-02-12)
@@ -1333,6 +1568,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1333
1568
  ### Dependency Updates
1334
1569
 
1335
1570
  - `@stream-io/video-client` updated to version `1.16.5`
1571
+ - ensure all tracks are stopped when disposing a Publisher ([#1677](https://github.com/GetStream/stream-video-js/issues/1677)) ([172d345](https://github.com/GetStream/stream-video-js/commit/172d345ceada2bf82df1aec604a2325947896c5c)), closes [#1676](https://github.com/GetStream/stream-video-js/issues/1676)
1336
1572
  - `@stream-io/video-react-bindings` updated to version `1.4.13`
1337
1573
 
1338
1574
  ## [1.9.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.25...@stream-io/video-react-native-sdk-1.9.26) (2025-02-10)
@@ -1346,6 +1582,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1346
1582
  ### Dependency Updates
1347
1583
 
1348
1584
  - `@stream-io/video-client` updated to version `1.16.4`
1585
+ - ensure tracks are stopped when disposing a Publisher ([#1676](https://github.com/GetStream/stream-video-js/issues/1676)) ([948f672](https://github.com/GetStream/stream-video-js/commit/948f672243e1f2a0e9499184ee31db4bc88f9952))
1349
1586
  - `@stream-io/video-react-bindings` updated to version `1.4.12`
1350
1587
 
1351
1588
  ## [1.9.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.23...@stream-io/video-react-native-sdk-1.9.24) (2025-02-07)
@@ -1361,6 +1598,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1361
1598
  ### Dependency Updates
1362
1599
 
1363
1600
  - `@stream-io/video-client` updated to version `1.16.3`
1601
+ - relaxed validation for submitting feedback ([#1673](https://github.com/GetStream/stream-video-js/issues/1673)) ([98685b9](https://github.com/GetStream/stream-video-js/commit/98685b9fcf3c3b0309a7072d51cde4657e028528))
1364
1602
  - `@stream-io/video-react-bindings` updated to version `1.4.11`
1365
1603
 
1366
1604
  ## [1.9.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.21...@stream-io/video-react-native-sdk-1.9.22) (2025-02-06)
@@ -1380,6 +1618,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1380
1618
  ### Dependency Updates
1381
1619
 
1382
1620
  - `@stream-io/video-client` updated to version `1.16.2`
1621
+ - race condition with unrecoverable error handling ([#1672](https://github.com/GetStream/stream-video-js/issues/1672)) ([be8095c](https://github.com/GetStream/stream-video-js/commit/be8095ce946cf98a0dfc1f3ea3391376cc7d2896)), closes [#1649](https://github.com/GetStream/stream-video-js/issues/1649) [#1618](https://github.com/GetStream/stream-video-js/issues/1618)
1383
1622
  - `@stream-io/video-react-bindings` updated to version `1.4.10`
1384
1623
 
1385
1624
  ## [1.9.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.18...@stream-io/video-react-native-sdk-1.9.19) (2025-02-05)
@@ -1393,6 +1632,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1393
1632
  ### Dependency Updates
1394
1633
 
1395
1634
  - `@stream-io/video-client` updated to version `1.16.1`
1635
+ - **Bug Fixes**
1636
+ - do not mute track on camera flip ([#1671](https://github.com/GetStream/stream-video-js/issues/1671)) ([963eb4d](https://github.com/GetStream/stream-video-js/commit/963eb4d4e5d6b96afb61b4da23a05ad92bcb3973))
1637
+ - **Other**
1638
+ - add trace log for call unregister ([e20d9dc](https://github.com/GetStream/stream-video-js/commit/e20d9dc28b35c5dd0c921ccc3e18923a344ae5ab))
1396
1639
  - `@stream-io/video-react-bindings` updated to version `1.4.9`
1397
1640
 
1398
1641
  ## [1.9.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.16...@stream-io/video-react-native-sdk-1.9.17) (2025-02-03)
@@ -1407,6 +1650,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1407
1650
  ### Dependency Updates
1408
1651
 
1409
1652
  - `@stream-io/video-client` updated to version `1.16.0`
1653
+ - OpenAPI upgrades and HLS status reporting ([#1668](https://github.com/GetStream/stream-video-js/issues/1668)) ([2f377b8](https://github.com/GetStream/stream-video-js/commit/2f377b8772f7b9fc8fcb8b8e9b3eecb1920bc7d0))
1410
1654
  - `@stream-io/video-react-bindings` updated to version `1.4.8`
1411
1655
 
1412
1656
  ## [1.9.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.14...@stream-io/video-react-native-sdk-1.9.15) (2025-01-31)
@@ -1433,6 +1677,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1433
1677
  ### Dependency Updates
1434
1678
 
1435
1679
  - `@stream-io/video-client` updated to version `1.15.7`
1680
+ - speech detection and align mic disable with web ([#1658](https://github.com/GetStream/stream-video-js/issues/1658)) ([fd908fb](https://github.com/GetStream/stream-video-js/commit/fd908fb2b70e6bade595f44107ca2f85aa4d5631))
1436
1681
  - `@stream-io/video-react-bindings` updated to version `1.4.7`
1437
1682
 
1438
1683
  ## [1.9.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.10...@stream-io/video-react-native-sdk-1.9.11) (2025-01-29)
@@ -1440,6 +1685,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1440
1685
  ### Dependency Updates
1441
1686
 
1442
1687
  - `@stream-io/video-client` updated to version `1.15.6`
1688
+ - ensures that maxBitrate is an integer ([#1657](https://github.com/GetStream/stream-video-js/issues/1657)) ([69eee96](https://github.com/GetStream/stream-video-js/commit/69eee969ac4d52e3410d8e5e12e012b02a5eb1b7)), closes [#1527](https://github.com/GetStream/stream-video-js/issues/1527)
1443
1689
  - `@stream-io/video-react-bindings` updated to version `1.4.6`
1444
1690
 
1445
1691
  ## [1.9.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.9...@stream-io/video-react-native-sdk-1.9.10) (2025-01-24)
@@ -1447,6 +1693,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1447
1693
  ### Dependency Updates
1448
1694
 
1449
1695
  - `@stream-io/video-client` updated to version `1.15.5`
1696
+ - remove the participants from state when leaving call ([003ac26](https://github.com/GetStream/stream-video-js/commit/003ac26eff3c14779d5f25e6e64973c88a5b811d))
1450
1697
  - `@stream-io/video-react-bindings` updated to version `1.4.5`
1451
1698
 
1452
1699
  ## [1.9.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.8...@stream-io/video-react-native-sdk-1.9.9) (2025-01-23)
@@ -1454,6 +1701,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1454
1701
  ### Dependency Updates
1455
1702
 
1456
1703
  - `@stream-io/video-client` updated to version `1.15.4`
1704
+ - leave ringing call if accepted or rejected elsewhere ([#1654](https://github.com/GetStream/stream-video-js/issues/1654)) ([9f25adf](https://github.com/GetStream/stream-video-js/commit/9f25adf8796db369f7e3e236e6a178f525ae8f55))
1457
1705
  - `@stream-io/video-react-bindings` updated to version `1.4.4`
1458
1706
 
1459
1707
  ## [1.9.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.7...@stream-io/video-react-native-sdk-1.9.8) (2025-01-23)
@@ -1479,6 +1727,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1479
1727
  ### Dependency Updates
1480
1728
 
1481
1729
  - `@stream-io/video-client` updated to version `1.15.3`
1730
+ - restore calling state if SFU connection fails during join ([#1652](https://github.com/GetStream/stream-video-js/issues/1652)) ([ff7f221](https://github.com/GetStream/stream-video-js/commit/ff7f221ad285ca1994fc3a780aa8183df2de3e99))
1482
1731
  - `@stream-io/video-react-bindings` updated to version `1.4.3`
1483
1732
 
1484
1733
  ## [1.9.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.3...@stream-io/video-react-native-sdk-1.9.4) (2025-01-20)
@@ -1486,6 +1735,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1486
1735
  ### Dependency Updates
1487
1736
 
1488
1737
  - `@stream-io/video-client` updated to version `1.15.2`
1738
+ - improved error handling when connecting to an SFU ([#1648](https://github.com/GetStream/stream-video-js/issues/1648)) ([27332b4](https://github.com/GetStream/stream-video-js/commit/27332b484094e26a123a1dfe8bb614c35ce1022a))
1489
1739
  - `@stream-io/video-react-bindings` updated to version `1.4.2`
1490
1740
 
1491
1741
  ## [1.9.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.2...@stream-io/video-react-native-sdk-1.9.3) (2025-01-20)
@@ -1505,6 +1755,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1505
1755
  ### Dependency Updates
1506
1756
 
1507
1757
  - `@stream-io/video-client` updated to version `1.15.1`
1758
+ - update mute state only for video track on mobile ([#1645](https://github.com/GetStream/stream-video-js/issues/1645)) ([c0507cb](https://github.com/GetStream/stream-video-js/commit/c0507cb02e0058b8b968237220234771c9a30e6f)), closes [#1527](https://github.com/GetStream/stream-video-js/issues/1527)
1508
1759
  - `@stream-io/video-react-bindings` updated to version `1.4.1`
1509
1760
 
1510
1761
  ## [1.9.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.8.0...@stream-io/video-react-native-sdk-1.9.0) (2025-01-16)
@@ -1561,6 +1812,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1561
1812
  ### Dependency Updates
1562
1813
 
1563
1814
  - `@stream-io/video-client` updated to version `1.13.1`
1815
+ - **client:** fix the initial value of deviceState in clientDetails ([#1629](https://github.com/GetStream/stream-video-js/issues/1629)) ([afefb67](https://github.com/GetStream/stream-video-js/commit/afefb67a568899e2ce500e6dad36e64b6b0e5a3d))
1564
1816
  - `@stream-io/video-react-bindings` updated to version `1.2.16`
1565
1817
 
1566
1818
  ## [1.5.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.22...@stream-io/video-react-native-sdk-1.5.0) (2024-12-20)
@@ -1585,6 +1837,11 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1585
1837
  ### Dependency Updates
1586
1838
 
1587
1839
  - `@stream-io/video-client` updated to version `1.12.4`
1840
+ - **Bug Fixes**
1841
+ - adjust dynascale debouncing for upscaling and downscaling ([#1621](https://github.com/GetStream/stream-video-js/issues/1621)) [skip ci] ([7b3a721](https://github.com/GetStream/stream-video-js/commit/7b3a72192fab79d8af8d1c392a9f0135e2d25b16))
1842
+ - prevent auto-dropping already accepted or rejected calls ([#1619](https://github.com/GetStream/stream-video-js/issues/1619)) ([113406a](https://github.com/GetStream/stream-video-js/commit/113406a9ba7fdf2e193a1933b73963e0011f28f0))
1843
+ - **Other**
1844
+ - improve test coverage reporting ([#1624](https://github.com/GetStream/stream-video-js/issues/1624)) ([32bb870](https://github.com/GetStream/stream-video-js/commit/32bb870187f0627c32d2b5692ce3de633d743582))
1588
1845
  - `@stream-io/video-react-bindings` updated to version `1.2.14`
1589
1846
 
1590
1847
  ## [1.4.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.19...@stream-io/video-react-native-sdk-1.4.20) (2024-12-16)
@@ -1627,6 +1884,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1627
1884
  ### Dependency Updates
1628
1885
 
1629
1886
  - `@stream-io/video-client` updated to version `1.12.2`
1887
+ - **Bug Fixes**
1888
+ - pre-built timer worker ([#1617](https://github.com/GetStream/stream-video-js/issues/1617)) ([94dacef](https://github.com/GetStream/stream-video-js/commit/94dacef1c2b1e8794a42657ddab29a3b584eb0b4)), closes [#1557](https://github.com/GetStream/stream-video-js/issues/1557)
1889
+ - **Other**
1890
+ - drop docusaurus docs ([#1613](https://github.com/GetStream/stream-video-js/issues/1613)) ([8743c8d](https://github.com/GetStream/stream-video-js/commit/8743c8d221191759266010c6cd053480da1d71a5))
1630
1891
  - `@stream-io/video-react-bindings` updated to version `1.2.12`
1631
1892
 
1632
1893
  - drop docusaurus docs ([#1613](https://github.com/GetStream/stream-video-js/issues/1613)) ([8743c8d](https://github.com/GetStream/stream-video-js/commit/8743c8d221191759266010c6cd053480da1d71a5))
@@ -1636,6 +1897,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1636
1897
  ### Dependency Updates
1637
1898
 
1638
1899
  - `@stream-io/video-client` updated to version `1.12.1`
1900
+ - reenable usage of ringing filters with useCalls ([1dffaed](https://github.com/GetStream/stream-video-js/commit/1dffaed609ac147a6030a4fb103c4dd586db775e))
1639
1901
  - `@stream-io/video-react-bindings` updated to version `1.2.11`
1640
1902
 
1641
1903
  ## [1.4.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.12...@stream-io/video-react-native-sdk-1.4.13) (2024-12-10)
@@ -1643,6 +1905,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1643
1905
  ### Dependency Updates
1644
1906
 
1645
1907
  - `@stream-io/video-client` updated to version `1.12.0`
1908
+ - Aggregate stats reports - request and response objects ([#1614](https://github.com/GetStream/stream-video-js/issues/1614)) ([8a47fea](https://github.com/GetStream/stream-video-js/commit/8a47fea491232e524b1de780c12c0d00e0f02bcd))
1646
1909
  - `@stream-io/video-react-bindings` updated to version `1.2.10`
1647
1910
 
1648
1911
  ## [1.4.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.11...@stream-io/video-react-native-sdk-1.4.12) (2024-12-09)
@@ -1650,6 +1913,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1650
1913
  ### Dependency Updates
1651
1914
 
1652
1915
  - `@stream-io/video-client` updated to version `1.11.15`
1916
+ - avoid call.get in all call.ring events ([#1615](https://github.com/GetStream/stream-video-js/issues/1615)) ([c757370](https://github.com/GetStream/stream-video-js/commit/c7573701a20b4a29cd2b6fd08a55d4eff503f77f))
1653
1917
  - `@stream-io/video-react-bindings` updated to version `1.2.9`
1654
1918
 
1655
1919
  ## [1.4.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.10...@stream-io/video-react-native-sdk-1.4.11) (2024-12-04)
@@ -1657,6 +1921,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1657
1921
  ### Dependency Updates
1658
1922
 
1659
1923
  - `@stream-io/video-client` updated to version `1.11.14`
1924
+ - prevent device list observable from erroring ([#1608](https://github.com/GetStream/stream-video-js/issues/1608)) ([06af3e7](https://github.com/GetStream/stream-video-js/commit/06af3e7e03b63551c781512c797ac10c0486d0c7))
1660
1925
  - `@stream-io/video-react-bindings` updated to version `1.2.8`
1661
1926
 
1662
1927
  ## [1.4.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.9...@stream-io/video-react-native-sdk-1.4.10) (2024-12-03)
@@ -1670,6 +1935,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1670
1935
  ### Dependency Updates
1671
1936
 
1672
1937
  - `@stream-io/video-client` updated to version `1.11.13`
1938
+ - use worker to prevent timer throttling ([#1557](https://github.com/GetStream/stream-video-js/issues/1557)) ([c11c3ca](https://github.com/GetStream/stream-video-js/commit/c11c3caf455787fe531c83601bad71e7a0a0e9b9))
1673
1939
  - `@stream-io/video-react-bindings` updated to version `1.2.7`
1674
1940
 
1675
1941
  ## [1.4.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.7...@stream-io/video-react-native-sdk-1.4.8) (2024-12-03)
@@ -1677,6 +1943,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1677
1943
  ### Dependency Updates
1678
1944
 
1679
1945
  - `@stream-io/video-client` updated to version `1.11.12`
1946
+ - handle timeout on SFU WS connections ([#1600](https://github.com/GetStream/stream-video-js/issues/1600)) ([5f2db7b](https://github.com/GetStream/stream-video-js/commit/5f2db7bd5cfdf57cdc04d6a6ed752f43e5b06657))
1680
1947
  - `@stream-io/video-react-bindings` updated to version `1.2.6`
1681
1948
 
1682
1949
  ## [1.4.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.6...@stream-io/video-react-native-sdk-1.4.7) (2024-11-29)
@@ -1684,6 +1951,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1684
1951
  ### Dependency Updates
1685
1952
 
1686
1953
  - `@stream-io/video-client` updated to version `1.11.11`
1954
+ - revert [#1604](https://github.com/GetStream/stream-video-js/issues/1604) ([#1607](https://github.com/GetStream/stream-video-js/issues/1607)) ([567e4fb](https://github.com/GetStream/stream-video-js/commit/567e4fb309509b6b0d814826856d0a15efe16271))
1687
1955
  - `@stream-io/video-react-bindings` updated to version `1.2.5`
1688
1956
 
1689
1957
  ## [1.4.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.5...@stream-io/video-react-native-sdk-1.4.6) (2024-11-29)
@@ -1697,6 +1965,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1697
1965
  ### Dependency Updates
1698
1966
 
1699
1967
  - `@stream-io/video-client` updated to version `1.11.10`
1968
+ - ringing calls not being left when ended ([#1601](https://github.com/GetStream/stream-video-js/issues/1601)) ([1c2b9d1](https://github.com/GetStream/stream-video-js/commit/1c2b9d1a54767652acc52cae9bb3d348c9df566f))
1700
1969
  - `@stream-io/video-react-bindings` updated to version `1.2.4`
1701
1970
 
1702
1971
  ## [1.4.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.3...@stream-io/video-react-native-sdk-1.4.4) (2024-11-27)
@@ -1704,6 +1973,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1704
1973
  ### Dependency Updates
1705
1974
 
1706
1975
  - `@stream-io/video-client` updated to version `1.11.9`
1976
+ - cover some device selection edge cases ([#1604](https://github.com/GetStream/stream-video-js/issues/1604)) ([a8fc0ea](https://github.com/GetStream/stream-video-js/commit/a8fc0eaf1ed6c79ce24f77f52351a1e90701bd02))
1707
1977
  - `@stream-io/video-react-bindings` updated to version `1.2.3`
1708
1978
 
1709
1979
  ## [1.4.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.2...@stream-io/video-react-native-sdk-1.4.3) (2024-11-27)
@@ -1711,6 +1981,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1711
1981
  ### Dependency Updates
1712
1982
 
1713
1983
  - `@stream-io/video-client` updated to version `1.11.8`
1984
+ - **ios:** use vp8 when h264 constrainted baseline isn't available ([#1597](https://github.com/GetStream/stream-video-js/issues/1597)) ([6281216](https://github.com/GetStream/stream-video-js/commit/62812161cef5e9917c504dbc4cd9257709ea5fa1))
1714
1985
  - `@stream-io/video-react-bindings` updated to version `1.2.2`
1715
1986
 
1716
1987
  ## [1.4.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.1...@stream-io/video-react-native-sdk-1.4.2) (2024-11-27)
@@ -1724,6 +1995,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1724
1995
  ### Dependency Updates
1725
1996
 
1726
1997
  - `@stream-io/video-client` updated to version `1.11.7`
1998
+ - remove unused code from the coordinator websocket impl ([#1563](https://github.com/GetStream/stream-video-js/issues/1563)) ([921b820](https://github.com/GetStream/stream-video-js/commit/921b820133885dac299dab343cee3fc4b08705ce))
1727
1999
  - `@stream-io/video-react-bindings` updated to version `1.2.1`
1728
2000
 
1729
2001
  ## [1.4.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.8...@stream-io/video-react-native-sdk-1.4.0) (2024-11-25)
@@ -1741,6 +2013,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1741
2013
  ### Dependency Updates
1742
2014
 
1743
2015
  - `@stream-io/video-client` updated to version `1.11.6`
2016
+ - force single codec preference in the SDP ([#1588](https://github.com/GetStream/stream-video-js/issues/1588)) ([4afff09](https://github.com/GetStream/stream-video-js/commit/4afff09a778f8567176d22bcc22d36001dca7cd3)), closes [#1581](https://github.com/GetStream/stream-video-js/issues/1581)
1744
2017
  - `@stream-io/video-react-bindings` updated to version `1.1.23`
1745
2018
 
1746
2019
  ## [1.3.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.6...@stream-io/video-react-native-sdk-1.3.7) (2024-11-22)
@@ -1748,6 +2021,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1748
2021
  ### Dependency Updates
1749
2022
 
1750
2023
  - `@stream-io/video-client` updated to version `1.11.5`
2024
+ - unhandled promise rejections during reconnect ([#1585](https://github.com/GetStream/stream-video-js/issues/1585)) ([920c4ea](https://github.com/GetStream/stream-video-js/commit/920c4ea3b3f622430b35ac1bade74a6206ee17e5)), closes [/github.com/GetStream/stream-video-js/pull/1585/files#diff-420f6ddab47c1be72fd9ce8c99e1fa2b9f5f0495b7c367546ee0ff634beaed81](https://github.com/GetStream//github.com/GetStream/stream-video-js/pull/1585/files/issues/diff-420f6ddab47c1be72fd9ce8c99e1fa2b9f5f0495b7c367546ee0ff634beaed81)
1751
2025
  - `@stream-io/video-react-bindings` updated to version `1.1.22`
1752
2026
 
1753
2027
  ## [1.3.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.5...@stream-io/video-react-native-sdk-1.3.6) (2024-11-21)
@@ -1755,6 +2029,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1755
2029
  ### Dependency Updates
1756
2030
 
1757
2031
  - `@stream-io/video-client` updated to version `1.11.4`
2032
+ - experimental option to force single codec preference in the SDP ([#1581](https://github.com/GetStream/stream-video-js/issues/1581)) ([894a86e](https://github.com/GetStream/stream-video-js/commit/894a86e407dc0dd36b7463bb964c86da0c3055d1))
1758
2033
  - `@stream-io/video-react-bindings` updated to version `1.1.21`
1759
2034
 
1760
2035
  ## [1.3.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.4...@stream-io/video-react-native-sdk-1.3.5) (2024-11-21)
@@ -1768,6 +2043,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1768
2043
  ### Dependency Updates
1769
2044
 
1770
2045
  - `@stream-io/video-client` updated to version `1.11.3`
2046
+ - respect codec overrides when computing the video layers ([#1582](https://github.com/GetStream/stream-video-js/issues/1582)) ([c22b83e](https://github.com/GetStream/stream-video-js/commit/c22b83ef710f2188e680b73790154de046a824e9))
1771
2047
  - `@stream-io/video-react-bindings` updated to version `1.1.20`
1772
2048
 
1773
2049
  ## [1.3.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.2...@stream-io/video-react-native-sdk-1.3.3) (2024-11-20)
@@ -1781,6 +2057,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1781
2057
  ### Dependency Updates
1782
2058
 
1783
2059
  - `@stream-io/video-client` updated to version `1.11.2`
2060
+ - fully reset token manager on user disconnect ([#1578](https://github.com/GetStream/stream-video-js/issues/1578)) ([6751abc](https://github.com/GetStream/stream-video-js/commit/6751abc0507085bd7c9f3f803f4c5929e0598bea)), closes [#1573](https://github.com/GetStream/stream-video-js/issues/1573)
1784
2061
  - `@stream-io/video-react-bindings` updated to version `1.1.19`
1785
2062
 
1786
2063
  ## [1.3.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.0...@stream-io/video-react-native-sdk-1.3.1) (2024-11-14)
@@ -1805,6 +2082,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1805
2082
  ### Dependency Updates
1806
2083
 
1807
2084
  - `@stream-io/video-client` updated to version `1.11.0`
2085
+ - Connection timing ([#1574](https://github.com/GetStream/stream-video-js/issues/1574)) ([ce1dc9a](https://github.com/GetStream/stream-video-js/commit/ce1dc9a01fc5b0e60e3dac6653c27e99fd4b3ecb))
1808
2086
  - `@stream-io/video-react-bindings` updated to version `1.1.17`
1809
2087
 
1810
2088
  ## [1.2.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.13...@stream-io/video-react-native-sdk-1.2.14) (2024-11-07)
@@ -1812,6 +2090,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1812
2090
  ### Dependency Updates
1813
2091
 
1814
2092
  - `@stream-io/video-client` updated to version `1.10.5`
2093
+ - ignore maxSimulcastLayers override for SVC codecs ([#1564](https://github.com/GetStream/stream-video-js/issues/1564)) ([48f8abe](https://github.com/GetStream/stream-video-js/commit/48f8abe5fd5b48c367a04696febd582573def828))
1815
2094
  - `@stream-io/video-react-bindings` updated to version `1.1.16`
1816
2095
 
1817
2096
  ## [1.2.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.12...@stream-io/video-react-native-sdk-1.2.13) (2024-11-07)
@@ -1819,6 +2098,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1819
2098
  ### Dependency Updates
1820
2099
 
1821
2100
  - `@stream-io/video-client` updated to version `1.10.4`
2101
+ - max simulcast layers preference ([#1560](https://github.com/GetStream/stream-video-js/issues/1560)) ([2b0bf28](https://github.com/GetStream/stream-video-js/commit/2b0bf2824dce41c2709e361e0521cf85e1b2fd16))
1822
2102
  - `@stream-io/video-react-bindings` updated to version `1.1.15`
1823
2103
 
1824
2104
  ## [1.2.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.11...@stream-io/video-react-native-sdk-1.2.12) (2024-11-05)
@@ -1826,6 +2106,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1826
2106
  ### Dependency Updates
1827
2107
 
1828
2108
  - `@stream-io/video-client` updated to version `1.10.3`
2109
+ - camera flip did not work in react-native ([#1554](https://github.com/GetStream/stream-video-js/issues/1554)) ([423890c](https://github.com/GetStream/stream-video-js/commit/423890cb2d1925366d8a63c29f93c4c92c8104ad)), closes [#1521](https://github.com/GetStream/stream-video-js/issues/1521)
1829
2110
  - `@stream-io/video-react-bindings` updated to version `1.1.14`
1830
2111
 
1831
2112
  ## [1.2.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.10...@stream-io/video-react-native-sdk-1.2.11) (2024-11-04)
@@ -1839,6 +2120,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1839
2120
  ### Dependency Updates
1840
2121
 
1841
2122
  - `@stream-io/video-react-bindings` updated to version `1.1.13`
2123
+ - imports for useToggleCallRecording ([#1548](https://github.com/GetStream/stream-video-js/issues/1548)) ([f6b2180](https://github.com/GetStream/stream-video-js/commit/f6b21809e95691298d5c8fec6754a886eb9a28fe))
1842
2124
 
1843
2125
  ## [1.2.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.8...@stream-io/video-react-native-sdk-1.2.9) (2024-11-01)
1844
2126
 
@@ -1856,12 +2138,14 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1856
2138
  ### Dependency Updates
1857
2139
 
1858
2140
  - `@stream-io/video-react-bindings` updated to version `1.1.11`
2141
+ - move useToggleCallRecording to react-bindings ([#1545](https://github.com/GetStream/stream-video-js/issues/1545)) ([73014ca](https://github.com/GetStream/stream-video-js/commit/73014ca6a4585680f581c4e9481c2d286f2fcd37))
1859
2142
 
1860
2143
  ## [1.2.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.6...@stream-io/video-react-native-sdk-1.2.7) (2024-10-30)
1861
2144
 
1862
2145
  ### Dependency Updates
1863
2146
 
1864
2147
  - `@stream-io/video-client` updated to version `1.10.1`
2148
+ - various device selector issues ([#1541](https://github.com/GetStream/stream-video-js/issues/1541)) ([f23618b](https://github.com/GetStream/stream-video-js/commit/f23618bda447eeb2d66f908bdb38b24db051f87c))
1865
2149
  - `@stream-io/video-react-bindings` updated to version `1.1.10`
1866
2150
 
1867
2151
  ## [1.2.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.5...@stream-io/video-react-native-sdk-1.2.6) (2024-10-30)
@@ -1869,6 +2153,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1869
2153
  ### Dependency Updates
1870
2154
 
1871
2155
  - `@stream-io/video-client` updated to version `1.10.0`
2156
+ - report input devices in call stats ([#1533](https://github.com/GetStream/stream-video-js/issues/1533)) ([f34fe0a](https://github.com/GetStream/stream-video-js/commit/f34fe0a0444903099565ae55a9639e39fc19b76c))
1872
2157
  - `@stream-io/video-react-bindings` updated to version `1.1.9`
1873
2158
 
1874
2159
  ## [1.2.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.4...@stream-io/video-react-native-sdk-1.2.5) (2024-10-28)
@@ -1876,6 +2161,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1876
2161
  ### Dependency Updates
1877
2162
 
1878
2163
  - `@stream-io/video-client` updated to version `1.9.3`
2164
+ - make device selection by device id exact ([#1538](https://github.com/GetStream/stream-video-js/issues/1538)) ([6274cac](https://github.com/GetStream/stream-video-js/commit/6274cac2ecf155aa6ce0c6d764229e0e9cd39a6a))
1879
2165
  - `@stream-io/video-react-bindings` updated to version `1.1.8`
1880
2166
 
1881
2167
  ## [1.2.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.3...@stream-io/video-react-native-sdk-1.2.4) (2024-10-22)
@@ -1889,6 +2175,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1889
2175
  ### Dependency Updates
1890
2176
 
1891
2177
  - `@stream-io/video-client` updated to version `1.9.2`
2178
+ - **client:** invoke call.reject only when reject param specified ([#1530](https://github.com/GetStream/stream-video-js/issues/1530)) ([eac4e4e](https://github.com/GetStream/stream-video-js/commit/eac4e4ebd2575f5269f65db7173107d5cafab9bf))
1892
2179
  - `@stream-io/video-react-bindings` updated to version `1.1.7`
1893
2180
 
1894
2181
  ## [1.2.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.1...@stream-io/video-react-native-sdk-1.2.2) (2024-10-18)
@@ -1896,6 +2183,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1896
2183
  ### Dependency Updates
1897
2184
 
1898
2185
  - `@stream-io/video-client` updated to version `1.9.1`
2186
+ - **svc:** announce downscaled layers in setPublisher ([#1526](https://github.com/GetStream/stream-video-js/issues/1526)) ([96cadd0](https://github.com/GetStream/stream-video-js/commit/96cadd05e995392eac4ec300828d07b287d691a0))
1899
2187
  - `@stream-io/video-react-bindings` updated to version `1.1.6`
1900
2188
 
1901
2189
  ## [1.2.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.0...@stream-io/video-react-native-sdk-1.2.1) (2024-10-17)
@@ -1920,6 +2208,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1920
2208
  ### Dependency Updates
1921
2209
 
1922
2210
  - `@stream-io/video-client` updated to version `1.8.4`
2211
+ - ignore camera direction for desktop devices ([#1521](https://github.com/GetStream/stream-video-js/issues/1521)) ([562b5cc](https://github.com/GetStream/stream-video-js/commit/562b5cca77264330d08dff5305eccc489970076a))
1923
2212
  - `@stream-io/video-react-bindings` updated to version `1.1.4`
1924
2213
 
1925
2214
  ## [1.1.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.4...@stream-io/video-react-native-sdk-1.1.5) (2024-10-16)
@@ -1933,6 +2222,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1933
2222
  ### Dependency Updates
1934
2223
 
1935
2224
  - `@stream-io/video-client` updated to version `1.8.3`
2225
+ - do not release track if track was not removed from stream ([#1517](https://github.com/GetStream/stream-video-js/issues/1517)) ([5bfc528](https://github.com/GetStream/stream-video-js/commit/5bfc52850c36ffe0de37e47066538a8a14dc9e01))
1936
2226
  - `@stream-io/video-react-bindings` updated to version `1.1.3`
1937
2227
 
1938
2228
  ## [1.1.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.2...@stream-io/video-react-native-sdk-1.1.3) (2024-10-10)
@@ -1940,6 +2230,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1940
2230
  ### Dependency Updates
1941
2231
 
1942
2232
  - `@stream-io/video-client` updated to version `1.8.2`
2233
+ - add track release for react-native whenever track stop is called ([#1516](https://github.com/GetStream/stream-video-js/issues/1516)) ([5074510](https://github.com/GetStream/stream-video-js/commit/50745101d28d0339592c22ca02b076040ad3bdeb))
1943
2234
  - `@stream-io/video-react-bindings` updated to version `1.1.2`
1944
2235
 
1945
2236
  ## [1.1.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.1...@stream-io/video-react-native-sdk-1.1.2) (2024-10-10)
@@ -1947,6 +2238,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1947
2238
  ### Dependency Updates
1948
2239
 
1949
2240
  - `@stream-io/video-client` updated to version `1.8.1`
2241
+ - mic not fully released in some cases ([#1515](https://github.com/GetStream/stream-video-js/issues/1515)) ([b7bf90b](https://github.com/GetStream/stream-video-js/commit/b7bf90b9b1a83fb80d01a82ebee8754343963ae5))
1950
2242
  - `@stream-io/video-react-bindings` updated to version `1.1.1`
1951
2243
 
1952
2244
  ## [1.1.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.0...@stream-io/video-react-native-sdk-1.1.1) (2024-10-04)
@@ -1971,6 +2263,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1971
2263
  ### Dependency Updates
1972
2264
 
1973
2265
  - `@stream-io/video-client` updated to version `1.7.4`
2266
+ - retryable location hint ([#1505](https://github.com/GetStream/stream-video-js/issues/1505)) ([087417f](https://github.com/GetStream/stream-video-js/commit/087417f926b3d43a5bcb814ac9bb5951c1e63479))
1974
2267
  - `@stream-io/video-react-bindings` updated to version `1.0.10`
1975
2268
 
1976
2269
  ## [1.0.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.12...@stream-io/video-react-native-sdk-1.0.13) (2024-09-24)
@@ -1978,6 +2271,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1978
2271
  ### Dependency Updates
1979
2272
 
1980
2273
  - `@stream-io/video-client` updated to version `1.7.3`
2274
+ - do not always error out api calls when web socket initially failed ([#1495](https://github.com/GetStream/stream-video-js/issues/1495)) ([7cdb62e](https://github.com/GetStream/stream-video-js/commit/7cdb62e75cad56098ee81eabbcc63382f93fd218))
1981
2275
  - `@stream-io/video-react-bindings` updated to version `1.0.9`
1982
2276
 
1983
2277
  ## [1.0.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.11...@stream-io/video-react-native-sdk-1.0.12) (2024-09-20)
@@ -1985,6 +2279,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1985
2279
  ### Dependency Updates
1986
2280
 
1987
2281
  - `@stream-io/video-client` updated to version `1.7.2`
2282
+ - overridable bitrate and bitrate downscale factor ([#1493](https://github.com/GetStream/stream-video-js/issues/1493)) ([cce5d8e](https://github.com/GetStream/stream-video-js/commit/cce5d8e641a9182a1779952e4e62aa16ec21ab92))
1988
2283
  - `@stream-io/video-react-bindings` updated to version `1.0.8`
1989
2284
 
1990
2285
  ## [1.0.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.10...@stream-io/video-react-native-sdk-1.0.11) (2024-09-20)
@@ -1992,6 +2287,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
1992
2287
  ### Dependency Updates
1993
2288
 
1994
2289
  - `@stream-io/video-client` updated to version `1.7.1`
2290
+ - don't attempt to recover broken WebSockets when there isn't a network connection ([#1490](https://github.com/GetStream/stream-video-js/issues/1490)) ([d576f48](https://github.com/GetStream/stream-video-js/commit/d576f48c7f819d48008359a3c30fe5d1a3372145))
1995
2291
  - `@stream-io/video-react-bindings` updated to version `1.0.7`
1996
2292
 
1997
2293
  - `preMajor: false` for stable packages ([#1491](https://github.com/GetStream/stream-video-js/issues/1491)) ([6ed27b9](https://github.com/GetStream/stream-video-js/commit/6ed27b9d1dfebeb9a241f6aa0b55912cce87eef5))
@@ -2001,6 +2297,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2001
2297
  ### Dependency Updates
2002
2298
 
2003
2299
  - `@stream-io/video-client` updated to version `1.7.0`
2300
+ - React SDK cold-start optimizations ([#1488](https://github.com/GetStream/stream-video-js/issues/1488)) ([972e579](https://github.com/GetStream/stream-video-js/commit/972e5792b5a131a212b1031ade76dcb383897a46))
2004
2301
  - `@stream-io/video-react-bindings` updated to version `1.0.6`
2005
2302
 
2006
2303
  ## [1.0.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.8...@stream-io/video-react-native-sdk-1.0.9) (2024-09-19)
@@ -2008,6 +2305,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2008
2305
  ### Dependency Updates
2009
2306
 
2010
2307
  - `@stream-io/video-client` updated to version `1.6.5`
2308
+ - race condition in `applySettingsToStream` ([#1489](https://github.com/GetStream/stream-video-js/issues/1489)) ([bf2ad90](https://github.com/GetStream/stream-video-js/commit/bf2ad90224d88592d4ea27ea8d0683efe98771f7))
2011
2309
  - `@stream-io/video-react-bindings` updated to version `1.0.5`
2012
2310
 
2013
2311
  ## [1.0.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.7...@stream-io/video-react-native-sdk-1.0.8) (2024-09-13)
@@ -2015,6 +2313,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2015
2313
  ### Dependency Updates
2016
2314
 
2017
2315
  - `@stream-io/video-client` updated to version `1.6.4`
2316
+ - allow video target bitrate override ([#1487](https://github.com/GetStream/stream-video-js/issues/1487)) ([bfe34a3](https://github.com/GetStream/stream-video-js/commit/bfe34a3609182da5bbb03331978d86569cada098))
2018
2317
  - `@stream-io/video-react-bindings` updated to version `1.0.4`
2019
2318
 
2020
2319
  ## [1.0.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.6...@stream-io/video-react-native-sdk-1.0.7) (2024-09-11)
@@ -2028,6 +2327,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2028
2327
  ### Dependency Updates
2029
2328
 
2030
2329
  - `@stream-io/video-client` updated to version `1.6.3`
2330
+ - client instance removal used a wrong key ([#1484](https://github.com/GetStream/stream-video-js/issues/1484)) ([edff5d7](https://github.com/GetStream/stream-video-js/commit/edff5d7ca0cc241a3929da3b752073883f29da32))
2031
2331
  - `@stream-io/video-react-bindings` updated to version `1.0.3`
2032
2332
 
2033
2333
  ## [1.0.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.4...@stream-io/video-react-native-sdk-1.0.5) (2024-09-10)
@@ -2045,6 +2345,7 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2045
2345
  ### Dependency Updates
2046
2346
 
2047
2347
  - `@stream-io/video-client` updated to version `1.6.2`
2348
+ - prioritize h264 baseline profile ([#1482](https://github.com/GetStream/stream-video-js/issues/1482)) ([3ea3c5e](https://github.com/GetStream/stream-video-js/commit/3ea3c5ecf57b50d3f909d59a96811f636b07d8aa))
2048
2349
  - `@stream-io/video-react-bindings` updated to version `1.0.2`
2049
2350
 
2050
2351
  ## [1.0.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.2...@stream-io/video-react-native-sdk-1.0.3) (2024-09-06)
@@ -2062,7 +2363,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2062
2363
  ### Dependency Updates
2063
2364
 
2064
2365
  - `@stream-io/video-client` updated to version `1.6.1`
2366
+ - **Features**
2367
+ - Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
2368
+ - **Bug Fixes**
2369
+ - update state.endedAt after the SFU terminates the call ([#1477](https://github.com/GetStream/stream-video-js/issues/1477)) ([135b11f](https://github.com/GetStream/stream-video-js/commit/135b11f2e29f486f2f43b9ac2a84848d0fd0b5b4))
2370
+ - handle session_participant_count_updated
2371
+ - do not use ended_at from call state to check ringing
2372
+ - **Other**
2373
+ - update node-sdk, add this to pronto for token generation ([#1472](https://github.com/GetStream/stream-video-js/issues/1472)) ([c6cbc1f](https://github.com/GetStream/stream-video-js/commit/c6cbc1f8d003ea1c39796ccbc87d7553604f819b))
2065
2374
  - `@stream-io/video-react-bindings` updated to version `1.0.1`
2375
+ - **Features**
2376
+ - **react:** Support for Background Filters and Background
2377
+ - **Bug Fixes**
2378
+ - improve error handling across the
2379
+ - optimistically toggle device
2380
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2381
+ - **Other**
2382
+ - release bindings as a major version ([4fe1d2a](https://github.com/GetStream/stream-video-js/commit/4fe1d2a30d0c5019f26173ccd6c7fe49a9b53d73))
2066
2383
 
2067
2384
  ## [1.0.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.0...@stream-io/video-react-native-sdk-1.0.1) (2024-09-05)
2068
2385
 
@@ -2107,6 +2424,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2107
2424
  ### Dependency Updates
2108
2425
 
2109
2426
  - `@stream-io/video-client` updated to version `1.5.2`
2427
+ - **Features**
2428
+ - **client:** add a instance
2429
+ - **Bug Fixes**
2430
+ - `call.recording_failed` should update the call
2431
+ - ringing state issues when call was already
2432
+ - allow joining left call
2433
+ - allow reusing call instances after
2434
+ - report the Plain-JS sdk version to the
2435
+ - refactor background
2436
+ - improve browser permission
2437
+ - support for portrait mode
2438
+ - perform full reconnect if ice restart
2110
2439
  - `@stream-io/video-react-bindings` updated to version `0.4.55`
2111
2440
 
2112
2441
  ### [0.10.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.2...@stream-io/video-react-native-sdk-0.10.3) (2024-08-23)
@@ -2114,6 +2443,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2114
2443
  ### Dependency Updates
2115
2444
 
2116
2445
  - `@stream-io/video-client` updated to version `1.5.1`
2446
+ - **Features**
2447
+ - **client:** add a instance
2448
+ - **Bug Fixes**
2449
+ - `call.recording_failed` should update the call
2450
+ - ringing state issues when call was already
2451
+ - allow joining left call
2452
+ - allow reusing call instances after
2453
+ - report the Plain-JS sdk version to the
2454
+ - refactor background
2455
+ - improve browser permission
2456
+ - support for portrait mode
2457
+ - perform full reconnect if ice restart
2117
2458
  - `@stream-io/video-react-bindings` updated to version `0.4.54`
2118
2459
 
2119
2460
  ### [0.10.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.1...@stream-io/video-react-native-sdk-0.10.2) (2024-08-21)
@@ -2121,6 +2462,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2121
2462
  ### Dependency Updates
2122
2463
 
2123
2464
  - `@stream-io/video-client` updated to version `1.5.0`
2465
+ - **Features**
2466
+ - **client:** add a instance
2467
+ - **Bug Fixes**
2468
+ - `call.recording_failed` should update the call
2469
+ - ringing state issues when call was already
2470
+ - allow joining left call
2471
+ - allow reusing call instances after
2472
+ - report the Plain-JS sdk version to the
2473
+ - refactor background
2474
+ - improve browser permission
2475
+ - support for portrait mode
2476
+ - perform full reconnect if ice restart
2124
2477
  - `@stream-io/video-react-bindings` updated to version `0.4.53`
2125
2478
 
2126
2479
  ### Features
@@ -2212,6 +2565,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2212
2565
  ### Dependency Updates
2213
2566
 
2214
2567
  - `@stream-io/video-client` updated to version `1.4.4`
2568
+ - **Features**
2569
+ - **client:** support join_ahead_time_seconds field in the BackstageSettingsRequest
2570
+ - **Bug Fixes**
2571
+ - add concurrency
2215
2572
  - `@stream-io/video-react-bindings` updated to version `0.4.48`
2216
2573
 
2217
2574
  ### [0.8.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.7...@stream-io/video-react-native-sdk-0.8.8) (2024-06-28)
@@ -2225,6 +2582,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2225
2582
  ### Dependency Updates
2226
2583
 
2227
2584
  - `@stream-io/video-client` updated to version `1.4.3`
2585
+ - **Features**
2586
+ - **client:** support join_ahead_time_seconds field in the BackstageSettingsRequest
2587
+ - **Bug Fixes**
2588
+ - add concurrency
2228
2589
  - `@stream-io/video-react-bindings` updated to version `0.4.47`
2229
2590
 
2230
2591
  ### [0.8.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.5...@stream-io/video-react-native-sdk-0.8.6) (2024-06-24)
@@ -2232,6 +2593,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2232
2593
  ### Dependency Updates
2233
2594
 
2234
2595
  - `@stream-io/video-client` updated to version `1.4.2`
2596
+ - **Features**
2597
+ - **client:** support join_ahead_time_seconds field in the BackstageSettingsRequest
2598
+ - **Bug Fixes**
2599
+ - add concurrency
2235
2600
  - `@stream-io/video-react-bindings` updated to version `0.4.46`
2236
2601
 
2237
2602
  ### [0.8.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.4...@stream-io/video-react-native-sdk-0.8.5) (2024-06-19)
@@ -2239,6 +2604,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2239
2604
  ### Dependency Updates
2240
2605
 
2241
2606
  - `@stream-io/video-client` updated to version `1.4.1`
2607
+ - **Features**
2608
+ - **client:** support join_ahead_time_seconds field in the BackstageSettingsRequest
2609
+ - **Bug Fixes**
2610
+ - add concurrency
2242
2611
  - `@stream-io/video-react-bindings` updated to version `0.4.45`
2243
2612
 
2244
2613
  ### [0.8.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.3...@stream-io/video-react-native-sdk-0.8.4) (2024-06-19)
@@ -2246,6 +2615,10 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2246
2615
  ### Dependency Updates
2247
2616
 
2248
2617
  - `@stream-io/video-client` updated to version `1.4.0`
2618
+ - **Features**
2619
+ - **client:** support join_ahead_time_seconds field in the BackstageSettingsRequest
2620
+ - **Bug Fixes**
2621
+ - add concurrency
2249
2622
  - `@stream-io/video-react-bindings` updated to version `0.4.44`
2250
2623
 
2251
2624
  ### [0.8.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.2...@stream-io/video-react-native-sdk-0.8.3) (2024-06-17)
@@ -2289,6 +2662,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2289
2662
  ### Dependency Updates
2290
2663
 
2291
2664
  - `@stream-io/video-client` updated to version `1.3.1`
2665
+ - **Features**
2666
+ - improve `isSupported` method for noise
2667
+ - **client:** support reject
2668
+ - video filters on
2669
+ - **Bug Fixes**
2670
+ - catch error for user connect in
2671
+ - align with the latest
2672
+ - join doesn't work on chrome
2673
+ - improved input device error
2674
+ - prevent double sound detectors set
2675
+ - call.reject when there is no participant and call is in joined
2676
+ - **state:** aligns the participant state with other
2677
+ - correctly handle pending state
2678
+ - don't create publisher PC for anonymous
2679
+ - improve error handling across the
2680
+ - optimistically toggle device
2681
+ - **state:** handle participantUpdated
2292
2682
  - `@stream-io/video-react-bindings` updated to version `0.4.43`
2293
2683
 
2294
2684
  ### [0.7.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.27...@stream-io/video-react-native-sdk-0.7.28) (2024-06-10)
@@ -2302,6 +2692,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2302
2692
  ### Dependency Updates
2303
2693
 
2304
2694
  - `@stream-io/video-client` updated to version `1.3.0`
2695
+ - **Features**
2696
+ - improve `isSupported` method for noise
2697
+ - **client:** support reject
2698
+ - video filters on
2699
+ - **Bug Fixes**
2700
+ - catch error for user connect in
2701
+ - align with the latest
2702
+ - join doesn't work on chrome
2703
+ - improved input device error
2704
+ - prevent double sound detectors set
2705
+ - call.reject when there is no participant and call is in joined
2706
+ - **state:** aligns the participant state with other
2707
+ - correctly handle pending state
2708
+ - don't create publisher PC for anonymous
2709
+ - improve error handling across the
2710
+ - optimistically toggle device
2711
+ - **state:** handle participantUpdated
2305
2712
  - `@stream-io/video-react-bindings` updated to version `0.4.42`
2306
2713
 
2307
2714
  ### [0.7.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.25...@stream-io/video-react-native-sdk-0.7.26) (2024-06-06)
@@ -2327,6 +2734,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2327
2734
  ### Dependency Updates
2328
2735
 
2329
2736
  - `@stream-io/video-client` updated to version `1.2.3`
2737
+ - **Features**
2738
+ - improve `isSupported` method for noise
2739
+ - **client:** support reject
2740
+ - video filters on
2741
+ - **Bug Fixes**
2742
+ - catch error for user connect in
2743
+ - align with the latest
2744
+ - join doesn't work on chrome
2745
+ - improved input device error
2746
+ - prevent double sound detectors set
2747
+ - call.reject when there is no participant and call is in joined
2748
+ - **state:** aligns the participant state with other
2749
+ - correctly handle pending state
2750
+ - don't create publisher PC for anonymous
2751
+ - improve error handling across the
2752
+ - optimistically toggle device
2753
+ - **state:** handle participantUpdated
2330
2754
  - `@stream-io/video-react-bindings` updated to version `0.4.41`
2331
2755
 
2332
2756
  ### [0.7.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.21...@stream-io/video-react-native-sdk-0.7.22) (2024-06-05)
@@ -2346,6 +2770,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2346
2770
  ### Dependency Updates
2347
2771
 
2348
2772
  - `@stream-io/video-client` updated to version `1.2.2`
2773
+ - **Features**
2774
+ - improve `isSupported` method for noise
2775
+ - **client:** support reject
2776
+ - video filters on
2777
+ - **Bug Fixes**
2778
+ - catch error for user connect in
2779
+ - align with the latest
2780
+ - join doesn't work on chrome
2781
+ - improved input device error
2782
+ - prevent double sound detectors set
2783
+ - call.reject when there is no participant and call is in joined
2784
+ - **state:** aligns the participant state with other
2785
+ - correctly handle pending state
2786
+ - don't create publisher PC for anonymous
2787
+ - improve error handling across the
2788
+ - optimistically toggle device
2789
+ - **state:** handle participantUpdated
2349
2790
  - `@stream-io/video-react-bindings` updated to version `0.4.40`
2350
2791
 
2351
2792
  ### [0.7.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.18...@stream-io/video-react-native-sdk-0.7.19) (2024-06-04)
@@ -2353,6 +2794,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2353
2794
  ### Dependency Updates
2354
2795
 
2355
2796
  - `@stream-io/video-client` updated to version `1.2.1`
2797
+ - **Features**
2798
+ - improve `isSupported` method for noise
2799
+ - **client:** support reject
2800
+ - video filters on
2801
+ - **Bug Fixes**
2802
+ - catch error for user connect in
2803
+ - align with the latest
2804
+ - join doesn't work on chrome
2805
+ - improved input device error
2806
+ - prevent double sound detectors set
2807
+ - call.reject when there is no participant and call is in joined
2808
+ - **state:** aligns the participant state with other
2809
+ - correctly handle pending state
2810
+ - don't create publisher PC for anonymous
2811
+ - improve error handling across the
2812
+ - optimistically toggle device
2813
+ - **state:** handle participantUpdated
2356
2814
  - `@stream-io/video-react-bindings` updated to version `0.4.39`
2357
2815
 
2358
2816
  ### [0.7.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.17...@stream-io/video-react-native-sdk-0.7.18) (2024-06-03)
@@ -2366,6 +2824,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2366
2824
  ### Dependency Updates
2367
2825
 
2368
2826
  - `@stream-io/video-client` updated to version `1.2.0`
2827
+ - **Features**
2828
+ - improve `isSupported` method for noise
2829
+ - **client:** support reject
2830
+ - video filters on
2831
+ - **Bug Fixes**
2832
+ - catch error for user connect in
2833
+ - align with the latest
2834
+ - join doesn't work on chrome
2835
+ - improved input device error
2836
+ - prevent double sound detectors set
2837
+ - call.reject when there is no participant and call is in joined
2838
+ - **state:** aligns the participant state with other
2839
+ - correctly handle pending state
2840
+ - don't create publisher PC for anonymous
2841
+ - improve error handling across the
2842
+ - optimistically toggle device
2843
+ - **state:** handle participantUpdated
2369
2844
  - `@stream-io/video-react-bindings` updated to version `0.4.38`
2370
2845
 
2371
2846
  ### [0.7.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.15...@stream-io/video-react-native-sdk-0.7.16) (2024-06-03)
@@ -2373,6 +2848,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2373
2848
  ### Dependency Updates
2374
2849
 
2375
2850
  - `@stream-io/video-client` updated to version `1.1.0`
2851
+ - **Features**
2852
+ - improve `isSupported` method for noise
2853
+ - **client:** support reject
2854
+ - video filters on
2855
+ - **Bug Fixes**
2856
+ - catch error for user connect in
2857
+ - align with the latest
2858
+ - join doesn't work on chrome
2859
+ - improved input device error
2860
+ - prevent double sound detectors set
2861
+ - call.reject when there is no participant and call is in joined
2862
+ - **state:** aligns the participant state with other
2863
+ - correctly handle pending state
2864
+ - don't create publisher PC for anonymous
2865
+ - improve error handling across the
2866
+ - optimistically toggle device
2867
+ - **state:** handle participantUpdated
2376
2868
  - `@stream-io/video-react-bindings` updated to version `0.4.37`
2377
2869
  - `@stream-io/video-filters-react-native` updated to version `0.0.1`
2378
2870
 
@@ -2385,6 +2877,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2385
2877
  ### Dependency Updates
2386
2878
 
2387
2879
  - `@stream-io/video-client` updated to version `1.0.10`
2880
+ - **Features**
2881
+ - improve `isSupported` method for noise
2882
+ - **client:** support reject
2883
+ - video filters on
2884
+ - **Bug Fixes**
2885
+ - catch error for user connect in
2886
+ - align with the latest
2887
+ - join doesn't work on chrome
2888
+ - improved input device error
2889
+ - prevent double sound detectors set
2890
+ - call.reject when there is no participant and call is in joined
2891
+ - **state:** aligns the participant state with other
2892
+ - correctly handle pending state
2893
+ - don't create publisher PC for anonymous
2894
+ - improve error handling across the
2895
+ - optimistically toggle device
2896
+ - **state:** handle participantUpdated
2388
2897
  - `@stream-io/video-react-bindings` updated to version `0.4.36`
2389
2898
 
2390
2899
  ### [0.7.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.13...@stream-io/video-react-native-sdk-0.7.14) (2024-05-29)
@@ -2392,6 +2901,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2392
2901
  ### Dependency Updates
2393
2902
 
2394
2903
  - `@stream-io/video-client` updated to version `1.0.9`
2904
+ - **Features**
2905
+ - improve `isSupported` method for noise
2906
+ - **client:** support reject
2907
+ - video filters on
2908
+ - **Bug Fixes**
2909
+ - catch error for user connect in
2910
+ - align with the latest
2911
+ - join doesn't work on chrome
2912
+ - improved input device error
2913
+ - prevent double sound detectors set
2914
+ - call.reject when there is no participant and call is in joined
2915
+ - **state:** aligns the participant state with other
2916
+ - correctly handle pending state
2917
+ - don't create publisher PC for anonymous
2918
+ - improve error handling across the
2919
+ - optimistically toggle device
2920
+ - **state:** handle participantUpdated
2395
2921
  - `@stream-io/video-react-bindings` updated to version `0.4.35`
2396
2922
 
2397
2923
  ### [0.7.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.12...@stream-io/video-react-native-sdk-0.7.13) (2024-05-27)
@@ -2417,6 +2943,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2417
2943
  ### Dependency Updates
2418
2944
 
2419
2945
  - `@stream-io/video-client` updated to version `1.0.8`
2946
+ - **Features**
2947
+ - improve `isSupported` method for noise
2948
+ - **client:** support reject
2949
+ - video filters on
2950
+ - **Bug Fixes**
2951
+ - catch error for user connect in
2952
+ - align with the latest
2953
+ - join doesn't work on chrome
2954
+ - improved input device error
2955
+ - prevent double sound detectors set
2956
+ - call.reject when there is no participant and call is in joined
2957
+ - **state:** aligns the participant state with other
2958
+ - correctly handle pending state
2959
+ - don't create publisher PC for anonymous
2960
+ - improve error handling across the
2961
+ - optimistically toggle device
2962
+ - **state:** handle participantUpdated
2420
2963
  - `@stream-io/video-react-bindings` updated to version `0.4.34`
2421
2964
 
2422
2965
  ### [0.7.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.8...@stream-io/video-react-native-sdk-0.7.9) (2024-05-22)
@@ -2430,6 +2973,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2430
2973
  ### Dependency Updates
2431
2974
 
2432
2975
  - `@stream-io/video-client` updated to version `1.0.7`
2976
+ - **Features**
2977
+ - improve `isSupported` method for noise
2978
+ - **client:** support reject
2979
+ - video filters on
2980
+ - **Bug Fixes**
2981
+ - catch error for user connect in
2982
+ - align with the latest
2983
+ - join doesn't work on chrome
2984
+ - improved input device error
2985
+ - prevent double sound detectors set
2986
+ - call.reject when there is no participant and call is in joined
2987
+ - **state:** aligns the participant state with other
2988
+ - correctly handle pending state
2989
+ - don't create publisher PC for anonymous
2990
+ - improve error handling across the
2991
+ - optimistically toggle device
2992
+ - **state:** handle participantUpdated
2433
2993
  - `@stream-io/video-react-bindings` updated to version `0.4.33`
2434
2994
 
2435
2995
  ### [0.7.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.6...@stream-io/video-react-native-sdk-0.7.7) (2024-05-16)
@@ -2437,6 +2997,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2437
2997
  ### Dependency Updates
2438
2998
 
2439
2999
  - `@stream-io/video-client` updated to version `1.0.6`
3000
+ - **Features**
3001
+ - improve `isSupported` method for noise
3002
+ - **client:** support reject
3003
+ - video filters on
3004
+ - **Bug Fixes**
3005
+ - catch error for user connect in
3006
+ - align with the latest
3007
+ - join doesn't work on chrome
3008
+ - improved input device error
3009
+ - prevent double sound detectors set
3010
+ - call.reject when there is no participant and call is in joined
3011
+ - **state:** aligns the participant state with other
3012
+ - correctly handle pending state
3013
+ - don't create publisher PC for anonymous
3014
+ - improve error handling across the
3015
+ - optimistically toggle device
3016
+ - **state:** handle participantUpdated
2440
3017
  - `@stream-io/video-react-bindings` updated to version `0.4.32`
2441
3018
 
2442
3019
  ### Bug Fixes
@@ -2448,6 +3025,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2448
3025
  ### Dependency Updates
2449
3026
 
2450
3027
  - `@stream-io/video-client` updated to version `1.0.5`
3028
+ - **Features**
3029
+ - improve `isSupported` method for noise
3030
+ - **client:** support reject
3031
+ - video filters on
3032
+ - **Bug Fixes**
3033
+ - catch error for user connect in
3034
+ - align with the latest
3035
+ - join doesn't work on chrome
3036
+ - improved input device error
3037
+ - prevent double sound detectors set
3038
+ - call.reject when there is no participant and call is in joined
3039
+ - **state:** aligns the participant state with other
3040
+ - correctly handle pending state
3041
+ - don't create publisher PC for anonymous
3042
+ - improve error handling across the
3043
+ - optimistically toggle device
3044
+ - **state:** handle participantUpdated
2451
3045
  - `@stream-io/video-react-bindings` updated to version `0.4.31`
2452
3046
 
2453
3047
  ### [0.7.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.4...@stream-io/video-react-native-sdk-0.7.5) (2024-05-16)
@@ -2467,6 +3061,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2467
3061
  ### Dependency Updates
2468
3062
 
2469
3063
  - `@stream-io/video-client` updated to version `1.0.4`
3064
+ - **Features**
3065
+ - improve `isSupported` method for noise
3066
+ - **client:** support reject
3067
+ - video filters on
3068
+ - **Bug Fixes**
3069
+ - catch error for user connect in
3070
+ - align with the latest
3071
+ - join doesn't work on chrome
3072
+ - improved input device error
3073
+ - prevent double sound detectors set
3074
+ - call.reject when there is no participant and call is in joined
3075
+ - **state:** aligns the participant state with other
3076
+ - correctly handle pending state
3077
+ - don't create publisher PC for anonymous
3078
+ - improve error handling across the
3079
+ - optimistically toggle device
3080
+ - **state:** handle participantUpdated
2470
3081
  - `@stream-io/video-react-bindings` updated to version `0.4.30`
2471
3082
 
2472
3083
  ### [0.7.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.1...@stream-io/video-react-native-sdk-0.7.2) (2024-05-13)
@@ -2474,6 +3085,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2474
3085
  ### Dependency Updates
2475
3086
 
2476
3087
  - `@stream-io/video-client` updated to version `1.0.3`
3088
+ - **Features**
3089
+ - improve `isSupported` method for noise
3090
+ - **client:** support reject
3091
+ - video filters on
3092
+ - **Bug Fixes**
3093
+ - catch error for user connect in
3094
+ - align with the latest
3095
+ - join doesn't work on chrome
3096
+ - improved input device error
3097
+ - prevent double sound detectors set
3098
+ - call.reject when there is no participant and call is in joined
3099
+ - **state:** aligns the participant state with other
3100
+ - correctly handle pending state
3101
+ - don't create publisher PC for anonymous
3102
+ - improve error handling across the
3103
+ - optimistically toggle device
3104
+ - **state:** handle participantUpdated
2477
3105
  - `@stream-io/video-react-bindings` updated to version `0.4.29`
2478
3106
 
2479
3107
  ### [0.7.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.0...@stream-io/video-react-native-sdk-0.7.1) (2024-05-13)
@@ -2481,6 +3109,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2481
3109
  ### Dependency Updates
2482
3110
 
2483
3111
  - `@stream-io/video-client` updated to version `1.0.2`
3112
+ - **Features**
3113
+ - improve `isSupported` method for noise
3114
+ - **client:** support reject
3115
+ - video filters on
3116
+ - **Bug Fixes**
3117
+ - catch error for user connect in
3118
+ - align with the latest
3119
+ - join doesn't work on chrome
3120
+ - improved input device error
3121
+ - prevent double sound detectors set
3122
+ - call.reject when there is no participant and call is in joined
3123
+ - **state:** aligns the participant state with other
3124
+ - correctly handle pending state
3125
+ - don't create publisher PC for anonymous
3126
+ - improve error handling across the
3127
+ - optimistically toggle device
3128
+ - **state:** handle participantUpdated
2484
3129
  - `@stream-io/video-react-bindings` updated to version `0.4.28`
2485
3130
 
2486
3131
  ### Bug Fixes
@@ -2502,6 +3147,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2502
3147
  ### Dependency Updates
2503
3148
 
2504
3149
  - `@stream-io/video-client` updated to version `1.0.1`
3150
+ - **Features**
3151
+ - **v1:** release
3152
+ - support target_resolution backend setting for
3153
+ - Noise
3154
+ - **feedback:** Collect user
3155
+ - update from
3156
+ - update coordinator
3157
+ - user
3158
+ - **Bug Fixes**
3159
+ - change log level of send stats SFU API to type
3160
+ - **devices:** API to disable speaking while muted
3161
+ - **state:** optimized Call State
3162
+ - update call state with transcription
3163
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3164
+ - **publisher:** ensure initial bitrate is
3165
+ - **codecs:** Set codec preferences based on receiving
2505
3166
  - `@stream-io/video-react-bindings` updated to version `0.4.27`
2506
3167
 
2507
3168
  ### [0.6.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.19...@stream-io/video-react-native-sdk-0.6.20) (2024-05-07)
@@ -2515,6 +3176,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2515
3176
  ### Dependency Updates
2516
3177
 
2517
3178
  - `@stream-io/video-client` updated to version `1.0.0`
3179
+ - **Features**
3180
+ - **v1:** release
3181
+ - support target_resolution backend setting for
3182
+ - Noise
3183
+ - **feedback:** Collect user
3184
+ - update from
3185
+ - update coordinator
3186
+ - user
3187
+ - **Bug Fixes**
3188
+ - change log level of send stats SFU API to type
3189
+ - **devices:** API to disable speaking while muted
3190
+ - **state:** optimized Call State
3191
+ - update call state with transcription
3192
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3193
+ - **publisher:** ensure initial bitrate is
3194
+ - **codecs:** Set codec preferences based on receiving
2518
3195
  - `@stream-io/video-react-bindings` updated to version `0.4.26`
2519
3196
 
2520
3197
  ### [0.6.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.17...@stream-io/video-react-native-sdk-0.6.18) (2024-05-07)
@@ -2522,6 +3199,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2522
3199
  ### Dependency Updates
2523
3200
 
2524
3201
  - `@stream-io/video-client` updated to version `0.8.0`
3202
+ - **Features**
3203
+ - **v1:** release
3204
+ - support target_resolution backend setting for
3205
+ - Noise
3206
+ - **feedback:** Collect user
3207
+ - update from
3208
+ - update coordinator
3209
+ - user
3210
+ - **Bug Fixes**
3211
+ - change log level of send stats SFU API to type
3212
+ - **devices:** API to disable speaking while muted
3213
+ - **state:** optimized Call State
3214
+ - update call state with transcription
3215
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3216
+ - **publisher:** ensure initial bitrate is
3217
+ - **codecs:** Set codec preferences based on receiving
2525
3218
  - `@stream-io/video-react-bindings` updated to version `0.4.25`
2526
3219
 
2527
3220
  ### [0.6.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.16...@stream-io/video-react-native-sdk-0.6.17) (2024-05-07)
@@ -2529,6 +3222,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2529
3222
  ### Dependency Updates
2530
3223
 
2531
3224
  - `@stream-io/video-client` updated to version `0.7.13`
3225
+ - **Features**
3226
+ - **v1:** release
3227
+ - support target_resolution backend setting for
3228
+ - Noise
3229
+ - **feedback:** Collect user
3230
+ - update from
3231
+ - update coordinator
3232
+ - user
3233
+ - **Bug Fixes**
3234
+ - change log level of send stats SFU API to type
3235
+ - **devices:** API to disable speaking while muted
3236
+ - **state:** optimized Call State
3237
+ - update call state with transcription
3238
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3239
+ - **publisher:** ensure initial bitrate is
3240
+ - **codecs:** Set codec preferences based on receiving
2532
3241
  - `@stream-io/video-react-bindings` updated to version `0.4.24`
2533
3242
 
2534
3243
  ### [0.6.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.15...@stream-io/video-react-native-sdk-0.6.16) (2024-05-03)
@@ -2536,6 +3245,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2536
3245
  ### Dependency Updates
2537
3246
 
2538
3247
  - `@stream-io/video-client` updated to version `0.7.12`
3248
+ - **Features**
3249
+ - **v1:** release
3250
+ - support target_resolution backend setting for
3251
+ - Noise
3252
+ - **feedback:** Collect user
3253
+ - update from
3254
+ - update coordinator
3255
+ - user
3256
+ - **Bug Fixes**
3257
+ - change log level of send stats SFU API to type
3258
+ - **devices:** API to disable speaking while muted
3259
+ - **state:** optimized Call State
3260
+ - update call state with transcription
3261
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3262
+ - **publisher:** ensure initial bitrate is
3263
+ - **codecs:** Set codec preferences based on receiving
2539
3264
  - `@stream-io/video-react-bindings` updated to version `0.4.23`
2540
3265
 
2541
3266
  ### [0.6.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.14...@stream-io/video-react-native-sdk-0.6.15) (2024-05-03)
@@ -2543,6 +3268,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2543
3268
  ### Dependency Updates
2544
3269
 
2545
3270
  - `@stream-io/video-client` updated to version `0.7.11`
3271
+ - **Features**
3272
+ - **v1:** release
3273
+ - support target_resolution backend setting for
3274
+ - Noise
3275
+ - **feedback:** Collect user
3276
+ - update from
3277
+ - update coordinator
3278
+ - user
3279
+ - **Bug Fixes**
3280
+ - change log level of send stats SFU API to type
3281
+ - **devices:** API to disable speaking while muted
3282
+ - **state:** optimized Call State
3283
+ - update call state with transcription
3284
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3285
+ - **publisher:** ensure initial bitrate is
3286
+ - **codecs:** Set codec preferences based on receiving
2546
3287
  - `@stream-io/video-react-bindings` updated to version `0.4.22`
2547
3288
 
2548
3289
  ### Bug Fixes
@@ -2554,6 +3295,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2554
3295
  ### Dependency Updates
2555
3296
 
2556
3297
  - `@stream-io/video-client` updated to version `0.7.10`
3298
+ - **Features**
3299
+ - **v1:** release
3300
+ - support target_resolution backend setting for
3301
+ - Noise
3302
+ - **feedback:** Collect user
3303
+ - update from
3304
+ - update coordinator
3305
+ - user
3306
+ - **Bug Fixes**
3307
+ - change log level of send stats SFU API to type
3308
+ - **devices:** API to disable speaking while muted
3309
+ - **state:** optimized Call State
3310
+ - update call state with transcription
3311
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3312
+ - **publisher:** ensure initial bitrate is
3313
+ - **codecs:** Set codec preferences based on receiving
2557
3314
  - `@stream-io/video-react-bindings` updated to version `0.4.21`
2558
3315
 
2559
3316
  ### [0.6.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.12...@stream-io/video-react-native-sdk-0.6.13) (2024-04-26)
@@ -2561,6 +3318,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2561
3318
  ### Dependency Updates
2562
3319
 
2563
3320
  - `@stream-io/video-client` updated to version `0.7.9`
3321
+ - **Features**
3322
+ - **v1:** release
3323
+ - support target_resolution backend setting for
3324
+ - Noise
3325
+ - **feedback:** Collect user
3326
+ - update from
3327
+ - update coordinator
3328
+ - user
3329
+ - **Bug Fixes**
3330
+ - change log level of send stats SFU API to type
3331
+ - **devices:** API to disable speaking while muted
3332
+ - **state:** optimized Call State
3333
+ - update call state with transcription
3334
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3335
+ - **publisher:** ensure initial bitrate is
3336
+ - **codecs:** Set codec preferences based on receiving
2564
3337
  - `@stream-io/video-react-bindings` updated to version `0.4.20`
2565
3338
 
2566
3339
  ### [0.6.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.11...@stream-io/video-react-native-sdk-0.6.12) (2024-04-25)
@@ -2568,6 +3341,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2568
3341
  ### Dependency Updates
2569
3342
 
2570
3343
  - `@stream-io/video-client` updated to version `0.7.8`
3344
+ - **Features**
3345
+ - **v1:** release
3346
+ - support target_resolution backend setting for
3347
+ - Noise
3348
+ - **feedback:** Collect user
3349
+ - update from
3350
+ - update coordinator
3351
+ - user
3352
+ - **Bug Fixes**
3353
+ - change log level of send stats SFU API to type
3354
+ - **devices:** API to disable speaking while muted
3355
+ - **state:** optimized Call State
3356
+ - update call state with transcription
3357
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3358
+ - **publisher:** ensure initial bitrate is
3359
+ - **codecs:** Set codec preferences based on receiving
2571
3360
  - `@stream-io/video-react-bindings` updated to version `0.4.19`
2572
3361
 
2573
3362
  ### [0.6.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.10...@stream-io/video-react-native-sdk-0.6.11) (2024-04-23)
@@ -2575,6 +3364,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2575
3364
  ### Dependency Updates
2576
3365
 
2577
3366
  - `@stream-io/video-client` updated to version `0.7.7`
3367
+ - **Features**
3368
+ - **v1:** release
3369
+ - support target_resolution backend setting for
3370
+ - Noise
3371
+ - **feedback:** Collect user
3372
+ - update from
3373
+ - update coordinator
3374
+ - user
3375
+ - **Bug Fixes**
3376
+ - change log level of send stats SFU API to type
3377
+ - **devices:** API to disable speaking while muted
3378
+ - **state:** optimized Call State
3379
+ - update call state with transcription
3380
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3381
+ - **publisher:** ensure initial bitrate is
3382
+ - **codecs:** Set codec preferences based on receiving
2578
3383
  - `@stream-io/video-react-bindings` updated to version `0.4.18`
2579
3384
 
2580
3385
  ### Features
@@ -2586,6 +3391,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2586
3391
  ### Dependency Updates
2587
3392
 
2588
3393
  - `@stream-io/video-client` updated to version `0.7.6`
3394
+ - **Features**
3395
+ - **v1:** release
3396
+ - support target_resolution backend setting for
3397
+ - Noise
3398
+ - **feedback:** Collect user
3399
+ - update from
3400
+ - update coordinator
3401
+ - user
3402
+ - **Bug Fixes**
3403
+ - change log level of send stats SFU API to type
3404
+ - **devices:** API to disable speaking while muted
3405
+ - **state:** optimized Call State
3406
+ - update call state with transcription
3407
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3408
+ - **publisher:** ensure initial bitrate is
3409
+ - **codecs:** Set codec preferences based on receiving
2589
3410
  - `@stream-io/video-react-bindings` updated to version `0.4.17`
2590
3411
 
2591
3412
  ### [0.6.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.8...@stream-io/video-react-native-sdk-0.6.9) (2024-04-23)
@@ -2593,6 +3414,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2593
3414
  ### Dependency Updates
2594
3415
 
2595
3416
  - `@stream-io/video-client` updated to version `0.7.5`
3417
+ - **Features**
3418
+ - **v1:** release
3419
+ - support target_resolution backend setting for
3420
+ - Noise
3421
+ - **feedback:** Collect user
3422
+ - update from
3423
+ - update coordinator
3424
+ - user
3425
+ - **Bug Fixes**
3426
+ - change log level of send stats SFU API to type
3427
+ - **devices:** API to disable speaking while muted
3428
+ - **state:** optimized Call State
3429
+ - update call state with transcription
3430
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3431
+ - **publisher:** ensure initial bitrate is
3432
+ - **codecs:** Set codec preferences based on receiving
2596
3433
  - `@stream-io/video-react-bindings` updated to version `0.4.16`
2597
3434
 
2598
3435
  ### [0.6.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.7...@stream-io/video-react-native-sdk-0.6.8) (2024-04-19)
@@ -2606,6 +3443,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2606
3443
  ### Dependency Updates
2607
3444
 
2608
3445
  - `@stream-io/video-client` updated to version `0.7.4`
3446
+ - **Features**
3447
+ - **v1:** release
3448
+ - support target_resolution backend setting for
3449
+ - Noise
3450
+ - **feedback:** Collect user
3451
+ - update from
3452
+ - update coordinator
3453
+ - user
3454
+ - **Bug Fixes**
3455
+ - change log level of send stats SFU API to type
3456
+ - **devices:** API to disable speaking while muted
3457
+ - **state:** optimized Call State
3458
+ - update call state with transcription
3459
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3460
+ - **publisher:** ensure initial bitrate is
3461
+ - **codecs:** Set codec preferences based on receiving
2609
3462
  - `@stream-io/video-react-bindings` updated to version `0.4.15`
2610
3463
 
2611
3464
  ### [0.6.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.5...@stream-io/video-react-native-sdk-0.6.6) (2024-04-17)
@@ -2613,6 +3466,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2613
3466
  ### Dependency Updates
2614
3467
 
2615
3468
  - `@stream-io/video-client` updated to version `0.7.3`
3469
+ - **Features**
3470
+ - **v1:** release
3471
+ - support target_resolution backend setting for
3472
+ - Noise
3473
+ - **feedback:** Collect user
3474
+ - update from
3475
+ - update coordinator
3476
+ - user
3477
+ - **Bug Fixes**
3478
+ - change log level of send stats SFU API to type
3479
+ - **devices:** API to disable speaking while muted
3480
+ - **state:** optimized Call State
3481
+ - update call state with transcription
3482
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3483
+ - **publisher:** ensure initial bitrate is
3484
+ - **codecs:** Set codec preferences based on receiving
2616
3485
  - `@stream-io/video-react-bindings` updated to version `0.4.14`
2617
3486
 
2618
3487
  ### [0.6.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.4...@stream-io/video-react-native-sdk-0.6.5) (2024-04-16)
@@ -2626,6 +3495,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2626
3495
  ### Dependency Updates
2627
3496
 
2628
3497
  - `@stream-io/video-client` updated to version `0.7.2`
3498
+ - **Features**
3499
+ - **v1:** release
3500
+ - support target_resolution backend setting for
3501
+ - Noise
3502
+ - **feedback:** Collect user
3503
+ - update from
3504
+ - update coordinator
3505
+ - user
3506
+ - **Bug Fixes**
3507
+ - change log level of send stats SFU API to type
3508
+ - **devices:** API to disable speaking while muted
3509
+ - **state:** optimized Call State
3510
+ - update call state with transcription
3511
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3512
+ - **publisher:** ensure initial bitrate is
3513
+ - **codecs:** Set codec preferences based on receiving
2629
3514
  - `@stream-io/video-react-bindings` updated to version `0.4.13`
2630
3515
 
2631
3516
  ### [0.6.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.2...@stream-io/video-react-native-sdk-0.6.3) (2024-04-16)
@@ -2645,6 +3530,22 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2645
3530
  ### Dependency Updates
2646
3531
 
2647
3532
  - `@stream-io/video-client` updated to version `0.7.1`
3533
+ - **Features**
3534
+ - **v1:** release
3535
+ - support target_resolution backend setting for
3536
+ - Noise
3537
+ - **feedback:** Collect user
3538
+ - update from
3539
+ - update coordinator
3540
+ - user
3541
+ - **Bug Fixes**
3542
+ - change log level of send stats SFU API to type
3543
+ - **devices:** API to disable speaking while muted
3544
+ - **state:** optimized Call State
3545
+ - update call state with transcription
3546
+ - **client:** ignore SFU WS status code when the user initiates leaving a
3547
+ - **publisher:** ensure initial bitrate is
3548
+ - **codecs:** Set codec preferences based on receiving
2648
3549
  - `@stream-io/video-react-bindings` updated to version `0.4.12`
2649
3550
 
2650
3551
  ## [0.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.17...@stream-io/video-react-native-sdk-0.6.0) (2024-04-09)
@@ -2652,6 +3553,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2652
3553
  ### Dependency Updates
2653
3554
 
2654
3555
  - `@stream-io/video-client` updated to version `0.7.0`
3556
+ - **Features**
3557
+ - remove server-side capabilities from JS
3558
+ - revert add submit feedback method to
3559
+ - add submit feedback method to
3560
+ - **react:** Support for Background Filters and Background
3561
+ - [PBE-1611] Query call reports
3562
+ - **client:** update to the latest
3563
+ - SFU stats
3564
+ - **call:** Add getCallStats
3565
+ - **speakers:** Participant audio output
3566
+ - **Bug Fixes**
3567
+ - various bug fixes and
3568
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2655
3569
  - `@stream-io/video-react-bindings` updated to version `0.4.11`
2656
3570
 
2657
3571
  ### ⚠ BREAKING CHANGES
@@ -2667,6 +3581,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2667
3581
  ### Dependency Updates
2668
3582
 
2669
3583
  - `@stream-io/video-client` updated to version `0.6.10`
3584
+ - **Features**
3585
+ - remove server-side capabilities from JS
3586
+ - revert add submit feedback method to
3587
+ - add submit feedback method to
3588
+ - **react:** Support for Background Filters and Background
3589
+ - [PBE-1611] Query call reports
3590
+ - **client:** update to the latest
3591
+ - SFU stats
3592
+ - **call:** Add getCallStats
3593
+ - **speakers:** Participant audio output
3594
+ - **Bug Fixes**
3595
+ - various bug fixes and
3596
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2670
3597
  - `@stream-io/video-react-bindings` updated to version `0.4.10`
2671
3598
 
2672
3599
  ### [0.5.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.15...@stream-io/video-react-native-sdk-0.5.16) (2024-04-05)
@@ -2674,6 +3601,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2674
3601
  ### Dependency Updates
2675
3602
 
2676
3603
  - `@stream-io/video-client` updated to version `0.6.9`
3604
+ - **Features**
3605
+ - remove server-side capabilities from JS
3606
+ - revert add submit feedback method to
3607
+ - add submit feedback method to
3608
+ - **react:** Support for Background Filters and Background
3609
+ - [PBE-1611] Query call reports
3610
+ - **client:** update to the latest
3611
+ - SFU stats
3612
+ - **call:** Add getCallStats
3613
+ - **speakers:** Participant audio output
3614
+ - **Bug Fixes**
3615
+ - various bug fixes and
3616
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2677
3617
  - `@stream-io/video-react-bindings` updated to version `0.4.9`
2678
3618
 
2679
3619
  ### [0.5.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.14...@stream-io/video-react-native-sdk-0.5.15) (2024-04-05)
@@ -2681,6 +3621,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2681
3621
  ### Dependency Updates
2682
3622
 
2683
3623
  - `@stream-io/video-client` updated to version `0.6.8`
3624
+ - **Features**
3625
+ - remove server-side capabilities from JS
3626
+ - revert add submit feedback method to
3627
+ - add submit feedback method to
3628
+ - **react:** Support for Background Filters and Background
3629
+ - [PBE-1611] Query call reports
3630
+ - **client:** update to the latest
3631
+ - SFU stats
3632
+ - **call:** Add getCallStats
3633
+ - **speakers:** Participant audio output
3634
+ - **Bug Fixes**
3635
+ - various bug fixes and
3636
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2684
3637
  - `@stream-io/video-react-bindings` updated to version `0.4.8`
2685
3638
 
2686
3639
  ### Features
@@ -2692,6 +3645,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2692
3645
  ### Dependency Updates
2693
3646
 
2694
3647
  - `@stream-io/video-client` updated to version `0.6.7`
3648
+ - **Features**
3649
+ - remove server-side capabilities from JS
3650
+ - revert add submit feedback method to
3651
+ - add submit feedback method to
3652
+ - **react:** Support for Background Filters and Background
3653
+ - [PBE-1611] Query call reports
3654
+ - **client:** update to the latest
3655
+ - SFU stats
3656
+ - **call:** Add getCallStats
3657
+ - **speakers:** Participant audio output
3658
+ - **Bug Fixes**
3659
+ - various bug fixes and
3660
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2695
3661
  - `@stream-io/video-react-bindings` updated to version `0.4.7`
2696
3662
 
2697
3663
  ### [0.5.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.12...@stream-io/video-react-native-sdk-0.5.13) (2024-03-29)
@@ -2699,6 +3665,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2699
3665
  ### Dependency Updates
2700
3666
 
2701
3667
  - `@stream-io/video-client` updated to version `0.6.6`
3668
+ - **Features**
3669
+ - remove server-side capabilities from JS
3670
+ - revert add submit feedback method to
3671
+ - add submit feedback method to
3672
+ - **react:** Support for Background Filters and Background
3673
+ - [PBE-1611] Query call reports
3674
+ - **client:** update to the latest
3675
+ - SFU stats
3676
+ - **call:** Add getCallStats
3677
+ - **speakers:** Participant audio output
3678
+ - **Bug Fixes**
3679
+ - various bug fixes and
3680
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2702
3681
  - `@stream-io/video-react-bindings` updated to version `0.4.6`
2703
3682
 
2704
3683
  ### [0.5.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.11...@stream-io/video-react-native-sdk-0.5.12) (2024-03-29)
@@ -2706,6 +3685,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2706
3685
  ### Dependency Updates
2707
3686
 
2708
3687
  - `@stream-io/video-client` updated to version `0.6.5`
3688
+ - **Features**
3689
+ - remove server-side capabilities from JS
3690
+ - revert add submit feedback method to
3691
+ - add submit feedback method to
3692
+ - **react:** Support for Background Filters and Background
3693
+ - [PBE-1611] Query call reports
3694
+ - **client:** update to the latest
3695
+ - SFU stats
3696
+ - **call:** Add getCallStats
3697
+ - **speakers:** Participant audio output
3698
+ - **Bug Fixes**
3699
+ - various bug fixes and
3700
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2709
3701
  - `@stream-io/video-react-bindings` updated to version `0.4.5`
2710
3702
 
2711
3703
  ### [0.5.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.10...@stream-io/video-react-native-sdk-0.5.11) (2024-03-28)
@@ -2713,6 +3705,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2713
3705
  ### Dependency Updates
2714
3706
 
2715
3707
  - `@stream-io/video-client` updated to version `0.6.4`
3708
+ - **Features**
3709
+ - remove server-side capabilities from JS
3710
+ - revert add submit feedback method to
3711
+ - add submit feedback method to
3712
+ - **react:** Support for Background Filters and Background
3713
+ - [PBE-1611] Query call reports
3714
+ - **client:** update to the latest
3715
+ - SFU stats
3716
+ - **call:** Add getCallStats
3717
+ - **speakers:** Participant audio output
3718
+ - **Bug Fixes**
3719
+ - various bug fixes and
3720
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2716
3721
  - `@stream-io/video-react-bindings` updated to version `0.4.4`
2717
3722
 
2718
3723
  ### Bug Fixes
@@ -2724,6 +3729,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2724
3729
  ### Dependency Updates
2725
3730
 
2726
3731
  - `@stream-io/video-client` updated to version `0.6.3`
3732
+ - **Features**
3733
+ - remove server-side capabilities from JS
3734
+ - revert add submit feedback method to
3735
+ - add submit feedback method to
3736
+ - **react:** Support for Background Filters and Background
3737
+ - [PBE-1611] Query call reports
3738
+ - **client:** update to the latest
3739
+ - SFU stats
3740
+ - **call:** Add getCallStats
3741
+ - **speakers:** Participant audio output
3742
+ - **Bug Fixes**
3743
+ - various bug fixes and
3744
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2727
3745
  - `@stream-io/video-react-bindings` updated to version `0.4.3`
2728
3746
 
2729
3747
  ### Features
@@ -2735,6 +3753,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2735
3753
  ### Dependency Updates
2736
3754
 
2737
3755
  - `@stream-io/video-client` updated to version `0.6.2`
3756
+ - **Features**
3757
+ - remove server-side capabilities from JS
3758
+ - revert add submit feedback method to
3759
+ - add submit feedback method to
3760
+ - **react:** Support for Background Filters and Background
3761
+ - [PBE-1611] Query call reports
3762
+ - **client:** update to the latest
3763
+ - SFU stats
3764
+ - **call:** Add getCallStats
3765
+ - **speakers:** Participant audio output
3766
+ - **Bug Fixes**
3767
+ - various bug fixes and
3768
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2738
3769
  - `@stream-io/video-react-bindings` updated to version `0.4.2`
2739
3770
 
2740
3771
  ### [0.5.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.7...@stream-io/video-react-native-sdk-0.5.8) (2024-03-20)
@@ -2766,6 +3797,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2766
3797
  ### Dependency Updates
2767
3798
 
2768
3799
  - `@stream-io/video-client` updated to version `0.6.1`
3800
+ - **Features**
3801
+ - remove server-side capabilities from JS
3802
+ - revert add submit feedback method to
3803
+ - add submit feedback method to
3804
+ - **react:** Support for Background Filters and Background
3805
+ - [PBE-1611] Query call reports
3806
+ - **client:** update to the latest
3807
+ - SFU stats
3808
+ - **call:** Add getCallStats
3809
+ - **speakers:** Participant audio output
3810
+ - **Bug Fixes**
3811
+ - various bug fixes and
3812
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in
2769
3813
  - `@stream-io/video-react-bindings` updated to version `0.4.1`
2770
3814
 
2771
3815
  ### [0.5.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.2...@stream-io/video-react-native-sdk-0.5.3) (2024-03-13)
@@ -2787,7 +3831,25 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2787
3831
  ### Dependency Updates
2788
3832
 
2789
3833
  - `@stream-io/video-client` updated to version `0.6.0`
3834
+ - **Features**
3835
+ - **events:** improved type narrowing on call
3836
+ - **react-sdk:** Visual redesign of the SDK and Demo
3837
+ - **client:** add stopOnLeave param to device
3838
+ - external storage for
3839
+ - Fast
3840
+ - **client:** speaking while muted in React Native using temporary peer
3841
+ - **Bug Fixes**
3842
+ - **permissions:** relax device permission handling for
3843
+ - **client:** add workaround for missing getConfiguration support in react native
3844
+ - **client:** do not set h264 as preference for
3845
+ - **react-native:** no video stream from
3846
+ - **client:** automatic call join for other participants when someone
3847
+ - **sfu:** ensure SFU WebSocket is
3848
+ - **ring calls:** cancel auto-drop after rejecting a
3849
+ - **ringing:** Auto-Cancel outgoing
2790
3850
  - `@stream-io/video-react-bindings` updated to version `0.4.0`
3851
+ - **hooks:** expose permission hooks through
3852
+ - **device-api:** Browser Permissions
2791
3853
 
2792
3854
  ### ⚠ BREAKING CHANGES
2793
3855
 
@@ -2802,21 +3864,75 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2802
3864
  ### Dependency Updates
2803
3865
 
2804
3866
  - `@stream-io/video-client` updated to version `0.5.11`
3867
+ - **Features**
3868
+ - **events:** improved type narrowing on call
3869
+ - **react-sdk:** Visual redesign of the SDK and Demo
3870
+ - **client:** add stopOnLeave param to device
3871
+ - external storage for
3872
+ - Fast
3873
+ - **client:** speaking while muted in React Native using temporary peer
3874
+ - **Bug Fixes**
3875
+ - **permissions:** relax device permission handling for
3876
+ - **client:** add workaround for missing getConfiguration support in react native
3877
+ - **client:** do not set h264 as preference for
3878
+ - **react-native:** no video stream from
3879
+ - **client:** automatic call join for other participants when someone
3880
+ - **sfu:** ensure SFU WebSocket is
3881
+ - **ring calls:** cancel auto-drop after rejecting a
3882
+ - **ringing:** Auto-Cancel outgoing
2805
3883
  - `@stream-io/video-react-bindings` updated to version `0.3.22`
3884
+ - **hooks:** expose permission hooks through
3885
+ - **device-api:** Browser Permissions
2806
3886
 
2807
3887
  ### [0.4.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.4.1...@stream-io/video-react-native-sdk-0.4.2) (2024-02-16)
2808
3888
 
2809
3889
  ### Dependency Updates
2810
3890
 
2811
3891
  - `@stream-io/video-client` updated to version `0.5.10`
3892
+ - **Features**
3893
+ - **events:** improved type narrowing on call
3894
+ - **react-sdk:** Visual redesign of the SDK and Demo
3895
+ - **client:** add stopOnLeave param to device
3896
+ - external storage for
3897
+ - Fast
3898
+ - **client:** speaking while muted in React Native using temporary peer
3899
+ - **Bug Fixes**
3900
+ - **permissions:** relax device permission handling for
3901
+ - **client:** add workaround for missing getConfiguration support in react native
3902
+ - **client:** do not set h264 as preference for
3903
+ - **react-native:** no video stream from
3904
+ - **client:** automatic call join for other participants when someone
3905
+ - **sfu:** ensure SFU WebSocket is
3906
+ - **ring calls:** cancel auto-drop after rejecting a
3907
+ - **ringing:** Auto-Cancel outgoing
2812
3908
  - `@stream-io/video-react-bindings` updated to version `0.3.21`
3909
+ - **hooks:** expose permission hooks through
3910
+ - **device-api:** Browser Permissions
2813
3911
 
2814
3912
  ### [0.4.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.4.0...@stream-io/video-react-native-sdk-0.4.1) (2024-02-12)
2815
3913
 
2816
3914
  ### Dependency Updates
2817
3915
 
2818
3916
  - `@stream-io/video-client` updated to version `0.5.9`
3917
+ - **Features**
3918
+ - **events:** improved type narrowing on call
3919
+ - **react-sdk:** Visual redesign of the SDK and Demo
3920
+ - **client:** add stopOnLeave param to device
3921
+ - external storage for
3922
+ - Fast
3923
+ - **client:** speaking while muted in React Native using temporary peer
3924
+ - **Bug Fixes**
3925
+ - **permissions:** relax device permission handling for
3926
+ - **client:** add workaround for missing getConfiguration support in react native
3927
+ - **client:** do not set h264 as preference for
3928
+ - **react-native:** no video stream from
3929
+ - **client:** automatic call join for other participants when someone
3930
+ - **sfu:** ensure SFU WebSocket is
3931
+ - **ring calls:** cancel auto-drop after rejecting a
3932
+ - **ringing:** Auto-Cancel outgoing
2819
3933
  - `@stream-io/video-react-bindings` updated to version `0.3.20`
3934
+ - **hooks:** expose permission hooks through
3935
+ - **device-api:** Browser Permissions
2820
3936
 
2821
3937
  ## [0.4.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.18...@stream-io/video-react-native-sdk-0.4.0) (2024-02-12)
2822
3938
 
@@ -2954,6 +4070,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2954
4070
  ### Dependency Updates
2955
4071
 
2956
4072
  - `@stream-io/video-client` updated to version `0.5.0`
4073
+ - **Features**
4074
+ - **react-native:** move to webrtc
4075
+ - **participant-view:** allow opting-out from rendering
4076
+ - **device-api:** Browser Permissions
4077
+ - handle device
4078
+ - Apply device config settings when call state becomes
4079
+ - **Bug Fixes**
4080
+ - **session:** prevent duplication of session
4081
+ - **device-api:** check for Permissions API
4082
+ - lift the debug helpers from the SDK to
4083
+ - allow audio and screen share audio tracks, delay
4084
+ - **client:** optimized device
4085
+ - respect server-side settings in the
2957
4086
  - `@stream-io/video-react-bindings` updated to version `0.3.11`
2958
4087
 
2959
4088
  ### ⚠ BREAKING CHANGES
@@ -2973,6 +4102,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2973
4102
  ### Dependency Updates
2974
4103
 
2975
4104
  - `@stream-io/video-client` updated to version `0.4.10`
4105
+ - **Features**
4106
+ - **react-native:** move to webrtc
4107
+ - **participant-view:** allow opting-out from rendering
4108
+ - **device-api:** Browser Permissions
4109
+ - handle device
4110
+ - Apply device config settings when call state becomes
4111
+ - **Bug Fixes**
4112
+ - **session:** prevent duplication of session
4113
+ - **device-api:** check for Permissions API
4114
+ - lift the debug helpers from the SDK to
4115
+ - allow audio and screen share audio tracks, delay
4116
+ - **client:** optimized device
4117
+ - respect server-side settings in the
2976
4118
  - `@stream-io/video-react-bindings` updated to version `0.3.10`
2977
4119
 
2978
4120
  ### [0.2.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.12...@stream-io/video-react-native-sdk-0.2.13) (2023-11-27)
@@ -2986,6 +4128,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2986
4128
  ### Dependency Updates
2987
4129
 
2988
4130
  - `@stream-io/video-client` updated to version `0.4.9`
4131
+ - **Features**
4132
+ - **react-native:** move to webrtc
4133
+ - **participant-view:** allow opting-out from rendering
4134
+ - **device-api:** Browser Permissions
4135
+ - handle device
4136
+ - Apply device config settings when call state becomes
4137
+ - **Bug Fixes**
4138
+ - **session:** prevent duplication of session
4139
+ - **device-api:** check for Permissions API
4140
+ - lift the debug helpers from the SDK to
4141
+ - allow audio and screen share audio tracks, delay
4142
+ - **client:** optimized device
4143
+ - respect server-side settings in the
2989
4144
  - `@stream-io/video-react-bindings` updated to version `0.3.9`
2990
4145
 
2991
4146
  ### [0.2.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.10...@stream-io/video-react-native-sdk-0.2.11) (2023-11-17)
@@ -2999,6 +4154,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
2999
4154
  ### Dependency Updates
3000
4155
 
3001
4156
  - `@stream-io/video-client` updated to version `0.4.8`
4157
+ - **Features**
4158
+ - **react-native:** move to webrtc
4159
+ - **participant-view:** allow opting-out from rendering
4160
+ - **device-api:** Browser Permissions
4161
+ - handle device
4162
+ - Apply device config settings when call state becomes
4163
+ - **Bug Fixes**
4164
+ - **session:** prevent duplication of session
4165
+ - **device-api:** check for Permissions API
4166
+ - lift the debug helpers from the SDK to
4167
+ - allow audio and screen share audio tracks, delay
4168
+ - **client:** optimized device
4169
+ - respect server-side settings in the
3002
4170
  - `@stream-io/video-react-bindings` updated to version `0.3.8`
3003
4171
 
3004
4172
  ### [0.2.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.8...@stream-io/video-react-native-sdk-0.2.9) (2023-11-13)
@@ -3006,6 +4174,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3006
4174
  ### Dependency Updates
3007
4175
 
3008
4176
  - `@stream-io/video-client` updated to version `0.4.7`
4177
+ - **Features**
4178
+ - **react-native:** move to webrtc
4179
+ - **participant-view:** allow opting-out from rendering
4180
+ - **device-api:** Browser Permissions
4181
+ - handle device
4182
+ - Apply device config settings when call state becomes
4183
+ - **Bug Fixes**
4184
+ - **session:** prevent duplication of session
4185
+ - **device-api:** check for Permissions API
4186
+ - lift the debug helpers from the SDK to
4187
+ - allow audio and screen share audio tracks, delay
4188
+ - **client:** optimized device
4189
+ - respect server-side settings in the
3009
4190
  - `@stream-io/video-react-bindings` updated to version `0.3.7`
3010
4191
 
3011
4192
  ### Features
@@ -3017,6 +4198,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3017
4198
  ### Dependency Updates
3018
4199
 
3019
4200
  - `@stream-io/video-client` updated to version `0.4.6`
4201
+ - **Features**
4202
+ - **react-native:** move to webrtc
4203
+ - **participant-view:** allow opting-out from rendering
4204
+ - **device-api:** Browser Permissions
4205
+ - handle device
4206
+ - Apply device config settings when call state becomes
4207
+ - **Bug Fixes**
4208
+ - **session:** prevent duplication of session
4209
+ - **device-api:** check for Permissions API
4210
+ - lift the debug helpers from the SDK to
4211
+ - allow audio and screen share audio tracks, delay
4212
+ - **client:** optimized device
4213
+ - respect server-side settings in the
3020
4214
  - `@stream-io/video-react-bindings` updated to version `0.3.6`
3021
4215
 
3022
4216
  ### [0.2.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.6...@stream-io/video-react-native-sdk-0.2.7) (2023-11-10)
@@ -3030,6 +4224,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3030
4224
  ### Dependency Updates
3031
4225
 
3032
4226
  - `@stream-io/video-client` updated to version `0.4.5`
4227
+ - **Features**
4228
+ - **react-native:** move to webrtc
4229
+ - **participant-view:** allow opting-out from rendering
4230
+ - **device-api:** Browser Permissions
4231
+ - handle device
4232
+ - Apply device config settings when call state becomes
4233
+ - **Bug Fixes**
4234
+ - **session:** prevent duplication of session
4235
+ - **device-api:** check for Permissions API
4236
+ - lift the debug helpers from the SDK to
4237
+ - allow audio and screen share audio tracks, delay
4238
+ - **client:** optimized device
4239
+ - respect server-side settings in the
3033
4240
  - `@stream-io/video-react-bindings` updated to version `0.3.5`
3034
4241
 
3035
4242
  ### [0.2.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.4...@stream-io/video-react-native-sdk-0.2.5) (2023-11-02)
@@ -3037,6 +4244,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3037
4244
  ### Dependency Updates
3038
4245
 
3039
4246
  - `@stream-io/video-client` updated to version `0.4.4`
4247
+ - **Features**
4248
+ - **react-native:** move to webrtc
4249
+ - **participant-view:** allow opting-out from rendering
4250
+ - **device-api:** Browser Permissions
4251
+ - handle device
4252
+ - Apply device config settings when call state becomes
4253
+ - **Bug Fixes**
4254
+ - **session:** prevent duplication of session
4255
+ - **device-api:** check for Permissions API
4256
+ - lift the debug helpers from the SDK to
4257
+ - allow audio and screen share audio tracks, delay
4258
+ - **client:** optimized device
4259
+ - respect server-side settings in the
3040
4260
  - `@stream-io/video-react-bindings` updated to version `0.3.4`
3041
4261
 
3042
4262
  ### [0.2.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.3...@stream-io/video-react-native-sdk-0.2.4) (2023-11-01)
@@ -3044,6 +4264,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3044
4264
  ### Dependency Updates
3045
4265
 
3046
4266
  - `@stream-io/video-client` updated to version `0.4.3`
4267
+ - **Features**
4268
+ - **react-native:** move to webrtc
4269
+ - **participant-view:** allow opting-out from rendering
4270
+ - **device-api:** Browser Permissions
4271
+ - handle device
4272
+ - Apply device config settings when call state becomes
4273
+ - **Bug Fixes**
4274
+ - **session:** prevent duplication of session
4275
+ - **device-api:** check for Permissions API
4276
+ - lift the debug helpers from the SDK to
4277
+ - allow audio and screen share audio tracks, delay
4278
+ - **client:** optimized device
4279
+ - respect server-side settings in the
3047
4280
  - `@stream-io/video-react-bindings` updated to version `0.3.3`
3048
4281
 
3049
4282
  ### [0.2.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.2...@stream-io/video-react-native-sdk-0.2.3) (2023-11-01)
@@ -3051,6 +4284,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3051
4284
  ### Dependency Updates
3052
4285
 
3053
4286
  - `@stream-io/video-client` updated to version `0.4.2`
4287
+ - **Features**
4288
+ - **react-native:** move to webrtc
4289
+ - **participant-view:** allow opting-out from rendering
4290
+ - **device-api:** Browser Permissions
4291
+ - handle device
4292
+ - Apply device config settings when call state becomes
4293
+ - **Bug Fixes**
4294
+ - **session:** prevent duplication of session
4295
+ - **device-api:** check for Permissions API
4296
+ - lift the debug helpers from the SDK to
4297
+ - allow audio and screen share audio tracks, delay
4298
+ - **client:** optimized device
4299
+ - respect server-side settings in the
3054
4300
  - `@stream-io/video-react-bindings` updated to version `0.3.2`
3055
4301
 
3056
4302
  ### [0.2.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.1...@stream-io/video-react-native-sdk-0.2.2) (2023-10-30)
@@ -3058,6 +4304,19 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3058
4304
  ### Dependency Updates
3059
4305
 
3060
4306
  - `@stream-io/video-client` updated to version `0.4.1`
4307
+ - **Features**
4308
+ - **react-native:** move to webrtc
4309
+ - **participant-view:** allow opting-out from rendering
4310
+ - **device-api:** Browser Permissions
4311
+ - handle device
4312
+ - Apply device config settings when call state becomes
4313
+ - **Bug Fixes**
4314
+ - **session:** prevent duplication of session
4315
+ - **device-api:** check for Permissions API
4316
+ - lift the debug helpers from the SDK to
4317
+ - allow audio and screen share audio tracks, delay
4318
+ - **client:** optimized device
4319
+ - respect server-side settings in the
3061
4320
  - `@stream-io/video-react-bindings` updated to version `0.3.1`
3062
4321
 
3063
4322
  ### [0.2.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.0...@stream-io/video-react-native-sdk-0.2.1) (2023-10-27)
@@ -3071,7 +4330,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3071
4330
  ### Dependency Updates
3072
4331
 
3073
4332
  - `@stream-io/video-client` updated to version `0.4.0`
4333
+ - **Features**
4334
+ - **react-sdk:** Universal Device Management
4335
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4336
+ - mute screenshare_audio, update to the newest OpenAPI
4337
+ - **build:** ESM and CJS
4338
+ - ScreenShare Audio
4339
+ - **Call Preview:** Support for call
4340
+ - **react-sdk:**
4341
+ - **client:** share replay of computed
4342
+ - Update with new API
4343
+ - speaking while muted
4344
+ - restore remote muting
4345
+ - new device api remote
4346
+ - speaker
4347
+ - **Call:** Dynascale support for Plain-JS
4348
+ - apply target resolution to video feed, sync camera/mic
4349
+ - Disable doesn't stop audio
4350
+ - use new device API in RN SDK and move to
4351
+ - New device API
4352
+ - **Bug Fixes**
4353
+ - **client:** disable server side
4354
+ - **client:** skip broken update call types
4355
+ - sorting in paginated
4356
+ - ensure stable
4357
+ - use `@stream-io/video-client` as a tag
4358
+ - use `@types/ws` as a regular
4359
+ - add type check of deviceId before setting
4360
+ - Add extra delay before attempting to play video in Safari and
4361
+ - unmount video element when there is no video track or participant is
4362
+ - initial device state
4363
+ - **DynascaleManager:** update subscription upon
4364
+ - consider prior track publishing state before applying soft
4365
+ - do not do any codec preferences when sending dummy
4366
+ - **react-native:** blank stream on
4367
+ - round non-int video dimension
4368
+ - type definition of user object for ws
4369
+ - device api small
4370
+ - Change the backtage default value to
4371
+ - guest auth didn't wait for some API
4372
+ - **client:** export missing
3074
4373
  - `@stream-io/video-react-bindings` updated to version `0.3.0`
4374
+ - correctly report `live` state of the
3075
4375
 
3076
4376
  ### ⚠ BREAKING CHANGES
3077
4377
 
@@ -3086,13 +4386,55 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3086
4386
  ### Dependency Updates
3087
4387
 
3088
4388
  - `@stream-io/video-react-bindings` updated to version `0.2.37`
4389
+ - correctly report `live` state of the
3089
4390
 
3090
4391
  ### [0.1.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.12...@stream-io/video-react-native-sdk-0.1.13) (2023-10-25)
3091
4392
 
3092
4393
  ### Dependency Updates
3093
4394
 
3094
4395
  - `@stream-io/video-client` updated to version `0.3.36`
4396
+ - **Features**
4397
+ - **react-sdk:** Universal Device Management
4398
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4399
+ - mute screenshare_audio, update to the newest OpenAPI
4400
+ - **build:** ESM and CJS
4401
+ - ScreenShare Audio
4402
+ - **Call Preview:** Support for call
4403
+ - **react-sdk:**
4404
+ - **client:** share replay of computed
4405
+ - Update with new API
4406
+ - speaking while muted
4407
+ - restore remote muting
4408
+ - new device api remote
4409
+ - speaker
4410
+ - **Call:** Dynascale support for Plain-JS
4411
+ - apply target resolution to video feed, sync camera/mic
4412
+ - Disable doesn't stop audio
4413
+ - use new device API in RN SDK and move to
4414
+ - New device API
4415
+ - **Bug Fixes**
4416
+ - **client:** disable server side
4417
+ - **client:** skip broken update call types
4418
+ - sorting in paginated
4419
+ - ensure stable
4420
+ - use `@stream-io/video-client` as a tag
4421
+ - use `@types/ws` as a regular
4422
+ - add type check of deviceId before setting
4423
+ - Add extra delay before attempting to play video in Safari and
4424
+ - unmount video element when there is no video track or participant is
4425
+ - initial device state
4426
+ - **DynascaleManager:** update subscription upon
4427
+ - consider prior track publishing state before applying soft
4428
+ - do not do any codec preferences when sending dummy
4429
+ - **react-native:** blank stream on
4430
+ - round non-int video dimension
4431
+ - type definition of user object for ws
4432
+ - device api small
4433
+ - Change the backtage default value to
4434
+ - guest auth didn't wait for some API
4435
+ - **client:** export missing
3095
4436
  - `@stream-io/video-react-bindings` updated to version `0.2.37`
4437
+ - correctly report `live` state of the
3096
4438
 
3097
4439
  ### [0.1.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.11...@stream-io/video-react-native-sdk-0.1.12) (2023-10-20)
3098
4440
 
@@ -3111,7 +4453,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3111
4453
  ### Dependency Updates
3112
4454
 
3113
4455
  - `@stream-io/video-client` updated to version `0.3.35`
4456
+ - **Features**
4457
+ - **react-sdk:** Universal Device Management
4458
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4459
+ - mute screenshare_audio, update to the newest OpenAPI
4460
+ - **build:** ESM and CJS
4461
+ - ScreenShare Audio
4462
+ - **Call Preview:** Support for call
4463
+ - **react-sdk:**
4464
+ - **client:** share replay of computed
4465
+ - Update with new API
4466
+ - speaking while muted
4467
+ - restore remote muting
4468
+ - new device api remote
4469
+ - speaker
4470
+ - **Call:** Dynascale support for Plain-JS
4471
+ - apply target resolution to video feed, sync camera/mic
4472
+ - Disable doesn't stop audio
4473
+ - use new device API in RN SDK and move to
4474
+ - New device API
4475
+ - **Bug Fixes**
4476
+ - **client:** disable server side
4477
+ - **client:** skip broken update call types
4478
+ - sorting in paginated
4479
+ - ensure stable
4480
+ - use `@stream-io/video-client` as a tag
4481
+ - use `@types/ws` as a regular
4482
+ - add type check of deviceId before setting
4483
+ - Add extra delay before attempting to play video in Safari and
4484
+ - unmount video element when there is no video track or participant is
4485
+ - initial device state
4486
+ - **DynascaleManager:** update subscription upon
4487
+ - consider prior track publishing state before applying soft
4488
+ - do not do any codec preferences when sending dummy
4489
+ - **react-native:** blank stream on
4490
+ - round non-int video dimension
4491
+ - type definition of user object for ws
4492
+ - device api small
4493
+ - Change the backtage default value to
4494
+ - guest auth didn't wait for some API
4495
+ - **client:** export missing
3114
4496
  - `@stream-io/video-react-bindings` updated to version `0.2.36`
4497
+ - correctly report `live` state of the
3115
4498
 
3116
4499
  ### Features
3117
4500
 
@@ -3122,7 +4505,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3122
4505
  ### Dependency Updates
3123
4506
 
3124
4507
  - `@stream-io/video-client` updated to version `0.3.34`
4508
+ - **Features**
4509
+ - **react-sdk:** Universal Device Management
4510
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4511
+ - mute screenshare_audio, update to the newest OpenAPI
4512
+ - **build:** ESM and CJS
4513
+ - ScreenShare Audio
4514
+ - **Call Preview:** Support for call
4515
+ - **react-sdk:**
4516
+ - **client:** share replay of computed
4517
+ - Update with new API
4518
+ - speaking while muted
4519
+ - restore remote muting
4520
+ - new device api remote
4521
+ - speaker
4522
+ - **Call:** Dynascale support for Plain-JS
4523
+ - apply target resolution to video feed, sync camera/mic
4524
+ - Disable doesn't stop audio
4525
+ - use new device API in RN SDK and move to
4526
+ - New device API
4527
+ - **Bug Fixes**
4528
+ - **client:** disable server side
4529
+ - **client:** skip broken update call types
4530
+ - sorting in paginated
4531
+ - ensure stable
4532
+ - use `@stream-io/video-client` as a tag
4533
+ - use `@types/ws` as a regular
4534
+ - add type check of deviceId before setting
4535
+ - Add extra delay before attempting to play video in Safari and
4536
+ - unmount video element when there is no video track or participant is
4537
+ - initial device state
4538
+ - **DynascaleManager:** update subscription upon
4539
+ - consider prior track publishing state before applying soft
4540
+ - do not do any codec preferences when sending dummy
4541
+ - **react-native:** blank stream on
4542
+ - round non-int video dimension
4543
+ - type definition of user object for ws
4544
+ - device api small
4545
+ - Change the backtage default value to
4546
+ - guest auth didn't wait for some API
4547
+ - **client:** export missing
3125
4548
  - `@stream-io/video-react-bindings` updated to version `0.2.35`
4549
+ - correctly report `live` state of the
3126
4550
 
3127
4551
  ### Features
3128
4552
 
@@ -3139,7 +4563,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3139
4563
  ### Dependency Updates
3140
4564
 
3141
4565
  - `@stream-io/video-client` updated to version `0.3.33`
4566
+ - **Features**
4567
+ - **react-sdk:** Universal Device Management
4568
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4569
+ - mute screenshare_audio, update to the newest OpenAPI
4570
+ - **build:** ESM and CJS
4571
+ - ScreenShare Audio
4572
+ - **Call Preview:** Support for call
4573
+ - **react-sdk:**
4574
+ - **client:** share replay of computed
4575
+ - Update with new API
4576
+ - speaking while muted
4577
+ - restore remote muting
4578
+ - new device api remote
4579
+ - speaker
4580
+ - **Call:** Dynascale support for Plain-JS
4581
+ - apply target resolution to video feed, sync camera/mic
4582
+ - Disable doesn't stop audio
4583
+ - use new device API in RN SDK and move to
4584
+ - New device API
4585
+ - **Bug Fixes**
4586
+ - **client:** disable server side
4587
+ - **client:** skip broken update call types
4588
+ - sorting in paginated
4589
+ - ensure stable
4590
+ - use `@stream-io/video-client` as a tag
4591
+ - use `@types/ws` as a regular
4592
+ - add type check of deviceId before setting
4593
+ - Add extra delay before attempting to play video in Safari and
4594
+ - unmount video element when there is no video track or participant is
4595
+ - initial device state
4596
+ - **DynascaleManager:** update subscription upon
4597
+ - consider prior track publishing state before applying soft
4598
+ - do not do any codec preferences when sending dummy
4599
+ - **react-native:** blank stream on
4600
+ - round non-int video dimension
4601
+ - type definition of user object for ws
4602
+ - device api small
4603
+ - Change the backtage default value to
4604
+ - guest auth didn't wait for some API
4605
+ - **client:** export missing
3142
4606
  - `@stream-io/video-react-bindings` updated to version `0.2.34`
4607
+ - correctly report `live` state of the
3143
4608
 
3144
4609
  ### Bug Fixes
3145
4610
 
@@ -3150,7 +4615,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3150
4615
  ### Dependency Updates
3151
4616
 
3152
4617
  - `@stream-io/video-client` updated to version `0.3.32`
4618
+ - **Features**
4619
+ - **react-sdk:** Universal Device Management
4620
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4621
+ - mute screenshare_audio, update to the newest OpenAPI
4622
+ - **build:** ESM and CJS
4623
+ - ScreenShare Audio
4624
+ - **Call Preview:** Support for call
4625
+ - **react-sdk:**
4626
+ - **client:** share replay of computed
4627
+ - Update with new API
4628
+ - speaking while muted
4629
+ - restore remote muting
4630
+ - new device api remote
4631
+ - speaker
4632
+ - **Call:** Dynascale support for Plain-JS
4633
+ - apply target resolution to video feed, sync camera/mic
4634
+ - Disable doesn't stop audio
4635
+ - use new device API in RN SDK and move to
4636
+ - New device API
4637
+ - **Bug Fixes**
4638
+ - **client:** disable server side
4639
+ - **client:** skip broken update call types
4640
+ - sorting in paginated
4641
+ - ensure stable
4642
+ - use `@stream-io/video-client` as a tag
4643
+ - use `@types/ws` as a regular
4644
+ - add type check of deviceId before setting
4645
+ - Add extra delay before attempting to play video in Safari and
4646
+ - unmount video element when there is no video track or participant is
4647
+ - initial device state
4648
+ - **DynascaleManager:** update subscription upon
4649
+ - consider prior track publishing state before applying soft
4650
+ - do not do any codec preferences when sending dummy
4651
+ - **react-native:** blank stream on
4652
+ - round non-int video dimension
4653
+ - type definition of user object for ws
4654
+ - device api small
4655
+ - Change the backtage default value to
4656
+ - guest auth didn't wait for some API
4657
+ - **client:** export missing
3153
4658
  - `@stream-io/video-react-bindings` updated to version `0.2.33`
4659
+ - correctly report `live` state of the
3154
4660
 
3155
4661
  ### Features
3156
4662
 
@@ -3171,7 +4677,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3171
4677
  ### Dependency Updates
3172
4678
 
3173
4679
  - `@stream-io/video-client` updated to version `0.3.31`
4680
+ - **Features**
4681
+ - **react-sdk:** Universal Device Management
4682
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4683
+ - mute screenshare_audio, update to the newest OpenAPI
4684
+ - **build:** ESM and CJS
4685
+ - ScreenShare Audio
4686
+ - **Call Preview:** Support for call
4687
+ - **react-sdk:**
4688
+ - **client:** share replay of computed
4689
+ - Update with new API
4690
+ - speaking while muted
4691
+ - restore remote muting
4692
+ - new device api remote
4693
+ - speaker
4694
+ - **Call:** Dynascale support for Plain-JS
4695
+ - apply target resolution to video feed, sync camera/mic
4696
+ - Disable doesn't stop audio
4697
+ - use new device API in RN SDK and move to
4698
+ - New device API
4699
+ - **Bug Fixes**
4700
+ - **client:** disable server side
4701
+ - **client:** skip broken update call types
4702
+ - sorting in paginated
4703
+ - ensure stable
4704
+ - use `@stream-io/video-client` as a tag
4705
+ - use `@types/ws` as a regular
4706
+ - add type check of deviceId before setting
4707
+ - Add extra delay before attempting to play video in Safari and
4708
+ - unmount video element when there is no video track or participant is
4709
+ - initial device state
4710
+ - **DynascaleManager:** update subscription upon
4711
+ - consider prior track publishing state before applying soft
4712
+ - do not do any codec preferences when sending dummy
4713
+ - **react-native:** blank stream on
4714
+ - round non-int video dimension
4715
+ - type definition of user object for ws
4716
+ - device api small
4717
+ - Change the backtage default value to
4718
+ - guest auth didn't wait for some API
4719
+ - **client:** export missing
3174
4720
  - `@stream-io/video-react-bindings` updated to version `0.2.32`
4721
+ - correctly report `live` state of the
3175
4722
 
3176
4723
  ### Features
3177
4724
 
@@ -3182,7 +4729,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3182
4729
  ### Dependency Updates
3183
4730
 
3184
4731
  - `@stream-io/video-client` updated to version `0.3.30`
4732
+ - **Features**
4733
+ - **react-sdk:** Universal Device Management
4734
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4735
+ - mute screenshare_audio, update to the newest OpenAPI
4736
+ - **build:** ESM and CJS
4737
+ - ScreenShare Audio
4738
+ - **Call Preview:** Support for call
4739
+ - **react-sdk:**
4740
+ - **client:** share replay of computed
4741
+ - Update with new API
4742
+ - speaking while muted
4743
+ - restore remote muting
4744
+ - new device api remote
4745
+ - speaker
4746
+ - **Call:** Dynascale support for Plain-JS
4747
+ - apply target resolution to video feed, sync camera/mic
4748
+ - Disable doesn't stop audio
4749
+ - use new device API in RN SDK and move to
4750
+ - New device API
4751
+ - **Bug Fixes**
4752
+ - **client:** disable server side
4753
+ - **client:** skip broken update call types
4754
+ - sorting in paginated
4755
+ - ensure stable
4756
+ - use `@stream-io/video-client` as a tag
4757
+ - use `@types/ws` as a regular
4758
+ - add type check of deviceId before setting
4759
+ - Add extra delay before attempting to play video in Safari and
4760
+ - unmount video element when there is no video track or participant is
4761
+ - initial device state
4762
+ - **DynascaleManager:** update subscription upon
4763
+ - consider prior track publishing state before applying soft
4764
+ - do not do any codec preferences when sending dummy
4765
+ - **react-native:** blank stream on
4766
+ - round non-int video dimension
4767
+ - type definition of user object for ws
4768
+ - device api small
4769
+ - Change the backtage default value to
4770
+ - guest auth didn't wait for some API
4771
+ - **client:** export missing
3185
4772
  - `@stream-io/video-react-bindings` updated to version `0.2.31`
4773
+ - correctly report `live` state of the
3186
4774
 
3187
4775
  ### Features
3188
4776
 
@@ -3193,7 +4781,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
3193
4781
  ### Dependency Updates
3194
4782
 
3195
4783
  - `@stream-io/video-client` updated to version `0.3.29`
4784
+ - **Features**
4785
+ - **react-sdk:** Universal Device Management
4786
+ - **dynascale:** pick scaleResolutionDownBy parameter from the changePublishQuality
4787
+ - mute screenshare_audio, update to the newest OpenAPI
4788
+ - **build:** ESM and CJS
4789
+ - ScreenShare Audio
4790
+ - **Call Preview:** Support for call
4791
+ - **react-sdk:**
4792
+ - **client:** share replay of computed
4793
+ - Update with new API
4794
+ - speaking while muted
4795
+ - restore remote muting
4796
+ - new device api remote
4797
+ - speaker
4798
+ - **Call:** Dynascale support for Plain-JS
4799
+ - apply target resolution to video feed, sync camera/mic
4800
+ - Disable doesn't stop audio
4801
+ - use new device API in RN SDK and move to
4802
+ - New device API
4803
+ - **Bug Fixes**
4804
+ - **client:** disable server side
4805
+ - **client:** skip broken update call types
4806
+ - sorting in paginated
4807
+ - ensure stable
4808
+ - use `@stream-io/video-client` as a tag
4809
+ - use `@types/ws` as a regular
4810
+ - add type check of deviceId before setting
4811
+ - Add extra delay before attempting to play video in Safari and
4812
+ - unmount video element when there is no video track or participant is
4813
+ - initial device state
4814
+ - **DynascaleManager:** update subscription upon
4815
+ - consider prior track publishing state before applying soft
4816
+ - do not do any codec preferences when sending dummy
4817
+ - **react-native:** blank stream on
4818
+ - round non-int video dimension
4819
+ - type definition of user object for ws
4820
+ - device api small
4821
+ - Change the backtage default value to
4822
+ - guest auth didn't wait for some API
4823
+ - **client:** export missing
3196
4824
  - `@stream-io/video-react-bindings` updated to version `0.2.30`
4825
+ - correctly report `live` state of the
3197
4826
 
3198
4827
  ### [0.1.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.0...@stream-io/video-react-native-sdk-0.1.1) (2023-10-04)
3199
4828