@stream-io/video-react-native-sdk 1.29.4-beta.0 → 1.30.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 (276) hide show
  1. package/CHANGELOG.md +3162 -0
  2. package/android/src/main/AndroidManifest.xml +1 -8
  3. package/android/src/main/AndroidManifestNew.xml +0 -11
  4. package/android/src/main/java/com/streamvideo/reactnative/StreamVideoReactNativeModule.kt +5 -42
  5. package/android/src/main/java/com/streamvideo/reactnative/audio/utils/WebRtcAudioUtils.kt +6 -70
  6. package/android/src/main/java/com/streamvideo/reactnative/callmanager/StreamInCallManagerModule.kt +4 -6
  7. package/android/src/main/java/com/streamvideo/reactnative/util/CallAliveServiceChecker.kt +95 -0
  8. package/dist/commonjs/components/Call/CallContent/CallContent.js +13 -7
  9. package/dist/commonjs/components/Call/CallContent/CallContent.js.map +1 -1
  10. package/dist/commonjs/components/Call/CallContent/RTCViewPipIOS.js +50 -14
  11. package/dist/commonjs/components/Call/CallContent/RTCViewPipIOS.js.map +1 -1
  12. package/dist/commonjs/components/Call/CallContent/RTCViewPipNative.js +27 -0
  13. package/dist/commonjs/components/Call/CallContent/RTCViewPipNative.js.map +1 -1
  14. package/dist/commonjs/components/Call/CallLayout/CallParticipantsGrid.js +19 -10
  15. package/dist/commonjs/components/Call/CallLayout/CallParticipantsGrid.js.map +1 -1
  16. package/dist/commonjs/components/Call/CallLayout/CallParticipantsSpotlight.js +12 -9
  17. package/dist/commonjs/components/Call/CallLayout/CallParticipantsSpotlight.js.map +1 -1
  18. package/dist/commonjs/components/Call/CallParticipantsList/CallParticipantsList.js +19 -4
  19. package/dist/commonjs/components/Call/CallParticipantsList/CallParticipantsList.js.map +1 -1
  20. package/dist/commonjs/hooks/push/index.js +2 -0
  21. package/dist/commonjs/hooks/push/index.js.map +1 -1
  22. package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js +160 -0
  23. package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -0
  24. package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js +31 -18
  25. package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  26. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js +67 -0
  27. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js.map +1 -0
  28. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js +97 -64
  29. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  30. package/dist/commonjs/index.js +0 -1
  31. package/dist/commonjs/index.js.map +1 -1
  32. package/dist/commonjs/modules/call-manager/CallManager.js +0 -26
  33. package/dist/commonjs/modules/call-manager/CallManager.js.map +1 -1
  34. package/dist/commonjs/providers/StreamCall/index.js +6 -6
  35. package/dist/commonjs/providers/StreamCall/index.js.map +1 -1
  36. package/dist/commonjs/utils/StreamVideoRN/index.js +21 -33
  37. package/dist/commonjs/utils/StreamVideoRN/index.js.map +1 -1
  38. package/dist/commonjs/utils/hooks/index.js +0 -11
  39. package/dist/commonjs/utils/hooks/index.js.map +1 -1
  40. package/dist/commonjs/utils/internal/registerSDKGlobals.js +3 -52
  41. package/dist/commonjs/utils/internal/registerSDKGlobals.js.map +1 -1
  42. package/dist/commonjs/utils/push/android.js +202 -151
  43. package/dist/commonjs/utils/push/android.js.map +1 -1
  44. package/dist/commonjs/utils/push/internal/ios.js +34 -17
  45. package/dist/commonjs/utils/push/internal/ios.js.map +1 -1
  46. package/dist/commonjs/utils/push/internal/rxSubjects.js +45 -1
  47. package/dist/commonjs/utils/push/internal/rxSubjects.js.map +1 -1
  48. package/dist/commonjs/utils/push/internal/utils.js +20 -32
  49. package/dist/commonjs/utils/push/internal/utils.js.map +1 -1
  50. package/dist/commonjs/utils/push/ios.js.map +1 -1
  51. package/dist/commonjs/utils/push/libs/callkeep.js +17 -0
  52. package/dist/commonjs/utils/push/libs/callkeep.js.map +1 -0
  53. package/dist/commonjs/utils/push/libs/index.js +19 -8
  54. package/dist/commonjs/utils/push/libs/index.js.map +1 -1
  55. package/dist/commonjs/utils/push/libs/notifee/index.js +19 -0
  56. package/dist/commonjs/utils/push/libs/notifee/index.js.map +1 -1
  57. package/dist/commonjs/utils/push/libs/voipPushNotification.js +17 -0
  58. package/dist/commonjs/utils/push/libs/voipPushNotification.js.map +1 -0
  59. package/dist/commonjs/utils/push/setupIosCallKeepEvents.js +205 -0
  60. package/dist/commonjs/utils/push/setupIosCallKeepEvents.js.map +1 -0
  61. package/dist/commonjs/utils/push/setupIosVoipPushEvents.js +6 -7
  62. package/dist/commonjs/utils/push/setupIosVoipPushEvents.js.map +1 -1
  63. package/dist/commonjs/version.js +1 -1
  64. package/dist/commonjs/version.js.map +1 -1
  65. package/dist/module/components/Call/CallContent/CallContent.js +10 -4
  66. package/dist/module/components/Call/CallContent/CallContent.js.map +1 -1
  67. package/dist/module/components/Call/CallContent/RTCViewPipIOS.js +52 -16
  68. package/dist/module/components/Call/CallContent/RTCViewPipIOS.js.map +1 -1
  69. package/dist/module/components/Call/CallContent/RTCViewPipNative.js +27 -0
  70. package/dist/module/components/Call/CallContent/RTCViewPipNative.js.map +1 -1
  71. package/dist/module/components/Call/CallLayout/CallParticipantsGrid.js +19 -10
  72. package/dist/module/components/Call/CallLayout/CallParticipantsGrid.js.map +1 -1
  73. package/dist/module/components/Call/CallLayout/CallParticipantsSpotlight.js +15 -12
  74. package/dist/module/components/Call/CallLayout/CallParticipantsSpotlight.js.map +1 -1
  75. package/dist/module/components/Call/CallParticipantsList/CallParticipantsList.js +20 -5
  76. package/dist/module/components/Call/CallParticipantsList/CallParticipantsList.js.map +1 -1
  77. package/dist/module/hooks/push/index.js +2 -0
  78. package/dist/module/hooks/push/index.js.map +1 -1
  79. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js +153 -0
  80. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -0
  81. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js +31 -18
  82. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  83. package/dist/module/hooks/push/useProcessPushCallEffect.js +60 -0
  84. package/dist/module/hooks/push/useProcessPushCallEffect.js.map +1 -0
  85. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js +99 -66
  86. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  87. package/dist/module/index.js +0 -1
  88. package/dist/module/index.js.map +1 -1
  89. package/dist/module/modules/call-manager/CallManager.js +0 -26
  90. package/dist/module/modules/call-manager/CallManager.js.map +1 -1
  91. package/dist/module/providers/StreamCall/index.js +6 -6
  92. package/dist/module/providers/StreamCall/index.js.map +1 -1
  93. package/dist/module/utils/StreamVideoRN/index.js +21 -33
  94. package/dist/module/utils/StreamVideoRN/index.js.map +1 -1
  95. package/dist/module/utils/hooks/index.js +0 -1
  96. package/dist/module/utils/hooks/index.js.map +1 -1
  97. package/dist/module/utils/internal/registerSDKGlobals.js +3 -52
  98. package/dist/module/utils/internal/registerSDKGlobals.js.map +1 -1
  99. package/dist/module/utils/push/android.js +204 -153
  100. package/dist/module/utils/push/android.js.map +1 -1
  101. package/dist/module/utils/push/internal/ios.js +34 -17
  102. package/dist/module/utils/push/internal/ios.js.map +1 -1
  103. package/dist/module/utils/push/internal/rxSubjects.js +44 -0
  104. package/dist/module/utils/push/internal/rxSubjects.js.map +1 -1
  105. package/dist/module/utils/push/internal/utils.js +19 -29
  106. package/dist/module/utils/push/internal/utils.js.map +1 -1
  107. package/dist/module/utils/push/ios.js.map +1 -1
  108. package/dist/module/utils/push/libs/callkeep.js +11 -0
  109. package/dist/module/utils/push/libs/callkeep.js.map +1 -0
  110. package/dist/module/utils/push/libs/index.js +2 -1
  111. package/dist/module/utils/push/libs/index.js.map +1 -1
  112. package/dist/module/utils/push/libs/notifee/index.js +18 -0
  113. package/dist/module/utils/push/libs/notifee/index.js.map +1 -1
  114. package/dist/module/utils/push/libs/voipPushNotification.js +11 -0
  115. package/dist/module/utils/push/libs/voipPushNotification.js.map +1 -0
  116. package/dist/module/utils/push/setupIosCallKeepEvents.js +199 -0
  117. package/dist/module/utils/push/setupIosCallKeepEvents.js.map +1 -0
  118. package/dist/module/utils/push/setupIosVoipPushEvents.js +6 -7
  119. package/dist/module/utils/push/setupIosVoipPushEvents.js.map +1 -1
  120. package/dist/module/version.js +1 -1
  121. package/dist/module/version.js.map +1 -1
  122. package/dist/typescript/components/Call/CallContent/CallContent.d.ts.map +1 -1
  123. package/dist/typescript/components/Call/CallContent/RTCViewPipIOS.d.ts.map +1 -1
  124. package/dist/typescript/components/Call/CallContent/RTCViewPipNative.d.ts +18 -0
  125. package/dist/typescript/components/Call/CallContent/RTCViewPipNative.d.ts.map +1 -1
  126. package/dist/typescript/components/Call/CallLayout/CallParticipantsGrid.d.ts.map +1 -1
  127. package/dist/typescript/components/Call/CallLayout/CallParticipantsSpotlight.d.ts.map +1 -1
  128. package/dist/typescript/components/Call/CallParticipantsList/CallParticipantsList.d.ts.map +1 -1
  129. package/dist/typescript/hooks/push/index.d.ts.map +1 -1
  130. package/dist/typescript/hooks/push/useIosCallkeepWithCallingStateEffect.d.ts +5 -0
  131. package/dist/typescript/hooks/push/useIosCallkeepWithCallingStateEffect.d.ts.map +1 -0
  132. package/dist/typescript/hooks/push/useIosVoipPushEventsSetupEffect.d.ts.map +1 -1
  133. package/dist/typescript/hooks/push/useProcessPushCallEffect.d.ts +8 -0
  134. package/dist/typescript/hooks/push/useProcessPushCallEffect.d.ts.map +1 -0
  135. package/dist/typescript/hooks/useAndroidKeepCallAliveEffect.d.ts.map +1 -1
  136. package/dist/typescript/index.d.ts +0 -1
  137. package/dist/typescript/index.d.ts.map +1 -1
  138. package/dist/typescript/modules/call-manager/CallManager.d.ts +0 -5
  139. package/dist/typescript/modules/call-manager/CallManager.d.ts.map +1 -1
  140. package/dist/typescript/utils/StreamVideoRN/index.d.ts +2 -20
  141. package/dist/typescript/utils/StreamVideoRN/index.d.ts.map +1 -1
  142. package/dist/typescript/utils/StreamVideoRN/types.d.ts +29 -54
  143. package/dist/typescript/utils/StreamVideoRN/types.d.ts.map +1 -1
  144. package/dist/typescript/utils/hooks/index.d.ts +0 -1
  145. package/dist/typescript/utils/hooks/index.d.ts.map +1 -1
  146. package/dist/typescript/utils/internal/registerSDKGlobals.d.ts.map +1 -1
  147. package/dist/typescript/utils/push/android.d.ts +2 -1
  148. package/dist/typescript/utils/push/android.d.ts.map +1 -1
  149. package/dist/typescript/utils/push/internal/ios.d.ts.map +1 -1
  150. package/dist/typescript/utils/push/internal/rxSubjects.d.ts +33 -0
  151. package/dist/typescript/utils/push/internal/rxSubjects.d.ts.map +1 -1
  152. package/dist/typescript/utils/push/internal/utils.d.ts +1 -8
  153. package/dist/typescript/utils/push/internal/utils.d.ts.map +1 -1
  154. package/dist/typescript/utils/push/ios.d.ts +2 -1
  155. package/dist/typescript/utils/push/ios.d.ts.map +1 -1
  156. package/dist/typescript/utils/push/libs/callkeep.d.ts +3 -0
  157. package/dist/typescript/utils/push/libs/callkeep.d.ts.map +1 -0
  158. package/dist/typescript/utils/push/libs/index.d.ts +2 -1
  159. package/dist/typescript/utils/push/libs/index.d.ts.map +1 -1
  160. package/dist/typescript/utils/push/libs/notifee/index.d.ts +1 -0
  161. package/dist/typescript/utils/push/libs/notifee/index.d.ts.map +1 -1
  162. package/dist/typescript/utils/push/libs/voipPushNotification.d.ts +3 -0
  163. package/dist/typescript/utils/push/libs/voipPushNotification.d.ts.map +1 -0
  164. package/dist/typescript/utils/push/setupIosCallKeepEvents.d.ts +6 -0
  165. package/dist/typescript/utils/push/setupIosCallKeepEvents.d.ts.map +1 -0
  166. package/dist/typescript/utils/push/setupIosVoipPushEvents.d.ts.map +1 -1
  167. package/dist/typescript/version.d.ts +1 -1
  168. package/dist/typescript/version.d.ts.map +1 -1
  169. package/expo-config-plugin/dist/withAndroidManifest.js +33 -1
  170. package/expo-config-plugin/dist/withAndroidPermissions.js +7 -2
  171. package/expo-config-plugin/dist/withAppDelegate.js +197 -19
  172. package/expo-config-plugin/dist/withMainActivity.js +1 -1
  173. package/expo-config-plugin/dist/withiOSInfoPlist.js +3 -2
  174. package/ios/PictureInPicture/PictureInPictureAvatarView.swift +273 -0
  175. package/ios/PictureInPicture/PictureInPictureConnectionQualityIndicator.swift +162 -0
  176. package/ios/PictureInPicture/PictureInPictureContent.swift +173 -0
  177. package/ios/PictureInPicture/PictureInPictureContentState.swift +123 -0
  178. package/ios/PictureInPicture/PictureInPictureDelegateProxy.swift +89 -0
  179. package/ios/PictureInPicture/PictureInPictureEnforcedStopAdapter.swift +166 -0
  180. package/ios/PictureInPicture/PictureInPictureLogger.swift +16 -0
  181. package/ios/PictureInPicture/PictureInPictureParticipantOverlayView.swift +217 -0
  182. package/ios/PictureInPicture/PictureInPictureReconnectionView.swift +193 -0
  183. package/ios/PictureInPicture/StreamAVPictureInPictureVideoCallViewController.swift +125 -7
  184. package/ios/PictureInPicture/StreamPictureInPictureController.swift +237 -63
  185. package/ios/PictureInPicture/StreamPictureInPictureControllerProtocol.swift +30 -0
  186. package/ios/PictureInPicture/StreamPictureInPictureVideoRenderer.swift +384 -12
  187. package/ios/RTCViewPip.swift +187 -21
  188. package/ios/RTCViewPipManager.mm +9 -0
  189. package/ios/RTCViewPipManager.swift +3 -3
  190. package/ios/StreamInCallManager.m +0 -2
  191. package/ios/StreamInCallManager.swift +7 -19
  192. package/ios/StreamVideoReactNative.h +4 -7
  193. package/ios/StreamVideoReactNative.m +82 -189
  194. package/package.json +19 -14
  195. package/src/components/Call/CallContent/CallContent.tsx +16 -8
  196. package/src/components/Call/CallContent/RTCViewPipIOS.tsx +81 -15
  197. package/src/components/Call/CallContent/RTCViewPipNative.tsx +36 -0
  198. package/src/components/Call/CallLayout/CallParticipantsGrid.tsx +28 -14
  199. package/src/components/Call/CallLayout/CallParticipantsSpotlight.tsx +19 -10
  200. package/src/components/Call/CallParticipantsList/CallParticipantsList.tsx +20 -5
  201. package/src/hooks/push/index.ts +2 -0
  202. package/src/hooks/push/useIosCallkeepWithCallingStateEffect.ts +235 -0
  203. package/src/hooks/push/useIosVoipPushEventsSetupEffect.ts +34 -21
  204. package/src/hooks/push/useProcessPushCallEffect.ts +108 -0
  205. package/src/hooks/useAndroidKeepCallAliveEffect.ts +120 -94
  206. package/src/index.ts +0 -1
  207. package/src/modules/call-manager/CallManager.ts +0 -36
  208. package/src/modules/call-manager/native-module.d.ts +0 -7
  209. package/src/providers/StreamCall/index.tsx +6 -6
  210. package/src/utils/StreamVideoRN/index.ts +30 -40
  211. package/src/utils/StreamVideoRN/types.ts +29 -56
  212. package/src/utils/hooks/index.ts +0 -1
  213. package/src/utils/internal/registerSDKGlobals.ts +4 -47
  214. package/src/utils/push/android.ts +309 -227
  215. package/src/utils/push/internal/ios.ts +44 -28
  216. package/src/utils/push/internal/rxSubjects.ts +61 -0
  217. package/src/utils/push/internal/utils.ts +26 -45
  218. package/src/utils/push/ios.ts +6 -1
  219. package/src/utils/push/libs/callkeep.ts +16 -0
  220. package/src/utils/push/libs/index.ts +2 -1
  221. package/src/utils/push/libs/notifee/index.ts +27 -0
  222. package/src/utils/push/libs/voipPushNotification.ts +17 -0
  223. package/src/utils/push/setupIosCallKeepEvents.ts +252 -0
  224. package/src/utils/push/setupIosVoipPushEvents.ts +7 -11
  225. package/src/version.ts +1 -1
  226. package/android/src/main/java/com/streamvideo/reactnative/keepalive/KeepAliveNotification.kt +0 -83
  227. package/android/src/main/java/com/streamvideo/reactnative/keepalive/StreamCallKeepAliveHeadlessService.kt +0 -149
  228. package/dist/commonjs/hooks/push/useCallingExpWithCallingStateEffect.js +0 -121
  229. package/dist/commonjs/hooks/push/useCallingExpWithCallingStateEffect.js.map +0 -1
  230. package/dist/commonjs/utils/hooks/useDebouncedValue.js +0 -24
  231. package/dist/commonjs/utils/hooks/useDebouncedValue.js.map +0 -1
  232. package/dist/commonjs/utils/internal/callingx/audioSessionPromise.js +0 -58
  233. package/dist/commonjs/utils/internal/callingx/audioSessionPromise.js.map +0 -1
  234. package/dist/commonjs/utils/internal/callingx/callingx.js +0 -109
  235. package/dist/commonjs/utils/internal/callingx/callingx.js.map +0 -1
  236. package/dist/commonjs/utils/keepCallAliveHeadlessTask.js +0 -48
  237. package/dist/commonjs/utils/keepCallAliveHeadlessTask.js.map +0 -1
  238. package/dist/commonjs/utils/push/libs/callingx.js +0 -75
  239. package/dist/commonjs/utils/push/libs/callingx.js.map +0 -1
  240. package/dist/commonjs/utils/push/setupCallingExpEvents.js +0 -108
  241. package/dist/commonjs/utils/push/setupCallingExpEvents.js.map +0 -1
  242. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js +0 -114
  243. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js.map +0 -1
  244. package/dist/module/utils/hooks/useDebouncedValue.js +0 -19
  245. package/dist/module/utils/hooks/useDebouncedValue.js.map +0 -1
  246. package/dist/module/utils/internal/callingx/audioSessionPromise.js +0 -51
  247. package/dist/module/utils/internal/callingx/audioSessionPromise.js.map +0 -1
  248. package/dist/module/utils/internal/callingx/callingx.js +0 -100
  249. package/dist/module/utils/internal/callingx/callingx.js.map +0 -1
  250. package/dist/module/utils/keepCallAliveHeadlessTask.js +0 -42
  251. package/dist/module/utils/keepCallAliveHeadlessTask.js.map +0 -1
  252. package/dist/module/utils/push/libs/callingx.js +0 -67
  253. package/dist/module/utils/push/libs/callingx.js.map +0 -1
  254. package/dist/module/utils/push/setupCallingExpEvents.js +0 -102
  255. package/dist/module/utils/push/setupCallingExpEvents.js.map +0 -1
  256. package/dist/typescript/hooks/push/useCallingExpWithCallingStateEffect.d.ts +0 -5
  257. package/dist/typescript/hooks/push/useCallingExpWithCallingStateEffect.d.ts.map +0 -1
  258. package/dist/typescript/utils/hooks/useDebouncedValue.d.ts +0 -8
  259. package/dist/typescript/utils/hooks/useDebouncedValue.d.ts.map +0 -1
  260. package/dist/typescript/utils/internal/callingx/audioSessionPromise.d.ts +0 -16
  261. package/dist/typescript/utils/internal/callingx/audioSessionPromise.d.ts.map +0 -1
  262. package/dist/typescript/utils/internal/callingx/callingx.d.ts +0 -14
  263. package/dist/typescript/utils/internal/callingx/callingx.d.ts.map +0 -1
  264. package/dist/typescript/utils/keepCallAliveHeadlessTask.d.ts +0 -10
  265. package/dist/typescript/utils/keepCallAliveHeadlessTask.d.ts.map +0 -1
  266. package/dist/typescript/utils/push/libs/callingx.d.ts +0 -9
  267. package/dist/typescript/utils/push/libs/callingx.d.ts.map +0 -1
  268. package/dist/typescript/utils/push/setupCallingExpEvents.d.ts +0 -8
  269. package/dist/typescript/utils/push/setupCallingExpEvents.d.ts.map +0 -1
  270. package/src/hooks/push/useCallingExpWithCallingStateEffect.ts +0 -147
  271. package/src/utils/hooks/useDebouncedValue.ts +0 -21
  272. package/src/utils/internal/callingx/audioSessionPromise.ts +0 -53
  273. package/src/utils/internal/callingx/callingx.ts +0 -146
  274. package/src/utils/keepCallAliveHeadlessTask.ts +0 -54
  275. package/src/utils/push/libs/callingx.ts +0 -90
  276. package/src/utils/push/setupCallingExpEvents.ts +0 -130
package/CHANGELOG.md ADDED
@@ -0,0 +1,3162 @@
1
+ # Changelog
2
+
3
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
+
5
+ ## [1.30.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.29.4...@stream-io/video-react-native-sdk-1.30.0) (2026-02-27)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-client` updated to version `1.44.0`
10
+ - `@stream-io/video-react-bindings` updated to version `1.13.9`
11
+
12
+ ### Features
13
+
14
+ - Enhanced Picture-in-Picture for iOS ([#2139](https://github.com/GetStream/stream-video-js/issues/2139)) ([2111607](https://github.com/GetStream/stream-video-js/commit/211160797c6e50a4d548da617cb9a57ee7825c4e))
15
+
16
+ ## [1.29.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.29.3...@stream-io/video-react-native-sdk-1.29.4) (2026-02-20)
17
+
18
+ ### Dependency Updates
19
+
20
+ - `@stream-io/video-client` updated to version `1.43.0`
21
+ - `@stream-io/video-react-bindings` updated to version `1.13.8`
22
+
23
+ ## [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)
24
+
25
+ ### Dependency Updates
26
+
27
+ - `@stream-io/video-client` updated to version `1.42.3`
28
+ - `@stream-io/video-react-bindings` updated to version `1.13.7`
29
+
30
+ ### Bug Fixes
31
+
32
+ - guard from parallel accept/reject invocations ([#2127](https://github.com/GetStream/stream-video-js/issues/2127)) ([621218f](https://github.com/GetStream/stream-video-js/commit/621218f4ab6b4623370fd66f1b02b8cb7cb1baad))
33
+
34
+ ## [1.29.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.29.1...@stream-io/video-react-native-sdk-1.29.2) (2026-02-13)
35
+
36
+ ### Dependency Updates
37
+
38
+ - `@stream-io/video-client` updated to version `1.42.2`
39
+ - `@stream-io/video-react-bindings` updated to version `1.13.6`
40
+
41
+ ## [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)
42
+
43
+ ### Dependency Updates
44
+
45
+ - `@stream-io/video-client` updated to version `1.42.1`
46
+ - `@stream-io/video-react-bindings` updated to version `1.13.5`
47
+
48
+ ### Bug Fixes
49
+
50
+ - respect device permissions when detecting speech while muted ([#2115](https://github.com/GetStream/stream-video-js/issues/2115)) ([fe98768](https://github.com/GetStream/stream-video-js/commit/fe98768a9bf695fc5355905939884594c11ac2b9)), closes [#2110](https://github.com/GetStream/stream-video-js/issues/2110)
51
+ - **rn:** expose `mirror` prop for Picture-in-Picture ([#2113](https://github.com/GetStream/stream-video-js/issues/2113)) ([da72e48](https://github.com/GetStream/stream-video-js/commit/da72e4812a0177a1059aeecc54dd88894b99a610)), closes [#2106](https://github.com/GetStream/stream-video-js/issues/2106)
52
+
53
+ ## [1.29.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.28.3...@stream-io/video-react-native-sdk-1.29.0) (2026-02-06)
54
+
55
+ ### Dependency Updates
56
+
57
+ - `@stream-io/video-client` updated to version `1.42.0`
58
+ - `@stream-io/video-react-bindings` updated to version `1.13.4`
59
+
60
+ ### Features
61
+
62
+ - **layouts:** overridable participant mirroring ([#2106](https://github.com/GetStream/stream-video-js/issues/2106)) ([e1c5f31](https://github.com/GetStream/stream-video-js/commit/e1c5f31f33bce4ab0636f0476263a24220811cb4))
63
+
64
+ ## [1.28.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.28.2...@stream-io/video-react-native-sdk-1.28.3) (2026-01-30)
65
+
66
+ ### Dependency Updates
67
+
68
+ - `@stream-io/video-client` updated to version `1.41.3`
69
+ - `@stream-io/video-react-bindings` updated to version `1.13.3`
70
+
71
+ ## [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)
72
+
73
+ ### Dependency Updates
74
+
75
+ - `@stream-io/video-client` updated to version `1.41.2`
76
+ - `@stream-io/video-react-bindings` updated to version `1.13.2`
77
+
78
+ ## [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)
79
+
80
+ ### Dependency Updates
81
+
82
+ - `@stream-io/video-client` updated to version `1.41.1`
83
+ - `@stream-io/video-react-bindings` updated to version `1.13.1`
84
+
85
+ ### Bug Fixes
86
+
87
+ - always forward callkit audio events to webrtc ([#2089](https://github.com/GetStream/stream-video-js/issues/2089)) ([767041a](https://github.com/GetStream/stream-video-js/commit/767041a54dfaaa87145cbdc931a336dbe4fee821))
88
+ - use multiple settings to determine default audio device RN-338 ([#2096](https://github.com/GetStream/stream-video-js/issues/2096)) ([19cf136](https://github.com/GetStream/stream-video-js/commit/19cf13651112b647903587a84a70a555fc68fc9c)), closes [2BSettingsPriority.swift#L19](https://github.com/GetStream/2BSettingsPriority.swift/issues/L19)
89
+
90
+ ## [1.28.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.27.4...@stream-io/video-react-native-sdk-1.28.0) (2026-01-20)
91
+
92
+ ### Dependency Updates
93
+
94
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.5.0`
95
+ - `@stream-io/video-filters-react-native` updated to version `0.10.0`
96
+ - `@stream-io/video-client` updated to version `1.41.0`
97
+ - `@stream-io/video-react-bindings` updated to version `1.13.0`
98
+
99
+ ### Features
100
+
101
+ - stereo audio output support RN-332 ([#2038](https://github.com/GetStream/stream-video-js/issues/2038)) ([2938037](https://github.com/GetStream/stream-video-js/commit/2938037d18e70ccf112a089eb3ec44cb034aed1d))
102
+
103
+ ## [1.27.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.27.3...@stream-io/video-react-native-sdk-1.27.4) (2026-01-16)
104
+
105
+ ### Dependency Updates
106
+
107
+ - `@stream-io/video-client` updated to version `1.40.3`
108
+ - `@stream-io/video-react-bindings` updated to version `1.12.10`
109
+
110
+ ### Bug Fixes
111
+
112
+ - do not disable camera on Android unnecessarily RN-335 ([#2085](https://github.com/GetStream/stream-video-js/issues/2085)) ([e4dfa39](https://github.com/GetStream/stream-video-js/commit/e4dfa39b7a001e60fee73db01d717ed8eb05d9b0))
113
+
114
+ ## [1.27.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.27.2...@stream-io/video-react-native-sdk-1.27.3) (2026-01-15)
115
+
116
+ ### Dependency Updates
117
+
118
+ - `@stream-io/video-client` updated to version `1.40.2`
119
+ - `@stream-io/video-react-bindings` updated to version `1.12.9`
120
+
121
+ ## [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)
122
+
123
+ ### Dependency Updates
124
+
125
+ - `@stream-io/video-client` updated to version `1.40.1`
126
+ - `@stream-io/video-react-bindings` updated to version `1.12.8`
127
+
128
+ ## [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)
129
+
130
+ ### Dependency Updates
131
+
132
+ - `@stream-io/video-client` updated to version `1.40.0`
133
+ - `@stream-io/video-react-bindings` updated to version `1.12.7`
134
+
135
+ ## [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)
136
+
137
+ ### Features
138
+
139
+ - **react-native:** expose useModeration hook ([#2073](https://github.com/GetStream/stream-video-js/issues/2073)) ([4105ee7](https://github.com/GetStream/stream-video-js/commit/4105ee7c79aa1a1a35d75b4f5f70594eaa7eb33a)), closes [#1822](https://github.com/GetStream/stream-video-js/issues/1822)
140
+
141
+ ### Bug Fixes
142
+
143
+ - correctly restore background blur if available ([b16ffc0](https://github.com/GetStream/stream-video-js/commit/b16ffc0ade1b88437b09fe918deea30d314a530b))
144
+
145
+ ## [1.26.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.5...@stream-io/video-react-native-sdk-1.26.6) (2025-12-30)
146
+
147
+ ### Dependency Updates
148
+
149
+ - `@stream-io/video-client` updated to version `1.39.3`
150
+ - `@stream-io/video-react-bindings` updated to version `1.12.6`
151
+
152
+ ### Bug Fixes
153
+
154
+ - replace non-compliant foreground service types ([#2058](https://github.com/GetStream/stream-video-js/issues/2058)) ([d62ca2b](https://github.com/GetStream/stream-video-js/commit/d62ca2bb6defd58e44ed1ac135b95896b590d307))
155
+
156
+ ## [1.26.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.4...@stream-io/video-react-native-sdk-1.26.5) (2025-12-23)
157
+
158
+ ### Dependency Updates
159
+
160
+ - `@stream-io/video-client` updated to version `1.39.2`
161
+ - `@stream-io/video-react-bindings` updated to version `1.12.5`
162
+
163
+ ### Bug Fixes
164
+
165
+ - do not set invalid BT devices as communication device ([#2064](https://github.com/GetStream/stream-video-js/issues/2064)) ([fe41a34](https://github.com/GetStream/stream-video-js/commit/fe41a349df41c11e05b673e6107788203e94fae9))
166
+
167
+ ## [1.26.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.3...@stream-io/video-react-native-sdk-1.26.4) (2025-12-18)
168
+
169
+ ### Dependency Updates
170
+
171
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.4`
172
+ - `@stream-io/video-filters-react-native` updated to version `0.9.3`
173
+ - `@stream-io/video-client` updated to version `1.39.1`
174
+ - `@stream-io/video-react-bindings` updated to version `1.12.4`
175
+
176
+ ### Bug Fixes
177
+
178
+ - **provenance:** add repository info to every package ([4159633](https://github.com/GetStream/stream-video-js/commit/4159633b908afe6542b4be53151da6218175426c))
179
+
180
+ ## [1.26.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.2...@stream-io/video-react-native-sdk-1.26.3) (2025-12-18)
181
+
182
+ ### Dependency Updates
183
+
184
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.3`
185
+ - `@stream-io/video-client` updated to version `1.39.0`
186
+ - `@stream-io/video-react-bindings` updated to version `1.12.3`
187
+
188
+ ### Bug Fixes
189
+
190
+ - stop of android system prompt from screenshare overlay ([#2052](https://github.com/GetStream/stream-video-js/issues/2052)) ([b1a5b46](https://github.com/GetStream/stream-video-js/commit/b1a5b46553df18897126c1e59066ff79e0e0704c))
191
+
192
+ ## [1.26.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.26.1...@stream-io/video-react-native-sdk-1.26.2) (2025-12-11)
193
+
194
+ ### Dependency Updates
195
+
196
+ - `@stream-io/video-client` updated to version `1.38.2`
197
+ - `@stream-io/video-react-bindings` updated to version `1.12.2`
198
+
199
+ ## [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)
200
+
201
+ ### Dependency Updates
202
+
203
+ - `@stream-io/video-client` updated to version `1.38.1`
204
+ - `@stream-io/video-react-bindings` updated to version `1.12.1`
205
+
206
+ ## [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)
207
+
208
+ ### Dependency Updates
209
+
210
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.2`
211
+ - `@stream-io/video-filters-react-native` updated to version `0.9.2`
212
+ - `@stream-io/video-client` updated to version `1.38.0`
213
+ - `@stream-io/video-react-bindings` updated to version `1.12.0`
214
+
215
+ - remove default sound from jsdoc comment for notifications ([8f38784](https://github.com/GetStream/stream-video-js/commit/8f38784c41808fb65a31f2e5591a71c32b201eca))
216
+ - **sample:** add benchmark environment ([#2032](https://github.com/GetStream/stream-video-js/issues/2032)) ([8bb7044](https://github.com/GetStream/stream-video-js/commit/8bb70447ca5b6fc3e0a3bad09f2bf1f91a4fa881))
217
+
218
+ ### Features
219
+
220
+ - **LivestreamLayout:** Enrich with mute option and humanized participant count ([#2027](https://github.com/GetStream/stream-video-js/issues/2027)) ([cdc0c4f](https://github.com/GetStream/stream-video-js/commit/cdc0c4f985ab15a6c2e184b73432911510b43f99))
221
+
222
+ ## [1.25.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.7...@stream-io/video-react-native-sdk-1.25.0) (2025-11-28)
223
+
224
+ ### Features
225
+
226
+ - add native methods to check for hardware presence in android RN-310 ([#2023](https://github.com/GetStream/stream-video-js/issues/2023)) ([90fddbc](https://github.com/GetStream/stream-video-js/commit/90fddbc22d9c21e51e2322c69031d81a30de063f))
227
+
228
+ ## [1.24.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.6...@stream-io/video-react-native-sdk-1.24.7) (2025-11-25)
229
+
230
+ ### Dependency Updates
231
+
232
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.2`
233
+ - `@stream-io/video-client` updated to version `1.37.3`
234
+ - `@stream-io/video-react-bindings` updated to version `1.11.4`
235
+
236
+ - 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))
237
+
238
+ ### Bug Fixes
239
+
240
+ - **noise cancellation:** delay toggling until initialization is finished ([#2014](https://github.com/GetStream/stream-video-js/issues/2014)) ([d28b8ea](https://github.com/GetStream/stream-video-js/commit/d28b8ea282322a25688ff48966b0dc10dd7e60bd))
241
+
242
+ ## [1.24.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.5...@stream-io/video-react-native-sdk-1.24.6) (2025-11-20)
243
+
244
+ ### Dependency Updates
245
+
246
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.1`
247
+ - `@stream-io/video-filters-react-native` updated to version `0.9.1`
248
+ - `@stream-io/video-client` updated to version `1.37.2`
249
+ - `@stream-io/video-react-bindings` updated to version `1.11.3`
250
+
251
+ - update react-native to 0.81.5 ([33554fc](https://github.com/GetStream/stream-video-js/commit/33554fc31015f4af57ba19b1f925b19fbfcbe0ea))
252
+
253
+ ## [1.24.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.4...@stream-io/video-react-native-sdk-1.24.5) (2025-11-17)
254
+
255
+ ### Dependency Updates
256
+
257
+ - `@stream-io/video-client` updated to version `1.37.1`
258
+ - `@stream-io/video-react-bindings` updated to version `1.11.2`
259
+
260
+ - remove outdated comment ([2323e27](https://github.com/GetStream/stream-video-js/commit/2323e27b7e50f82e8ef2a3d0d12f1012025b3e50))
261
+
262
+ ### Bug Fixes
263
+
264
+ - dynascale manager doesnt pick up updated dimensions all the time ([#2001](https://github.com/GetStream/stream-video-js/issues/2001)) ([d91e008](https://github.com/GetStream/stream-video-js/commit/d91e008f27fa2a4324f22555fbe0a59afe702bbb))
265
+
266
+ ## [1.24.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.3...@stream-io/video-react-native-sdk-1.24.4) (2025-11-14)
267
+
268
+ ### Dependency Updates
269
+
270
+ - `@stream-io/video-filters-react-native` updated to version `0.9.0`
271
+ - `@stream-io/video-client` updated to version `1.37.0`
272
+ - `@stream-io/video-react-bindings` updated to version `1.11.1`
273
+
274
+ ## [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)
275
+
276
+ ### Dependency Updates
277
+
278
+ - `@stream-io/video-client` updated to version `1.36.1`
279
+ - `@stream-io/video-react-bindings` updated to version `1.11.0`
280
+
281
+ ### Bug Fixes
282
+
283
+ - improve android wake lock and power manager handling RN-291 ([#1990](https://github.com/GetStream/stream-video-js/issues/1990)) ([28096ad](https://github.com/GetStream/stream-video-js/commit/28096ad9b14848b352afa358dcaf655cbcfb0626)), closes [#1971](https://github.com/GetStream/stream-video-js/issues/1971)
284
+ - missing adaptive floating dimensions for landscape video ([#1983](https://github.com/GetStream/stream-video-js/issues/1983)) ([7803f2c](https://github.com/GetStream/stream-video-js/commit/7803f2cd80e9680974803fb72b3e5b4bf8caba7c))
285
+
286
+ ## [1.24.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.1...@stream-io/video-react-native-sdk-1.24.2) (2025-11-05)
287
+
288
+ ### Dependency Updates
289
+
290
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.1`
291
+ - `@stream-io/video-filters-react-native` updated to version `0.8.1`
292
+
293
+ ### Bug Fixes
294
+
295
+ - noise cancellation webrtc 137 support and dev dep and sampleapp webrtc updates ([#1974](https://github.com/GetStream/stream-video-js/issues/1974)) ([c555695](https://github.com/GetStream/stream-video-js/commit/c555695e53018412ea8964a2e222daa99a9544e5))
296
+
297
+ ## [1.24.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.24.0...@stream-io/video-react-native-sdk-1.24.1) (2025-11-04)
298
+
299
+ ### Bug Fixes
300
+
301
+ - ios callkit related audio inconsistencies ([#1982](https://github.com/GetStream/stream-video-js/issues/1982)) ([112e380](https://github.com/GetStream/stream-video-js/commit/112e38090be4e41d1554a966af1f6e15965ea786))
302
+ - no video if camera is disabled on init and then enabled ([#1981](https://github.com/GetStream/stream-video-js/issues/1981)) ([b30ca34](https://github.com/GetStream/stream-video-js/commit/b30ca34eb598eb61716f3e4d389ffaf31236b90e))
303
+
304
+ ## [1.24.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.23.0...@stream-io/video-react-native-sdk-1.24.0) (2025-10-30)
305
+
306
+ ### Dependency Updates
307
+
308
+ - `@stream-io/video-client` updated to version `1.36.0`
309
+ - `@stream-io/video-react-bindings` updated to version `1.10.4`
310
+
311
+ ### Features
312
+
313
+ - Migrate logger to js-toolkit logger implementation ([#1959](https://github.com/GetStream/stream-video-js/issues/1959)) ([5a424f7](https://github.com/GetStream/stream-video-js/commit/5a424f72cec2a8cbc0bfa23147d9988ab9bfbdc1))
314
+
315
+ ### Bug Fixes
316
+
317
+ - keep compatibility with older xcode versions ([#1973](https://github.com/GetStream/stream-video-js/issues/1973)) ([3b2f281](https://github.com/GetStream/stream-video-js/commit/3b2f281ac565ff4c422aa37c1eb90c58afee3bea))
318
+
319
+ ## [1.23.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.22.3...@stream-io/video-react-native-sdk-1.23.0) (2025-10-27)
320
+
321
+ ### Dependency Updates
322
+
323
+ - `@stream-io/video-client` updated to version `1.35.1`
324
+ - `@stream-io/video-react-bindings` updated to version `1.10.3`
325
+
326
+ ### Features
327
+
328
+ - adaptive floating video dimensions ([#1969](https://github.com/GetStream/stream-video-js/issues/1969)) ([5a213d2](https://github.com/GetStream/stream-video-js/commit/5a213d2571610846bdcd9b4554a5a8d1a3def6c4))
329
+
330
+ ### Bug Fixes
331
+
332
+ - **react-native:** restore screen wake lock and proximity sensing ([#1971](https://github.com/GetStream/stream-video-js/issues/1971)) ([f20ef70](https://github.com/GetStream/stream-video-js/commit/f20ef70a5958fddf52075233f9f3d64a2ce01895)), closes [#1840](https://github.com/GetStream/stream-video-js/issues/1840)
333
+
334
+ ## [1.22.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.22.2...@stream-io/video-react-native-sdk-1.22.3) (2025-10-24)
335
+
336
+ ### Dependency Updates
337
+
338
+ - `@stream-io/video-client` updated to version `1.35.0`
339
+ - `@stream-io/video-react-bindings` updated to version `1.10.2`
340
+
341
+ ### Bug Fixes
342
+
343
+ - accept `children` in LivestreamPlayer components ([#1968](https://github.com/GetStream/stream-video-js/issues/1968)) ([1558f06](https://github.com/GetStream/stream-video-js/commit/1558f060614581964b72e9627e82a8419fc3d570))
344
+
345
+ ## [1.22.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.22.1...@stream-io/video-react-native-sdk-1.22.2) (2025-10-24)
346
+
347
+ ### Bug Fixes
348
+
349
+ - compilation error in older kotlin versions ([cedb942](https://github.com/GetStream/stream-video-js/commit/cedb94296ca659a1ad5584d3bd3d29f6be12c3ab))
350
+
351
+ ## [1.22.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.22.0...@stream-io/video-react-native-sdk-1.22.1) (2025-10-17)
352
+
353
+ ### Dependency Updates
354
+
355
+ - `@stream-io/video-client` updated to version `1.34.1`
356
+ - `@stream-io/video-react-bindings` updated to version `1.10.1`
357
+
358
+ ### Bug Fixes
359
+
360
+ - videorenderer didnt call update subscriptions on remote reconnect ([#1964](https://github.com/GetStream/stream-video-js/issues/1964)) ([cb85bb4](https://github.com/GetStream/stream-video-js/commit/cb85bb495fe0fbe6ab803de2765e4c38bc74cd2f))
361
+
362
+ ## [1.22.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.21.2...@stream-io/video-react-native-sdk-1.22.0) (2025-10-14)
363
+
364
+ ### Dependency Updates
365
+
366
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.4.0`
367
+ - `@stream-io/video-filters-react-native` updated to version `0.8.0`
368
+ - `@stream-io/video-client` updated to version `1.34.0`
369
+ - `@stream-io/video-react-bindings` updated to version `1.10.0`
370
+
371
+ - 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))
372
+ - update react-native peer dep to 0.73.0 ([#1958](https://github.com/GetStream/stream-video-js/issues/1958)) ([0dfcbf3](https://github.com/GetStream/stream-video-js/commit/0dfcbf36dcf5136881109bef39470e4d5d7a10e7))
373
+
374
+ ### Features
375
+
376
+ - **deps:** React 19.1, React Native 0.81, NextJS 15.5, Expo 54 ([#1940](https://github.com/GetStream/stream-video-js/issues/1940)) ([30f8ce2](https://github.com/GetStream/stream-video-js/commit/30f8ce2b335189e1f77160236839bc6c6a02f634))
377
+ - move audio route manager inside SDK ([#1840](https://github.com/GetStream/stream-video-js/issues/1840)) ([847dd30](https://github.com/GetStream/stream-video-js/commit/847dd30d6240a0780fe3d58d681554bc392f6f51)), closes [#1829](https://github.com/GetStream/stream-video-js/issues/1829)
378
+
379
+ ### Bug Fixes
380
+
381
+ - add useIsInPiPMode for ios ([#1947](https://github.com/GetStream/stream-video-js/issues/1947)) ([2fe1f9f](https://github.com/GetStream/stream-video-js/commit/2fe1f9fde5f0d25bdc43394b65f8eb002dea7b5f))
382
+ - compatibility with RN 0.80+ ([#1950](https://github.com/GetStream/stream-video-js/issues/1950)) ([58e0bc4](https://github.com/GetStream/stream-video-js/commit/58e0bc499117381e6f0dad977cc9a5279164179d))
383
+
384
+ ## [1.21.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.21.1...@stream-io/video-react-native-sdk-1.21.2) (2025-10-02)
385
+
386
+ ### Dependency Updates
387
+
388
+ - `@stream-io/video-client` updated to version `1.33.1`
389
+ - `@stream-io/video-react-bindings` updated to version `1.9.1`
390
+
391
+ ## [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)
392
+
393
+ ### Dependency Updates
394
+
395
+ - `@stream-io/video-client` updated to version `1.33.0`
396
+ - `@stream-io/video-react-bindings` updated to version `1.9.0`
397
+
398
+ ### Bug Fixes
399
+
400
+ - support scenario of accept second call when there is ongoing first call ([#1939](https://github.com/GetStream/stream-video-js/issues/1939)) ([1e73517](https://github.com/GetStream/stream-video-js/commit/1e7351704cebe36af8ea0833ab1725472bbedbe8))
401
+
402
+ ## [1.21.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.16...@stream-io/video-react-native-sdk-1.21.0) (2025-09-29)
403
+
404
+ ### Dependency Updates
405
+
406
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.3.0`
407
+ - `@stream-io/video-filters-react-native` updated to version `0.7.0`
408
+ - `@stream-io/video-client` updated to version `1.32.0`
409
+ - `@stream-io/video-react-bindings` updated to version `1.8.4`
410
+
411
+ ### Features
412
+
413
+ - 16KB page size support for noise cancellation & screenshot ([#1933](https://github.com/GetStream/stream-video-js/issues/1933)) ([7e3b046](https://github.com/GetStream/stream-video-js/commit/7e3b046820bde9d331871718a6f841bff88a73ce)), closes [#1937](https://github.com/GetStream/stream-video-js/issues/1937)
414
+ - **react-native:** reject call when busy ([#1856](https://github.com/GetStream/stream-video-js/issues/1856)) ([b60bc7c](https://github.com/GetStream/stream-video-js/commit/b60bc7cd2dc2e09d52496d7b5cb593cac4b89485))
415
+
416
+ ### Bug Fixes
417
+
418
+ - dont check android.incomingCallChannel for ios voip setup ([01bd3fd](https://github.com/GetStream/stream-video-js/commit/01bd3fdb249fbdf2896c4851acd7ae5486dae88f))
419
+ - unncessary to check if viewRef is defined to register screenshot view ([f35315f](https://github.com/GetStream/stream-video-js/commit/f35315fa4e565c002a0dde54e21433ca068fbd21))
420
+
421
+ ## [1.20.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.15...@stream-io/video-react-native-sdk-1.20.16) (2025-09-18)
422
+
423
+ ### Dependency Updates
424
+
425
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.2.4`
426
+
427
+ ### Bug Fixes
428
+
429
+ - android RN module compilation error on RN 0.81 ([#1924](https://github.com/GetStream/stream-video-js/issues/1924)) ([b02294c](https://github.com/GetStream/stream-video-js/commit/b02294c8bb85795ff5ac5fed2195e26d7e1f11a4)), closes [#1921](https://github.com/GetStream/stream-video-js/issues/1921)
430
+
431
+ ## [1.20.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.14...@stream-io/video-react-native-sdk-1.20.15) (2025-09-17)
432
+
433
+ ### Dependency Updates
434
+
435
+ - `@stream-io/video-client` updated to version `1.31.0`
436
+ - `@stream-io/video-react-bindings` updated to version `1.8.3`
437
+
438
+ ### Bug Fixes
439
+
440
+ - screenshot for iOS was broken on old arch on interop layer ([#1923](https://github.com/GetStream/stream-video-js/issues/1923)) ([9b3134b](https://github.com/GetStream/stream-video-js/commit/9b3134bb6f6380551af4c3a0a69274eada2f8d94))
441
+
442
+ ## [1.20.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.13...@stream-io/video-react-native-sdk-1.20.14) (2025-09-16)
443
+
444
+ ### Dependency Updates
445
+
446
+ - `@stream-io/video-client` updated to version `1.30.1`
447
+ - `@stream-io/video-react-bindings` updated to version `1.8.2`
448
+
449
+ ## [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)
450
+
451
+ ### Dependency Updates
452
+
453
+ - `@stream-io/video-client` updated to version `1.30.0`
454
+ - `@stream-io/video-react-bindings` updated to version `1.8.1`
455
+
456
+ ## [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)
457
+
458
+ ### Dependency Updates
459
+
460
+ - `@stream-io/video-client` updated to version `1.29.0`
461
+ - `@stream-io/video-react-bindings` updated to version `1.8.0`
462
+
463
+ - 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))
464
+
465
+ ## [1.20.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.10...@stream-io/video-react-native-sdk-1.20.11) (2025-09-05)
466
+
467
+ ### Dependency Updates
468
+
469
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.2.3`
470
+ - `@stream-io/video-filters-react-native` updated to version `0.6.3`
471
+
472
+ ### Bug Fixes
473
+
474
+ - update webrtc peer dep to 125.4.3 ([#1908](https://github.com/GetStream/stream-video-js/issues/1908)) ([24b2f95](https://github.com/GetStream/stream-video-js/commit/24b2f958f4430212116ddd78800a1ea71adbea4d))
475
+
476
+ ## [1.20.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.9...@stream-io/video-react-native-sdk-1.20.10) (2025-08-22)
477
+
478
+ ### Dependency Updates
479
+
480
+ - `@stream-io/video-client` updated to version `1.28.1`
481
+ - `@stream-io/video-react-bindings` updated to version `1.7.16`
482
+
483
+ ## [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)
484
+
485
+ ### Dependency Updates
486
+
487
+ - `@stream-io/video-client` updated to version `1.28.0`
488
+ - `@stream-io/video-react-bindings` updated to version `1.7.15`
489
+
490
+ ## [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)
491
+
492
+ ### Dependency Updates
493
+
494
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.2.2`
495
+ - `@stream-io/video-filters-react-native` updated to version `0.6.2`
496
+
497
+ ### Bug Fixes
498
+
499
+ - update webrtc peer dep to 125.4.2 ([#1895](https://github.com/GetStream/stream-video-js/issues/1895)) ([9a102a9](https://github.com/GetStream/stream-video-js/commit/9a102a964d4b350eb9223272cfe294e4805c6533))
500
+
501
+ ## [1.20.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.6...@stream-io/video-react-native-sdk-1.20.7) (2025-08-15)
502
+
503
+ ### Dependency Updates
504
+
505
+ - `@stream-io/video-client` updated to version `1.27.5`
506
+ - `@stream-io/video-react-bindings` updated to version `1.7.14`
507
+
508
+ ## [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)
509
+
510
+ ### Dependency Updates
511
+
512
+ - `@stream-io/video-client` updated to version `1.27.4`
513
+ - `@stream-io/video-react-bindings` updated to version `1.7.13`
514
+
515
+ ## [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)
516
+
517
+ ### Dependency Updates
518
+
519
+ - `@stream-io/video-client` updated to version `1.27.3`
520
+ - `@stream-io/video-react-bindings` updated to version `1.7.12`
521
+
522
+ ## [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)
523
+
524
+ - best to not create listener before js bridge being ready ([dcb4f0a](https://github.com/GetStream/stream-video-js/commit/dcb4f0aa7d01f7822ed10ae39a52b1b83cbdd077))
525
+
526
+ ## [1.20.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.2...@stream-io/video-react-native-sdk-1.20.3) (2025-08-05)
527
+
528
+ ### Bug Fixes
529
+
530
+ - handle undefined participant in iOS pip ([#1878](https://github.com/GetStream/stream-video-js/issues/1878)) ([69c4694](https://github.com/GetStream/stream-video-js/commit/69c4694196e13afc628150b033a48b227640bda4)), closes [#1876](https://github.com/GetStream/stream-video-js/issues/1876)
531
+
532
+ ## [1.20.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.1...@stream-io/video-react-native-sdk-1.20.2) (2025-08-05)
533
+
534
+ ### Dependency Updates
535
+
536
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.2.1`
537
+ - `@stream-io/video-filters-react-native` updated to version `0.6.1`
538
+ - `@stream-io/video-client` updated to version `1.27.2`
539
+ - `@stream-io/video-react-bindings` updated to version `1.7.11`
540
+
541
+ ### Bug Fixes
542
+
543
+ - iOS PiP cleanup ([#1870](https://github.com/GetStream/stream-video-js/issues/1870)) ([88c87f4](https://github.com/GetStream/stream-video-js/commit/88c87f4c9d9b66bb5beef0464863efde720761dd)), closes [#1854](https://github.com/GetStream/stream-video-js/issues/1854)
544
+ - support setting iOS pip window sizes ([#1876](https://github.com/GetStream/stream-video-js/issues/1876)) ([2c553c9](https://github.com/GetStream/stream-video-js/commit/2c553c967b4ceedaf7209c1e98ab4c8025c84ca5))
545
+
546
+ ## [1.20.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.20.0...@stream-io/video-react-native-sdk-1.20.1) (2025-08-01)
547
+
548
+ ### Bug Fixes
549
+
550
+ - android OEM specific pip crash ([#1868](https://github.com/GetStream/stream-video-js/issues/1868)) ([2d4ebc5](https://github.com/GetStream/stream-video-js/commit/2d4ebc58cfd21eaa59947e56499ceb3b1258368d))
551
+
552
+ ## [1.20.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.19.1...@stream-io/video-react-native-sdk-1.20.0) (2025-07-25)
553
+
554
+ ### Dependency Updates
555
+
556
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.2.0`
557
+ - `@stream-io/video-filters-react-native` updated to version `0.6.0`
558
+ - `@stream-io/video-client` updated to version `1.27.1`
559
+ - `@stream-io/video-react-bindings` updated to version `1.7.10`
560
+
561
+ - bump webrtc version ([#1865](https://github.com/GetStream/stream-video-js/issues/1865)) ([18fd609](https://github.com/GetStream/stream-video-js/commit/18fd60945ef74eb23c089dc0b5adb2373b700602))
562
+
563
+ ### Features
564
+
565
+ - add ability to run a custom promise option for android keep call alive service ([#1864](https://github.com/GetStream/stream-video-js/issues/1864)) ([81fdd0b](https://github.com/GetStream/stream-video-js/commit/81fdd0b381a0e6aae4b5e5063c9b6c10b3c4d3bf))
566
+ - do not detect video dimensions through rtc stats ([#1852](https://github.com/GetStream/stream-video-js/issues/1852)) ([280e008](https://github.com/GetStream/stream-video-js/commit/280e0087d646188e71dec6e4d4e5e8b93878904d))
567
+
568
+ ### Bug Fixes
569
+
570
+ - improved audio and video filter tracing ([#1862](https://github.com/GetStream/stream-video-js/issues/1862)) ([701ea4b](https://github.com/GetStream/stream-video-js/commit/701ea4b3266f68072c1325b70221fdefd77137ec))
571
+ - trace available devices and thermal state changes ([#1866](https://github.com/GetStream/stream-video-js/issues/1866)) ([d8312b5](https://github.com/GetStream/stream-video-js/commit/d8312b5c109b14baa28ee764202d387499d0fd52))
572
+
573
+ ## [1.19.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.19.0...@stream-io/video-react-native-sdk-1.19.1) (2025-07-23)
574
+
575
+ ### Bug Fixes
576
+
577
+ - automatically exit android pip mode if call is left ([#1863](https://github.com/GetStream/stream-video-js/issues/1863)) ([51850f4](https://github.com/GetStream/stream-video-js/commit/51850f49bc67595a4cacb766863894483712fc75))
578
+ - ios pip blank local track issue ([47d8119](https://github.com/GetStream/stream-video-js/commit/47d811928f9f155b4d9f9cb23042a7556fd8414a))
579
+
580
+ ## [1.19.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.18.1...@stream-io/video-react-native-sdk-1.19.0) (2025-07-18)
581
+
582
+ ### Dependency Updates
583
+
584
+ - `@stream-io/video-client` updated to version `1.27.0`
585
+ - `@stream-io/video-react-bindings` updated to version `1.7.9`
586
+
587
+ ### Features
588
+
589
+ - Inbound Video Pause ([#1841](https://github.com/GetStream/stream-video-js/issues/1841)) ([5c7eb3a](https://github.com/GetStream/stream-video-js/commit/5c7eb3ac8b0fcfd663226d537279c8a941dedc21))
590
+
591
+ ### Bug Fixes
592
+
593
+ - stop picture-in-picture after call ends or goes to backstage ([#1854](https://github.com/GetStream/stream-video-js/issues/1854)) ([91390d8](https://github.com/GetStream/stream-video-js/commit/91390d83e056af3f1855f36ccd5f3eed9fed6d4d))
594
+
595
+ ## [1.18.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.18.0...@stream-io/video-react-native-sdk-1.18.1) (2025-07-17)
596
+
597
+ ### Dependency Updates
598
+
599
+ - `@stream-io/video-client` updated to version `1.26.1`
600
+ - `@stream-io/video-react-bindings` updated to version `1.7.8`
601
+
602
+ ## [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)
603
+
604
+ ### Dependency Updates
605
+
606
+ - `@stream-io/video-client` updated to version `1.26.0`
607
+ - `@stream-io/video-react-bindings` updated to version `1.7.7`
608
+
609
+ ### Features
610
+
611
+ - **react-native:** speech detection ([#1850](https://github.com/GetStream/stream-video-js/issues/1850)) ([3f53e95](https://github.com/GetStream/stream-video-js/commit/3f53e95fdf0e739c809648211c52542d86df183f))
612
+
613
+ ### Bug Fixes
614
+
615
+ - keep objectfit as cover for floating video view ([#1849](https://github.com/GetStream/stream-video-js/issues/1849)) ([a99de4c](https://github.com/GetStream/stream-video-js/commit/a99de4c3b2231fa840e003515735620f6c009f7e))
616
+
617
+ ## [1.17.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.5...@stream-io/video-react-native-sdk-1.17.6) (2025-07-08)
618
+
619
+ ### Dependency Updates
620
+
621
+ - `@stream-io/video-client` updated to version `1.25.5`
622
+ - `@stream-io/video-react-bindings` updated to version `1.7.6`
623
+
624
+ ## [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)
625
+
626
+ ### Dependency Updates
627
+
628
+ - `@stream-io/video-client` updated to version `1.25.4`
629
+ - `@stream-io/video-react-bindings` updated to version `1.7.5`
630
+
631
+ ## [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)
632
+
633
+ ### Dependency Updates
634
+
635
+ - `@stream-io/video-client` updated to version `1.25.3`
636
+ - `@stream-io/video-react-bindings` updated to version `1.7.4`
637
+
638
+ ### Bug Fixes
639
+
640
+ - add loopSound for incoming call notifications ([9e02a3d](https://github.com/GetStream/stream-video-js/commit/9e02a3dd4de5af8a446b8b34450a3fa13b878aa2))
641
+ - do not have a default for objectfit ([#1843](https://github.com/GetStream/stream-video-js/issues/1843)) ([1586e07](https://github.com/GetStream/stream-video-js/commit/1586e070691fddb7eb04ae713228e3fe6ac093e4))
642
+
643
+ ## [1.17.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.2...@stream-io/video-react-native-sdk-1.17.3) (2025-07-02)
644
+
645
+ ### Dependency Updates
646
+
647
+ - `@stream-io/video-client` updated to version `1.25.2`
648
+ - `@stream-io/video-react-bindings` updated to version `1.7.3`
649
+
650
+ ### Bug Fixes
651
+
652
+ - **react-native:** customise android notification buttons ([#1842](https://github.com/GetStream/stream-video-js/issues/1842)) ([40e098d](https://github.com/GetStream/stream-video-js/commit/40e098d8a82a5ccf2076da69299bf18877dcbeec))
653
+
654
+ ## [1.17.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.17.1...@stream-io/video-react-native-sdk-1.17.2) (2025-06-30)
655
+
656
+ ### Dependency Updates
657
+
658
+ - `@stream-io/video-client` updated to version `1.25.1`
659
+ - `@stream-io/video-react-bindings` updated to version `1.7.2`
660
+
661
+ ## [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)
662
+
663
+ ### Dependency Updates
664
+
665
+ - `@stream-io/video-client` updated to version `1.25.0`
666
+ - `@stream-io/video-react-bindings` updated to version `1.7.1`
667
+
668
+ ## [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)
669
+
670
+ ### Dependency Updates
671
+
672
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.1.1`
673
+ - `@stream-io/video-filters-react-native` updated to version `0.5.0`
674
+ - `@stream-io/video-client` updated to version `1.24.0`
675
+ - `@stream-io/video-react-bindings` updated to version `1.7.0`
676
+
677
+ - update webrtc version ([162a8d2](https://github.com/GetStream/stream-video-js/commit/162a8d24216a28659759ea16fe48630cadb1536f))
678
+
679
+ ### Features
680
+
681
+ - add audio only ringing notification support for iOS ([#1821](https://github.com/GetStream/stream-video-js/issues/1821)) ([067081d](https://github.com/GetStream/stream-video-js/commit/067081da0032fb965b0401905b2413d3a0290f0e))
682
+ - moderation support ([#1822](https://github.com/GetStream/stream-video-js/issues/1822)) ([3948fae](https://github.com/GetStream/stream-video-js/commit/3948faeb2fa7ace8dd9c1df990f6e41e73fc0a26))
683
+
684
+ ## [1.16.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.16.0...@stream-io/video-react-native-sdk-1.16.1) (2025-06-04)
685
+
686
+ ### Dependency Updates
687
+
688
+ - `@stream-io/video-client` updated to version `1.23.5`
689
+ - `@stream-io/video-react-bindings` updated to version `1.6.8`
690
+
691
+ ### Bug Fixes
692
+
693
+ - expo noise cancellation swift import + sample video filters ([#1816](https://github.com/GetStream/stream-video-js/issues/1816)) ([7524fc0](https://github.com/GetStream/stream-video-js/commit/7524fc05b8de85b943d5f3ca460b984725b550b9))
694
+
695
+ ## [1.16.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.15.1...@stream-io/video-react-native-sdk-1.16.0) (2025-06-03)
696
+
697
+ ### Dependency Updates
698
+
699
+ - `@stream-io/video-client` updated to version `1.23.4`
700
+ - `@stream-io/video-react-bindings` updated to version `1.6.7`
701
+
702
+ ### Features
703
+
704
+ - remove camera management hooks on react native ([#1711](https://github.com/GetStream/stream-video-js/issues/1711)) ([644e238](https://github.com/GetStream/stream-video-js/commit/644e238d479397ca37bcb6c1bd1284988475f9f6))
705
+
706
+ ## [1.15.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.15.0...@stream-io/video-react-native-sdk-1.15.1) (2025-06-02)
707
+
708
+ ### Dependency Updates
709
+
710
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.1.1`
711
+ - `@stream-io/video-client` updated to version `1.23.3`
712
+ - `@stream-io/video-react-bindings` updated to version `1.6.6`
713
+
714
+ ### Bug Fixes
715
+
716
+ - expo plugin should add foreground permissions on ringing config ([cba9746](https://github.com/GetStream/stream-video-js/commit/cba97469966aa35b67f380d82272a9bf3a8e2ef2))
717
+ - report to callkit that we do not support holding ([#1809](https://github.com/GetStream/stream-video-js/issues/1809)) ([e779d3f](https://github.com/GetStream/stream-video-js/commit/e779d3fbdda30be5db5c42ee4655d8311dd53d60))
718
+
719
+ ## [1.15.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.14.2...@stream-io/video-react-native-sdk-1.15.0) (2025-05-27)
720
+
721
+ ### Features
722
+
723
+ - **android:** Accept incoming call without device unlock ([#1806](https://github.com/GetStream/stream-video-js/issues/1806)) ([6b8ee36](https://github.com/GetStream/stream-video-js/commit/6b8ee36323c0c352742e23bf845eed47c581e6ab))
724
+
725
+ ## [1.14.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.14.1...@stream-io/video-react-native-sdk-1.14.2) (2025-05-22)
726
+
727
+ ### Dependency Updates
728
+
729
+ - `@stream-io/video-client` updated to version `1.23.2`
730
+ - `@stream-io/video-react-bindings` updated to version `1.6.5`
731
+
732
+ ## [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)
733
+
734
+ ### Dependency Updates
735
+
736
+ - `@stream-io/video-client` updated to version `1.23.1`
737
+ - `@stream-io/video-react-bindings` updated to version `1.6.4`
738
+
739
+ ## [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)
740
+
741
+ ### Dependency Updates
742
+
743
+ - `@stream-io/noise-cancellation-react-native` updated to version `0.1.0`
744
+ - `@stream-io/video-filters-react-native` updated to version `0.4.0`
745
+ - `@stream-io/video-client` updated to version `1.23.0`
746
+ - `@stream-io/video-react-bindings` updated to version `1.6.3`
747
+
748
+ ### Features
749
+
750
+ - **react-native:** Noise Cancellation ([#1793](https://github.com/GetStream/stream-video-js/issues/1793)) ([d7843e1](https://github.com/GetStream/stream-video-js/commit/d7843e1a23e6f6a35d1c159438d09bdfd17450a5))
751
+ - rn livestream improvements ([#1780](https://github.com/GetStream/stream-video-js/issues/1780)) ([8a3bb59](https://github.com/GetStream/stream-video-js/commit/8a3bb594b257c48a7045bfb6978fc233649945f5))
752
+ - **web:** improved noise cancellation ([#1794](https://github.com/GetStream/stream-video-js/issues/1794)) ([d59f19b](https://github.com/GetStream/stream-video-js/commit/d59f19b1ba1ff83fe5f024d783b868f4e98d3380))
753
+
754
+ ## [1.13.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.13.2...@stream-io/video-react-native-sdk-1.13.3) (2025-05-15)
755
+
756
+ ### Dependency Updates
757
+
758
+ - `@stream-io/video-filters-react-native` updated to version `0.3.1`
759
+ - `@stream-io/video-client` updated to version `1.22.2`
760
+ - `@stream-io/video-react-bindings` updated to version `1.6.2`
761
+
762
+ ### Bug Fixes
763
+
764
+ - enable chore releases ([#1792](https://github.com/GetStream/stream-video-js/issues/1792)) ([6046654](https://github.com/GetStream/stream-video-js/commit/6046654fe19505a1c115a4fb838759d010540614))
765
+
766
+ ## [1.13.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.13.1...@stream-io/video-react-native-sdk-1.13.2) (2025-05-14)
767
+
768
+ ### Dependency Updates
769
+
770
+ - `@stream-io/video-client` updated to version `1.22.1`
771
+ - `@stream-io/video-react-bindings` updated to version `1.6.1`
772
+
773
+ ## [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)
774
+
775
+ ### Bug Fixes
776
+
777
+ - ios compilation error on old arch ([#1787](https://github.com/GetStream/stream-video-js/issues/1787)) ([9b03335](https://github.com/GetStream/stream-video-js/commit/9b03335eb4eb020021e9a3d40c2b1f81d33ad0fe))
778
+
779
+ ## [1.13.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.12.0...@stream-io/video-react-native-sdk-1.13.0) (2025-05-08)
780
+
781
+ ### Dependency Updates
782
+
783
+ - `@stream-io/video-filters-react-native` updated to version `0.3.0`
784
+ - `@stream-io/video-client` updated to version `1.22.0`
785
+ - `@stream-io/video-react-bindings` updated to version `1.6.0`
786
+
787
+ ### Features
788
+
789
+ - Expo 53 Swift Config Plugin and React Native 0.79 compatibility ([#1714](https://github.com/GetStream/stream-video-js/issues/1714)) ([380331e](https://github.com/GetStream/stream-video-js/commit/380331e11fd6182c3111413aa25689a669dd3c9c))
790
+ - **react-native:** take screenshot of a participant's video stream ([#1772](https://github.com/GetStream/stream-video-js/issues/1772)) ([fb28427](https://github.com/GetStream/stream-video-js/commit/fb284270f5a0589dbc40669456d2cf45c911a245))
791
+
792
+ ## [1.12.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.6...@stream-io/video-react-native-sdk-1.12.0) (2025-05-02)
793
+
794
+ ### Dependency Updates
795
+
796
+ - `@stream-io/video-client` updated to version `1.21.0`
797
+ - `@stream-io/video-react-bindings` updated to version `1.5.19`
798
+
799
+ - update sample apps to webrtc-125.2.0 ([#1777](https://github.com/GetStream/stream-video-js/issues/1777)) ([f1b6070](https://github.com/GetStream/stream-video-js/commit/f1b6070d207099bf8f8538cdaa556fd14daddb9d))
800
+
801
+ ### Features
802
+
803
+ - encode and decode PerformanceStats tracing ([#1765](https://github.com/GetStream/stream-video-js/issues/1765)) ([138ea84](https://github.com/GetStream/stream-video-js/commit/138ea84fee834da03cf3c8042fbb2f071526f135))
804
+
805
+ ## [1.11.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.5...@stream-io/video-react-native-sdk-1.11.6) (2025-05-01)
806
+
807
+ ### Dependency Updates
808
+
809
+ - `@stream-io/video-client` updated to version `1.20.2`
810
+ - `@stream-io/video-react-bindings` updated to version `1.5.18`
811
+
812
+ ## [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)
813
+
814
+ ### Dependency Updates
815
+
816
+ - `@stream-io/video-client` updated to version `1.20.1`
817
+ - `@stream-io/video-react-bindings` updated to version `1.5.17`
818
+
819
+ ### Bug Fixes
820
+
821
+ - add missing bg task scheduler key for expo ([2f901cb](https://github.com/GetStream/stream-video-js/commit/2f901cbd07f2d808f67bf812b21ab1e17990fdac))
822
+ - call cancellation not reliably seen on killed state RN-198 ([#1773](https://github.com/GetStream/stream-video-js/issues/1773)) ([735480e](https://github.com/GetStream/stream-video-js/commit/735480ec13e29784c97f81bf1c4d9c5f9123b85d))
823
+
824
+ ## [1.11.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.3...@stream-io/video-react-native-sdk-1.11.4) (2025-04-24)
825
+
826
+ ### Dependency Updates
827
+
828
+ - `@stream-io/video-client` updated to version `1.20.0`
829
+ - `@stream-io/video-react-bindings` updated to version `1.5.16`
830
+
831
+ ## [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)
832
+
833
+ ### Dependency Updates
834
+
835
+ - `@stream-io/video-client` updated to version `1.19.3`
836
+ - `@stream-io/video-react-bindings` updated to version `1.5.15`
837
+
838
+ ## [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)
839
+
840
+ ### Dependency Updates
841
+
842
+ - `@stream-io/video-client` updated to version `1.19.2`
843
+ - `@stream-io/video-react-bindings` updated to version `1.5.14`
844
+
845
+ ### Bug Fixes
846
+
847
+ - race condition on Expo iOS when processing incoming voip push notification ([#1757](https://github.com/GetStream/stream-video-js/issues/1757)) ([cd5542b](https://github.com/GetStream/stream-video-js/commit/cd5542b6624e3aa731e7f9f63c7b291f95f7ab10))
848
+
849
+ ## [1.11.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.11.0...@stream-io/video-react-native-sdk-1.11.1) (2025-04-09)
850
+
851
+ ### Dependency Updates
852
+
853
+ - `@stream-io/video-client` updated to version `1.19.1`
854
+ - `@stream-io/video-react-bindings` updated to version `1.5.13`
855
+
856
+ - 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))
857
+
858
+ ### Bug Fixes
859
+
860
+ - send device token when switching user ([#1752](https://github.com/GetStream/stream-video-js/issues/1752)) ([4a5d72e](https://github.com/GetStream/stream-video-js/commit/4a5d72eb90d838a462dccf77996270963c8ce0d1))
861
+
862
+ ## [1.11.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.19...@stream-io/video-react-native-sdk-1.11.0) (2025-04-04)
863
+
864
+ ### Dependency Updates
865
+
866
+ - `@stream-io/video-client` updated to version `1.19.0`
867
+ - `@stream-io/video-react-bindings` updated to version `1.5.12`
868
+
869
+ ### Features
870
+
871
+ - collect more granular RTC stats and RPC tracing ([#1735](https://github.com/GetStream/stream-video-js/issues/1735)) ([e356d6b](https://github.com/GetStream/stream-video-js/commit/e356d6b9fe361c186a5b92de55fabf0598ea4885))
872
+
873
+ ## [1.10.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.18...@stream-io/video-react-native-sdk-1.10.19) (2025-04-02)
874
+
875
+ ### Dependency Updates
876
+
877
+ - `@stream-io/video-client` updated to version `1.18.9`
878
+ - `@stream-io/video-react-bindings` updated to version `1.5.11`
879
+
880
+ - 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))
881
+ - rn-178 refactor theme provider ([#1739](https://github.com/GetStream/stream-video-js/issues/1739)) ([3252a90](https://github.com/GetStream/stream-video-js/commit/3252a90d51db1e47abbd7a37a9fdf8e14504f24d))
882
+
883
+ ## [1.10.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.17...@stream-io/video-react-native-sdk-1.10.18) (2025-04-01)
884
+
885
+ ### Dependency Updates
886
+
887
+ - `@stream-io/video-client` updated to version `1.18.8`
888
+ - `@stream-io/video-react-bindings` updated to version `1.5.10`
889
+
890
+ - align expo plugin background modes with flutter ([f6950cb](https://github.com/GetStream/stream-video-js/commit/f6950cb39d0c83413aca1c59e670efea5c5cdd6a))
891
+ - dependency upgrades and cleanup ([#1727](https://github.com/GetStream/stream-video-js/issues/1727)) ([c3b0ede](https://github.com/GetStream/stream-video-js/commit/c3b0ede3ce444c28c51457155e8ccff584c2c1e5))
892
+ - RN Ringing App ([#1719](https://github.com/GetStream/stream-video-js/issues/1719)) ([6fcb33f](https://github.com/GetStream/stream-video-js/commit/6fcb33f3574adbf8f22cf016625fe53a11ed1169))
893
+
894
+ ## [1.10.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.16...@stream-io/video-react-native-sdk-1.10.17) (2025-03-20)
895
+
896
+ ### Dependency Updates
897
+
898
+ - `@stream-io/video-client` updated to version `1.18.7`
899
+ - `@stream-io/video-react-bindings` updated to version `1.5.9`
900
+
901
+ ### Bug Fixes
902
+
903
+ - proper non ringing only push support without ringing libs ([#1731](https://github.com/GetStream/stream-video-js/issues/1731)) ([8135708](https://github.com/GetStream/stream-video-js/commit/8135708a5970de90d64aeed936a1225c9545fdf6))
904
+
905
+ ## [1.10.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.15...@stream-io/video-react-native-sdk-1.10.16) (2025-03-13)
906
+
907
+ ### Dependency Updates
908
+
909
+ - `@stream-io/video-client` updated to version `1.18.6`
910
+ - `@stream-io/video-react-bindings` updated to version `1.5.8`
911
+
912
+ ## [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)
913
+
914
+ ### Dependency Updates
915
+
916
+ - `@stream-io/video-client` updated to version `1.18.5`
917
+ - `@stream-io/video-react-bindings` updated to version `1.5.7`
918
+
919
+ ## [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)
920
+
921
+ ### Bug Fixes
922
+
923
+ - setup ios accept/decline events before user is connected RN-153 ([#1716](https://github.com/GetStream/stream-video-js/issues/1716)) ([b5fb06a](https://github.com/GetStream/stream-video-js/commit/b5fb06af636c9e38b0ef7b90d51548bdf89961f8))
924
+
925
+ ## [1.10.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.12...@stream-io/video-react-native-sdk-1.10.13) (2025-03-10)
926
+
927
+ ### Dependency Updates
928
+
929
+ - `@stream-io/video-client` updated to version `1.18.4`
930
+ - `@stream-io/video-react-bindings` updated to version `1.5.6`
931
+
932
+ ### Bug Fixes
933
+
934
+ - ios PiP track not fetched sometimes ([#1709](https://github.com/GetStream/stream-video-js/issues/1709)) ([ec20f97](https://github.com/GetStream/stream-video-js/commit/ec20f97dbb305c50f315bcd1293b9f160cfa1408))
935
+
936
+ ## [1.10.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.11...@stream-io/video-react-native-sdk-1.10.12) (2025-03-06)
937
+
938
+ - **@stream-io/video-react-native-sdk:** release version 1.10.12 ([8730ef6](https://github.com/GetStream/stream-video-js/commit/8730ef61b38c7c48d90a959a1573a5612b9102bd))
939
+ - add background modes in our plugin as fallback if other plugins are not installed ([dd23ab8](https://github.com/GetStream/stream-video-js/commit/dd23ab87706d86b8181830ff1f44c421aabfb432))
940
+
941
+ ### Bug Fixes
942
+
943
+ - do not remove notification type voip listener on unmount ([#1712](https://github.com/GetStream/stream-video-js/issues/1712)) ([51b7059](https://github.com/GetStream/stream-video-js/commit/51b7059ed8345c474edc4e30fed91b0339d3d36d))
944
+
945
+ ## [1.10.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.11...@stream-io/video-react-native-sdk-1.10.12) (2025-03-05)
946
+
947
+ - add background modes in our plugin as fallback if other plugins are not installed ([dd23ab8](https://github.com/GetStream/stream-video-js/commit/dd23ab87706d86b8181830ff1f44c421aabfb432))
948
+
949
+ ### Bug Fixes
950
+
951
+ - do not remove notification type voip listener on unmount ([#1712](https://github.com/GetStream/stream-video-js/issues/1712)) ([51b7059](https://github.com/GetStream/stream-video-js/commit/51b7059ed8345c474edc4e30fed91b0339d3d36d))
952
+
953
+ ## [1.10.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.10...@stream-io/video-react-native-sdk-1.10.11) (2025-03-05)
954
+
955
+ ### Dependency Updates
956
+
957
+ - `@stream-io/video-client` updated to version `1.18.3`
958
+ - `@stream-io/video-react-bindings` updated to version `1.5.5`
959
+
960
+ ## [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)
961
+
962
+ ### Dependency Updates
963
+
964
+ - `@stream-io/video-client` updated to version `1.18.2`
965
+ - `@stream-io/video-react-bindings` updated to version `1.5.4`
966
+
967
+ ## [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)
968
+
969
+ ### Dependency Updates
970
+
971
+ - `@stream-io/video-client` updated to version `1.18.1`
972
+ - `@stream-io/video-react-bindings` updated to version `1.5.3`
973
+
974
+ ## [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)
975
+
976
+ ### Bug Fixes
977
+
978
+ - do not stop incall manager on change of audio settings ([#1702](https://github.com/GetStream/stream-video-js/issues/1702)) ([e35194d](https://github.com/GetStream/stream-video-js/commit/e35194dc4a789cc281b9f2d4488ffe11840986f7))
979
+
980
+ ## [1.10.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.6...@stream-io/video-react-native-sdk-1.10.7) (2025-02-26)
981
+
982
+ - pinning rn dev dep for sdk ([0e78ddc](https://github.com/GetStream/stream-video-js/commit/0e78ddcfabdd7f42849cad47efa0da623c2021cb))
983
+
984
+ ### Bug Fixes
985
+
986
+ - pip race condition ([#1700](https://github.com/GetStream/stream-video-js/issues/1700)) ([60c8aa6](https://github.com/GetStream/stream-video-js/commit/60c8aa6c5651072f15da1770e9840d3f2b8c11c0))
987
+
988
+ ## [1.10.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.5...@stream-io/video-react-native-sdk-1.10.6) (2025-02-26)
989
+
990
+ ### Dependency Updates
991
+
992
+ - `@stream-io/video-client` updated to version `1.18.0`
993
+ - `@stream-io/video-react-bindings` updated to version `1.5.2`
994
+
995
+ ### Bug Fixes
996
+
997
+ - config plugin not being resolved in expo 50 ([#1698](https://github.com/GetStream/stream-video-js/issues/1698)) ([5060ba3](https://github.com/GetStream/stream-video-js/commit/5060ba32421b31108df0c4a0b4e52997df833b3c)), closes [#1694](https://github.com/GetStream/stream-video-js/issues/1694)
998
+
999
+ ## [1.10.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.4...@stream-io/video-react-native-sdk-1.10.5) (2025-02-25)
1000
+
1001
+ ### Bug Fixes
1002
+
1003
+ - callControls styling issue ([#1689](https://github.com/GetStream/stream-video-js/issues/1689)) ([3d68faa](https://github.com/GetStream/stream-video-js/commit/3d68faa3369a05ab59cd6ccd887881a016dfee93))
1004
+ - expo build issues ([#1695](https://github.com/GetStream/stream-video-js/issues/1695)) ([7fe7424](https://github.com/GetStream/stream-video-js/commit/7fe742496ba484b9d5149a39f8c05a504f2aff00))
1005
+ - ios distinct values ([#1692](https://github.com/GetStream/stream-video-js/issues/1692)) ([d83291d](https://github.com/GetStream/stream-video-js/commit/d83291d439abd41aa0f2654f42c130b4f9375719))
1006
+ - ios ipad crash in incoming call component ([#1691](https://github.com/GetStream/stream-video-js/issues/1691)) ([df79fbe](https://github.com/GetStream/stream-video-js/commit/df79fbef24369d9a0d49f31b8b0d6e7bbf986cc7))
1007
+
1008
+ ## [1.10.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.3...@stream-io/video-react-native-sdk-1.10.4) (2025-02-19)
1009
+
1010
+ ### Bug Fixes
1011
+
1012
+ - add smallIcon to android push config for expo naming support ([ef94317](https://github.com/GetStream/stream-video-js/commit/ef943174d6e40c94c5c6b02fd0e6be06081ab429))
1013
+
1014
+ ## [1.10.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.2...@stream-io/video-react-native-sdk-1.10.3) (2025-02-19)
1015
+
1016
+ ### Dependency Updates
1017
+
1018
+ - `@stream-io/video-client` updated to version `1.17.1`
1019
+ - `@stream-io/video-react-bindings` updated to version `1.5.1`
1020
+
1021
+ ## [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)
1022
+
1023
+ ### Bug Fixes
1024
+
1025
+ - early completion call on iOS remote notifications ([#1687](https://github.com/GetStream/stream-video-js/issues/1687)) ([39c4ba7](https://github.com/GetStream/stream-video-js/commit/39c4ba73199efa8b2e2335473b153dc50ec31653))
1026
+
1027
+ ## [1.10.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.10.0...@stream-io/video-react-native-sdk-1.10.1) (2025-02-18)
1028
+
1029
+ ### Bug Fixes
1030
+
1031
+ - do not remove voip listeners for wrong user ([#1686](https://github.com/GetStream/stream-video-js/issues/1686)) ([c6dd17d](https://github.com/GetStream/stream-video-js/commit/c6dd17d040bb84a388d773020a833cbe4b67b41c))
1032
+
1033
+ ## [1.10.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.31...@stream-io/video-react-native-sdk-1.10.0) (2025-02-17)
1034
+
1035
+ ### Dependency Updates
1036
+
1037
+ - `@stream-io/video-client` updated to version `1.17.0`
1038
+ - `@stream-io/video-react-bindings` updated to version `1.5.0`
1039
+ - `@stream-io/video-filters-react-native` updated to version `0.2.8`
1040
+
1041
+ - update webrtc deps ([6ea4861](https://github.com/GetStream/stream-video-js/commit/6ea4861eb1b390c82f6ea6d01d6c5e80bdab8b84))
1042
+
1043
+ ### Features
1044
+
1045
+ - support static token and token provider at the same time ([#1685](https://github.com/GetStream/stream-video-js/issues/1685)) ([4365a3d](https://github.com/GetStream/stream-video-js/commit/4365a3dd0a14c98041982bde8be21258b8cfd571))
1046
+
1047
+ ## [1.9.31](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.30...@stream-io/video-react-native-sdk-1.9.31) (2025-02-13)
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ - voip token not able to be got if user switched ([#1683](https://github.com/GetStream/stream-video-js/issues/1683)) ([8f2a376](https://github.com/GetStream/stream-video-js/commit/8f2a37663fbc88701a1ce526acaf5a4e4c3afbc3))
1052
+
1053
+ ## [1.9.30](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.29...@stream-io/video-react-native-sdk-1.9.30) (2025-02-12)
1054
+
1055
+ ### Dependency Updates
1056
+
1057
+ - `@stream-io/video-client` updated to version `1.16.7`
1058
+ - `@stream-io/video-react-bindings` updated to version `1.4.15`
1059
+
1060
+ ## [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)
1061
+
1062
+ ### Bug Fixes
1063
+
1064
+ - warn natively if notifee is not configured for keep call alive ([#1678](https://github.com/GetStream/stream-video-js/issues/1678)) ([f6f11ad](https://github.com/GetStream/stream-video-js/commit/f6f11ad5f691ce56f65d824e1ab12c6ebc7540c4)), closes [#1587](https://github.com/GetStream/stream-video-js/issues/1587)
1065
+
1066
+ ## [1.9.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.27...@stream-io/video-react-native-sdk-1.9.28) (2025-02-11)
1067
+
1068
+ ### Dependency Updates
1069
+
1070
+ - `@stream-io/video-client` updated to version `1.16.6`
1071
+ - `@stream-io/video-react-bindings` updated to version `1.4.14`
1072
+ - `@stream-io/video-filters-react-native` updated to version `0.2.7`
1073
+
1074
+ ### Bug Fixes
1075
+
1076
+ - prefer the async apply constraints for flip ([#1679](https://github.com/GetStream/stream-video-js/issues/1679)) ([8c246cc](https://github.com/GetStream/stream-video-js/commit/8c246cc4e9f1ac766366cf24b82dd99aa868017d))
1077
+
1078
+ ## [1.9.27](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.26...@stream-io/video-react-native-sdk-1.9.27) (2025-02-10)
1079
+
1080
+ ### Dependency Updates
1081
+
1082
+ - `@stream-io/video-client` updated to version `1.16.5`
1083
+ - `@stream-io/video-react-bindings` updated to version `1.4.13`
1084
+
1085
+ ## [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)
1086
+
1087
+ ### Bug Fixes
1088
+
1089
+ - attempt workaround for bad notification for start foreground ([402ff06](https://github.com/GetStream/stream-video-js/commit/402ff067f05364724f30dbd21af996336d1dfa2f))
1090
+
1091
+ ## [1.9.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.24...@stream-io/video-react-native-sdk-1.9.25) (2025-02-07)
1092
+
1093
+ ### Dependency Updates
1094
+
1095
+ - `@stream-io/video-client` updated to version `1.16.4`
1096
+ - `@stream-io/video-react-bindings` updated to version `1.4.12`
1097
+
1098
+ ## [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)
1099
+
1100
+ - bump to webrtc-125.0.4 ([#1675](https://github.com/GetStream/stream-video-js/issues/1675)) ([c4b9ad8](https://github.com/GetStream/stream-video-js/commit/c4b9ad8a30403c9f2ebd8ba681fcc97c048d00e8))
1101
+
1102
+ ### Bug Fixes
1103
+
1104
+ - send voip token also when connectUser is called later ([#1665](https://github.com/GetStream/stream-video-js/issues/1665)) ([aab92c0](https://github.com/GetStream/stream-video-js/commit/aab92c0b1029aec7fedb2afac43585752bcd0b07))
1105
+
1106
+ ## [1.9.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.22...@stream-io/video-react-native-sdk-1.9.23) (2025-02-06)
1107
+
1108
+ ### Dependency Updates
1109
+
1110
+ - `@stream-io/video-client` updated to version `1.16.3`
1111
+ - `@stream-io/video-react-bindings` updated to version `1.4.11`
1112
+
1113
+ ## [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)
1114
+
1115
+ ### Bug Fixes
1116
+
1117
+ - closed captions and speaker border bugfixes ([#1670](https://github.com/GetStream/stream-video-js/issues/1670)) ([275ddb5](https://github.com/GetStream/stream-video-js/commit/275ddb5193110dc88b45a4155858e91b194db0b3))
1118
+
1119
+ ## [1.9.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.20...@stream-io/video-react-native-sdk-1.9.21) (2025-02-06)
1120
+
1121
+ ### Bug Fixes
1122
+
1123
+ - NoClassDefFoundError on PiP on android 7 and below ([70ac465](https://github.com/GetStream/stream-video-js/commit/70ac4656b5f0b42c649f38ff288adb47eff02907))
1124
+
1125
+ ## [1.9.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.19...@stream-io/video-react-native-sdk-1.9.20) (2025-02-05)
1126
+
1127
+ ### Dependency Updates
1128
+
1129
+ - `@stream-io/video-client` updated to version `1.16.2`
1130
+ - `@stream-io/video-react-bindings` updated to version `1.4.10`
1131
+
1132
+ ## [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)
1133
+
1134
+ ### Bug Fixes
1135
+
1136
+ - start foreground service only when app is in active state ([f8bfef8](https://github.com/GetStream/stream-video-js/commit/f8bfef89f8151695bbc405244a9f77097fe6892e))
1137
+
1138
+ ## [1.9.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.17...@stream-io/video-react-native-sdk-1.9.18) (2025-02-05)
1139
+
1140
+ ### Dependency Updates
1141
+
1142
+ - `@stream-io/video-client` updated to version `1.16.1`
1143
+ - `@stream-io/video-react-bindings` updated to version `1.4.9`
1144
+
1145
+ ## [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)
1146
+
1147
+ ### Bug Fixes
1148
+
1149
+ - handle null activities for pip on android ([dd9b59d](https://github.com/GetStream/stream-video-js/commit/dd9b59d526fd3fdc780b8a45792563bf12837618))
1150
+ - prefer remote participants for PiP ([1c0f9a1](https://github.com/GetStream/stream-video-js/commit/1c0f9a1c278cf87b5584e13011d311af814a537b))
1151
+
1152
+ ## [1.9.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.15...@stream-io/video-react-native-sdk-1.9.16) (2025-01-31)
1153
+
1154
+ ### Dependency Updates
1155
+
1156
+ - `@stream-io/video-client` updated to version `1.16.0`
1157
+ - `@stream-io/video-react-bindings` updated to version `1.4.8`
1158
+
1159
+ ## [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)
1160
+
1161
+ ### Bug Fixes
1162
+
1163
+ - added missed call events to push config types ([#1667](https://github.com/GetStream/stream-video-js/issues/1667)) ([36a9683](https://github.com/GetStream/stream-video-js/commit/36a96839b095a9d3cd736a1bd60b9a01f6160421))
1164
+ - open fg service only on a successful join ([#1666](https://github.com/GetStream/stream-video-js/issues/1666)) ([dd5d8f8](https://github.com/GetStream/stream-video-js/commit/dd5d8f8d5c390a16ad35d7b5b4f0e8b254f0f5f6))
1165
+
1166
+ ## [1.9.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.13...@stream-io/video-react-native-sdk-1.9.14) (2025-01-29)
1167
+
1168
+ ### Bug Fixes
1169
+
1170
+ - add callkit audio methods for expo ([#1659](https://github.com/GetStream/stream-video-js/issues/1659)) ([89a53ec](https://github.com/GetStream/stream-video-js/commit/89a53ece63f7f6f4f4275d4697052a86fdad8a79))
1171
+
1172
+ ## [1.9.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.12...@stream-io/video-react-native-sdk-1.9.13) (2025-01-29)
1173
+
1174
+ ### Bug Fixes
1175
+
1176
+ - rare crash - startForegroundService() did not then call Service.startForeground ([71d11de](https://github.com/GetStream/stream-video-js/commit/71d11de31612f04d4852fccd655e0e39ad2defdf))
1177
+
1178
+ ## [1.9.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.11...@stream-io/video-react-native-sdk-1.9.12) (2025-01-29)
1179
+
1180
+ ### Dependency Updates
1181
+
1182
+ - `@stream-io/video-client` updated to version `1.15.7`
1183
+ - `@stream-io/video-react-bindings` updated to version `1.4.7`
1184
+
1185
+ ## [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)
1186
+
1187
+ ### Dependency Updates
1188
+
1189
+ - `@stream-io/video-client` updated to version `1.15.6`
1190
+ - `@stream-io/video-react-bindings` updated to version `1.4.6`
1191
+
1192
+ ## [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)
1193
+
1194
+ ### Dependency Updates
1195
+
1196
+ - `@stream-io/video-client` updated to version `1.15.5`
1197
+ - `@stream-io/video-react-bindings` updated to version `1.4.5`
1198
+
1199
+ ## [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)
1200
+
1201
+ ### Dependency Updates
1202
+
1203
+ - `@stream-io/video-client` updated to version `1.15.4`
1204
+ - `@stream-io/video-react-bindings` updated to version `1.4.4`
1205
+
1206
+ ## [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)
1207
+
1208
+ ### Bug Fixes
1209
+
1210
+ - unnecessary reject from callkeep ([15aaa0d](https://github.com/GetStream/stream-video-js/commit/15aaa0d79a9d608eff801a2eb1dd913fff19dfd3))
1211
+
1212
+ ## [1.9.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.6...@stream-io/video-react-native-sdk-1.9.7) (2025-01-22)
1213
+
1214
+ ### Bug Fixes
1215
+
1216
+ - do not reject from callkit if call is accepted already ([#1651](https://github.com/GetStream/stream-video-js/issues/1651)) ([87b76ba](https://github.com/GetStream/stream-video-js/commit/87b76ba54defc287a259c6d83bfde252b503f199))
1217
+
1218
+ ## [1.9.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.5...@stream-io/video-react-native-sdk-1.9.6) (2025-01-22)
1219
+
1220
+ ### Bug Fixes
1221
+
1222
+ - pip android crash on activity not enabled ([#1650](https://github.com/GetStream/stream-video-js/issues/1650)) ([013853b](https://github.com/GetStream/stream-video-js/commit/013853b11d83c9959dfc6805e1be492d0b1d36f5))
1223
+
1224
+ ## [1.9.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.4...@stream-io/video-react-native-sdk-1.9.5) (2025-01-21)
1225
+
1226
+ ### Dependency Updates
1227
+
1228
+ - `@stream-io/video-client` updated to version `1.15.3`
1229
+ - `@stream-io/video-react-bindings` updated to version `1.4.3`
1230
+
1231
+ ## [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)
1232
+
1233
+ ### Dependency Updates
1234
+
1235
+ - `@stream-io/video-client` updated to version `1.15.2`
1236
+ - `@stream-io/video-react-bindings` updated to version `1.4.2`
1237
+
1238
+ ## [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)
1239
+
1240
+ ### Bug Fixes
1241
+
1242
+ - ios 18 pip support ([#1646](https://github.com/GetStream/stream-video-js/issues/1646)) ([242bd1f](https://github.com/GetStream/stream-video-js/commit/242bd1fe08381805a24cc8d17671dd009b79cb09)), closes [#1647](https://github.com/GetStream/stream-video-js/issues/1647)
1243
+
1244
+ ## [1.9.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.1...@stream-io/video-react-native-sdk-1.9.2) (2025-01-17)
1245
+
1246
+ ### Bug Fixes
1247
+
1248
+ - **rn-sdk:** fixes the camera status on app restore from background ([#1641](https://github.com/GetStream/stream-video-js/issues/1641)) ([0ff2506](https://github.com/GetStream/stream-video-js/commit/0ff2506de4d3db30a86ab27ee8dcfaa2fe8f0ddc))
1249
+
1250
+ ## [1.9.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.9.0...@stream-io/video-react-native-sdk-1.9.1) (2025-01-16)
1251
+
1252
+ ### Dependency Updates
1253
+
1254
+ - `@stream-io/video-client` updated to version `1.15.1`
1255
+ - `@stream-io/video-react-bindings` updated to version `1.4.1`
1256
+
1257
+ ## [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)
1258
+
1259
+ ### Features
1260
+
1261
+ - android 12+ pip uses setAutoEnterEnabled api ([#1643](https://github.com/GetStream/stream-video-js/issues/1643)) ([b07a9a6](https://github.com/GetStream/stream-video-js/commit/b07a9a6a2d97fded37161cfbabc4d9a73baae26a))
1262
+
1263
+ ## [1.8.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.7.0...@stream-io/video-react-native-sdk-1.8.0) (2025-01-15)
1264
+
1265
+ ### Dependency Updates
1266
+
1267
+ - `@stream-io/video-client` updated to version `1.15.0`
1268
+ - `@stream-io/video-react-bindings` updated to version `1.4.0`
1269
+ - `@stream-io/video-filters-react-native` updated to version `0.2.6`
1270
+
1271
+ ### Features
1272
+
1273
+ - Codec Negotiation ([#1527](https://github.com/GetStream/stream-video-js/issues/1527)) ([2e9e344](https://github.com/GetStream/stream-video-js/commit/2e9e344d5259e3069dddb17846013becef24829e))
1274
+
1275
+ ## [1.7.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.6.1...@stream-io/video-react-native-sdk-1.7.0) (2025-01-08)
1276
+
1277
+ ### Features
1278
+
1279
+ - update peer deps and sample app to webrtc v125 ([#1638](https://github.com/GetStream/stream-video-js/issues/1638)) ([2b9074f](https://github.com/GetStream/stream-video-js/commit/2b9074f8fdb857699fa5fa429be424dc0496363e))
1280
+
1281
+ ## [1.6.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.6.0...@stream-io/video-react-native-sdk-1.6.1) (2025-01-06)
1282
+
1283
+ - **rn-video:** upgrade to expo ver 52 ([#1630](https://github.com/GetStream/stream-video-js/issues/1630)) ([7eec9b0](https://github.com/GetStream/stream-video-js/commit/7eec9b0616a6c8f397a00d0c48da8932fd2b7dfc))
1284
+
1285
+ ### Bug Fixes
1286
+
1287
+ - foreground service cannot be started in background exception ([#1635](https://github.com/GetStream/stream-video-js/issues/1635)) ([bb82021](https://github.com/GetStream/stream-video-js/commit/bb820214b85e08c7be726e0da27b6739681e07e2))
1288
+
1289
+ ## [1.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.5.2...@stream-io/video-react-native-sdk-1.6.0) (2025-01-02)
1290
+
1291
+ ### Dependency Updates
1292
+
1293
+ - `@stream-io/video-client` updated to version `1.14.0`
1294
+ - `@stream-io/video-react-bindings` updated to version `1.3.0`
1295
+
1296
+ ### Features
1297
+
1298
+ - **closed captions:** Integration in the SDKs ([#1508](https://github.com/GetStream/stream-video-js/issues/1508)) ([bcb8589](https://github.com/GetStream/stream-video-js/commit/bcb85892c0dafcb03f9debf8d2fd361622224166))
1299
+
1300
+ ## [1.5.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.5.1...@stream-io/video-react-native-sdk-1.5.2) (2024-12-31)
1301
+
1302
+ ### Bug Fixes
1303
+
1304
+ - iOS thermal state issue ([#1633](https://github.com/GetStream/stream-video-js/issues/1633)) ([3d2a4c4](https://github.com/GetStream/stream-video-js/commit/3d2a4c42a4de2eb0e8f43586c6d4b0aaed1d34e4))
1305
+
1306
+ ## [1.5.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.5.0...@stream-io/video-react-native-sdk-1.5.1) (2024-12-20)
1307
+
1308
+ ### Dependency Updates
1309
+
1310
+ - `@stream-io/video-client` updated to version `1.13.1`
1311
+ - `@stream-io/video-react-bindings` updated to version `1.2.16`
1312
+
1313
+ ## [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)
1314
+
1315
+ ### Dependency Updates
1316
+
1317
+ - `@stream-io/video-client` updated to version `1.13.0`
1318
+ - `@stream-io/video-react-bindings` updated to version `1.2.15`
1319
+
1320
+ ### Features
1321
+
1322
+ - report low power mode and thermal info to stats ([#1583](https://github.com/GetStream/stream-video-js/issues/1583)) ([ef49cee](https://github.com/GetStream/stream-video-js/commit/ef49ceef032fc3e4bb055fbc32c2b5b18c3a24d2))
1323
+
1324
+ ## [1.4.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.21...@stream-io/video-react-native-sdk-1.4.22) (2024-12-19)
1325
+
1326
+ ### Bug Fixes
1327
+
1328
+ - **rn-video:** highlightedContainer prop typo ([#1627](https://github.com/GetStream/stream-video-js/issues/1627)) ([56d9137](https://github.com/GetStream/stream-video-js/commit/56d9137514701b9313a6ea9ee8ba2f6ff2f61209))
1329
+
1330
+ ## [1.4.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.20...@stream-io/video-react-native-sdk-1.4.21) (2024-12-17)
1331
+
1332
+ ### Dependency Updates
1333
+
1334
+ - `@stream-io/video-client` updated to version `1.12.4`
1335
+ - `@stream-io/video-react-bindings` updated to version `1.2.14`
1336
+
1337
+ ## [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)
1338
+
1339
+ ### Bug Fixes
1340
+
1341
+ - **expo:** tools not present when notifee service is added ([edccf62](https://github.com/GetStream/stream-video-js/commit/edccf62261183198871f3962ef19650ed4fc1729))
1342
+
1343
+ ## [1.4.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.18...@stream-io/video-react-native-sdk-1.4.19) (2024-12-16)
1344
+
1345
+ ### Bug Fixes
1346
+
1347
+ - **rn:** break cyclic dependencies issue ([#1626](https://github.com/GetStream/stream-video-js/issues/1626)) ([ef30579](https://github.com/GetStream/stream-video-js/commit/ef3057949648581a5e17775661c859f693191f92))
1348
+
1349
+ ## [1.4.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.17...@stream-io/video-react-native-sdk-1.4.18) (2024-12-16)
1350
+
1351
+ ### Bug Fixes
1352
+
1353
+ - metro commonjs issues with optional libs ([#1625](https://github.com/GetStream/stream-video-js/issues/1625)) ([78b5f05](https://github.com/GetStream/stream-video-js/commit/78b5f050c20c67f77c154a8fd5d1c4e59b72989f)), closes [#1620](https://github.com/GetStream/stream-video-js/issues/1620)
1354
+
1355
+ ## [1.4.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.16...@stream-io/video-react-native-sdk-1.4.17) (2024-12-13)
1356
+
1357
+ ### Bug Fixes
1358
+
1359
+ - **rn-sdk:** allow prop component ParticipantVideoFallback in FloatingParticipantView ([#1623](https://github.com/GetStream/stream-video-js/issues/1623)) ([d69ee13](https://github.com/GetStream/stream-video-js/commit/d69ee13f6fc882c006e3948c359ea8946c2a92f0))
1360
+
1361
+ ## [1.4.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.15...@stream-io/video-react-native-sdk-1.4.16) (2024-12-13)
1362
+
1363
+ ### Dependency Updates
1364
+
1365
+ - `@stream-io/video-client` updated to version `1.12.3`
1366
+ - `@stream-io/video-react-bindings` updated to version `1.2.13`
1367
+
1368
+ ### Bug Fixes
1369
+
1370
+ - multiple rare ringing issues in react-native ([#1611](https://github.com/GetStream/stream-video-js/issues/1611)) ([4e25264](https://github.com/GetStream/stream-video-js/commit/4e25264808eab469b7b7ab184fb19961d47bdff3))
1371
+
1372
+ ## [1.4.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.14...@stream-io/video-react-native-sdk-1.4.15) (2024-12-11)
1373
+
1374
+ ### Dependency Updates
1375
+
1376
+ - `@stream-io/video-client` updated to version `1.12.2`
1377
+ - `@stream-io/video-react-bindings` updated to version `1.2.12`
1378
+
1379
+ - drop docusaurus docs ([#1613](https://github.com/GetStream/stream-video-js/issues/1613)) ([8743c8d](https://github.com/GetStream/stream-video-js/commit/8743c8d221191759266010c6cd053480da1d71a5))
1380
+
1381
+ ## [1.4.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.13...@stream-io/video-react-native-sdk-1.4.14) (2024-12-11)
1382
+
1383
+ ### Dependency Updates
1384
+
1385
+ - `@stream-io/video-client` updated to version `1.12.1`
1386
+ - `@stream-io/video-react-bindings` updated to version `1.2.11`
1387
+
1388
+ ## [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)
1389
+
1390
+ ### Dependency Updates
1391
+
1392
+ - `@stream-io/video-client` updated to version `1.12.0`
1393
+ - `@stream-io/video-react-bindings` updated to version `1.2.10`
1394
+
1395
+ ## [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)
1396
+
1397
+ ### Dependency Updates
1398
+
1399
+ - `@stream-io/video-client` updated to version `1.11.15`
1400
+ - `@stream-io/video-react-bindings` updated to version `1.2.9`
1401
+
1402
+ ## [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)
1403
+
1404
+ ### Dependency Updates
1405
+
1406
+ - `@stream-io/video-client` updated to version `1.11.14`
1407
+ - `@stream-io/video-react-bindings` updated to version `1.2.8`
1408
+
1409
+ ## [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)
1410
+
1411
+ ### Bug Fixes
1412
+
1413
+ - remove cameraroll permissions ([#1610](https://github.com/GetStream/stream-video-js/issues/1610)) ([973d00e](https://github.com/GetStream/stream-video-js/commit/973d00ec73381211cd42711e2d76625f69b93a7c))
1414
+
1415
+ ## [1.4.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.8...@stream-io/video-react-native-sdk-1.4.9) (2024-12-03)
1416
+
1417
+ ### Dependency Updates
1418
+
1419
+ - `@stream-io/video-client` updated to version `1.11.13`
1420
+ - `@stream-io/video-react-bindings` updated to version `1.2.7`
1421
+
1422
+ ## [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)
1423
+
1424
+ ### Dependency Updates
1425
+
1426
+ - `@stream-io/video-client` updated to version `1.11.12`
1427
+ - `@stream-io/video-react-bindings` updated to version `1.2.6`
1428
+
1429
+ ## [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)
1430
+
1431
+ ### Dependency Updates
1432
+
1433
+ - `@stream-io/video-client` updated to version `1.11.11`
1434
+ - `@stream-io/video-react-bindings` updated to version `1.2.5`
1435
+
1436
+ ## [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)
1437
+
1438
+ ### Bug Fixes
1439
+
1440
+ - call joining, dominant speaker for pip android, spotlight layout for tablets ([#1603](https://github.com/GetStream/stream-video-js/issues/1603)) ([68ba86b](https://github.com/GetStream/stream-video-js/commit/68ba86b8c940b9559cdfba2db926afe707864a81))
1441
+
1442
+ ## [1.4.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.4...@stream-io/video-react-native-sdk-1.4.5) (2024-11-28)
1443
+
1444
+ ### Dependency Updates
1445
+
1446
+ - `@stream-io/video-client` updated to version `1.11.10`
1447
+ - `@stream-io/video-react-bindings` updated to version `1.2.4`
1448
+
1449
+ ## [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)
1450
+
1451
+ ### Dependency Updates
1452
+
1453
+ - `@stream-io/video-client` updated to version `1.11.9`
1454
+ - `@stream-io/video-react-bindings` updated to version `1.2.3`
1455
+
1456
+ ## [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)
1457
+
1458
+ ### Dependency Updates
1459
+
1460
+ - `@stream-io/video-client` updated to version `1.11.8`
1461
+ - `@stream-io/video-react-bindings` updated to version `1.2.2`
1462
+
1463
+ ## [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)
1464
+
1465
+ ### Bug Fixes
1466
+
1467
+ - disable join call button to prevent multiple call joins ([#1602](https://github.com/GetStream/stream-video-js/issues/1602)) ([9079217](https://github.com/GetStream/stream-video-js/commit/9079217ab7cc5a87a948059d206c334433c7da8f))
1468
+
1469
+ ## [1.4.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.4.0...@stream-io/video-react-native-sdk-1.4.1) (2024-11-26)
1470
+
1471
+ ### Dependency Updates
1472
+
1473
+ - `@stream-io/video-client` updated to version `1.11.7`
1474
+ - `@stream-io/video-react-bindings` updated to version `1.2.1`
1475
+
1476
+ ## [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)
1477
+
1478
+ ### Dependency Updates
1479
+
1480
+ - `@stream-io/video-react-bindings` updated to version `1.2.0`
1481
+
1482
+ ### Features
1483
+
1484
+ - **design-v2:** sdk and dogfood app design-v2 changes ([#1549](https://github.com/GetStream/stream-video-js/issues/1549)) ([480a359](https://github.com/GetStream/stream-video-js/commit/480a3593516e6662b35a44f97c72259548d08445))
1485
+
1486
+ ## [1.3.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.7...@stream-io/video-react-native-sdk-1.3.8) (2024-11-22)
1487
+
1488
+ ### Dependency Updates
1489
+
1490
+ - `@stream-io/video-client` updated to version `1.11.6`
1491
+ - `@stream-io/video-react-bindings` updated to version `1.1.23`
1492
+
1493
+ ## [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)
1494
+
1495
+ ### Dependency Updates
1496
+
1497
+ - `@stream-io/video-client` updated to version `1.11.5`
1498
+ - `@stream-io/video-react-bindings` updated to version `1.1.22`
1499
+
1500
+ ## [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)
1501
+
1502
+ ### Dependency Updates
1503
+
1504
+ - `@stream-io/video-client` updated to version `1.11.4`
1505
+ - `@stream-io/video-react-bindings` updated to version `1.1.21`
1506
+
1507
+ ## [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)
1508
+
1509
+ ### Dependency Updates
1510
+
1511
+ - `@stream-io/video-filters-react-native` updated to version `0.2.5`
1512
+
1513
+ ## [1.3.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.3...@stream-io/video-react-native-sdk-1.3.4) (2024-11-20)
1514
+
1515
+ ### Dependency Updates
1516
+
1517
+ - `@stream-io/video-client` updated to version `1.11.3`
1518
+ - `@stream-io/video-react-bindings` updated to version `1.1.20`
1519
+
1520
+ ## [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)
1521
+
1522
+ ### Bug Fixes
1523
+
1524
+ - use foreground service to keep call alive ([#1580](https://github.com/GetStream/stream-video-js/issues/1580)) ([22bc042](https://github.com/GetStream/stream-video-js/commit/22bc042a629508c8b2536d4b448308b1d8ec1d47))
1525
+
1526
+ ## [1.3.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.3.1...@stream-io/video-react-native-sdk-1.3.2) (2024-11-14)
1527
+
1528
+ ### Dependency Updates
1529
+
1530
+ - `@stream-io/video-client` updated to version `1.11.2`
1531
+ - `@stream-io/video-react-bindings` updated to version `1.1.19`
1532
+
1533
+ ## [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)
1534
+
1535
+ ### Dependency Updates
1536
+
1537
+ - `@stream-io/video-client` updated to version `1.11.1`
1538
+ - `@stream-io/video-react-bindings` updated to version `1.1.18`
1539
+
1540
+ ### Bug Fixes
1541
+
1542
+ - reject was not called on timeout, decline and cancel scenarios ([#1576](https://github.com/GetStream/stream-video-js/issues/1576)) ([8be76a4](https://github.com/GetStream/stream-video-js/commit/8be76a447729aeba7f5c68f8a9bb85b4738cb76d))
1543
+
1544
+ ## [1.3.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.15...@stream-io/video-react-native-sdk-1.3.0) (2024-11-13)
1545
+
1546
+ ### Features
1547
+
1548
+ - make push notification listeners more flexible for easier debugging ([#1542](https://github.com/GetStream/stream-video-js/issues/1542)) ([75a90e6](https://github.com/GetStream/stream-video-js/commit/75a90e6239365309c83bfebfcff491b4d0046d8b)), closes [#1447](https://github.com/GetStream/stream-video-js/issues/1447)
1549
+
1550
+ ## [1.2.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.14...@stream-io/video-react-native-sdk-1.2.15) (2024-11-13)
1551
+
1552
+ ### Dependency Updates
1553
+
1554
+ - `@stream-io/video-client` updated to version `1.11.0`
1555
+ - `@stream-io/video-react-bindings` updated to version `1.1.17`
1556
+
1557
+ ## [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)
1558
+
1559
+ ### Dependency Updates
1560
+
1561
+ - `@stream-io/video-client` updated to version `1.10.5`
1562
+ - `@stream-io/video-react-bindings` updated to version `1.1.16`
1563
+
1564
+ ## [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)
1565
+
1566
+ ### Dependency Updates
1567
+
1568
+ - `@stream-io/video-client` updated to version `1.10.4`
1569
+ - `@stream-io/video-react-bindings` updated to version `1.1.15`
1570
+
1571
+ ## [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)
1572
+
1573
+ ### Dependency Updates
1574
+
1575
+ - `@stream-io/video-client` updated to version `1.10.3`
1576
+ - `@stream-io/video-react-bindings` updated to version `1.1.14`
1577
+
1578
+ ## [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)
1579
+
1580
+ ### Bug Fixes
1581
+
1582
+ - share screen for alone participant on spotlight layout ([#1553](https://github.com/GetStream/stream-video-js/issues/1553)) ([660056a](https://github.com/GetStream/stream-video-js/commit/660056af56d7f2b9d09b5a834a8eb4b9cba48fba))
1583
+
1584
+ ## [1.2.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.9...@stream-io/video-react-native-sdk-1.2.10) (2024-11-01)
1585
+
1586
+ ### Dependency Updates
1587
+
1588
+ - `@stream-io/video-react-bindings` updated to version `1.1.13`
1589
+
1590
+ ## [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)
1591
+
1592
+ ### Dependency Updates
1593
+
1594
+ - `@stream-io/video-client` updated to version `1.10.2`
1595
+ - `@stream-io/video-react-bindings` updated to version `1.1.12`
1596
+
1597
+ ### Bug Fixes
1598
+
1599
+ - camera not enabled on foreground notifications ([#1546](https://github.com/GetStream/stream-video-js/issues/1546)) ([67c920a](https://github.com/GetStream/stream-video-js/commit/67c920ac4bca35a414b88f6c9829b08396a6260b))
1600
+
1601
+ ## [1.2.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.7...@stream-io/video-react-native-sdk-1.2.8) (2024-11-01)
1602
+
1603
+ ### Dependency Updates
1604
+
1605
+ - `@stream-io/video-react-bindings` updated to version `1.1.11`
1606
+
1607
+ ## [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)
1608
+
1609
+ ### Dependency Updates
1610
+
1611
+ - `@stream-io/video-client` updated to version `1.10.1`
1612
+ - `@stream-io/video-react-bindings` updated to version `1.1.10`
1613
+
1614
+ ## [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)
1615
+
1616
+ ### Dependency Updates
1617
+
1618
+ - `@stream-io/video-client` updated to version `1.10.0`
1619
+ - `@stream-io/video-react-bindings` updated to version `1.1.9`
1620
+
1621
+ ## [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)
1622
+
1623
+ ### Dependency Updates
1624
+
1625
+ - `@stream-io/video-client` updated to version `1.9.3`
1626
+ - `@stream-io/video-react-bindings` updated to version `1.1.8`
1627
+
1628
+ ## [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)
1629
+
1630
+ ### Bug Fixes
1631
+
1632
+ - added workaround for possible multiple createDevice calls on remounting ([#1532](https://github.com/GetStream/stream-video-js/issues/1532)) ([eb3afb4](https://github.com/GetStream/stream-video-js/commit/eb3afb4dc33289cde0639cc109194971d31f51e0))
1633
+
1634
+ ## [1.2.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.2.2...@stream-io/video-react-native-sdk-1.2.3) (2024-10-21)
1635
+
1636
+ ### Dependency Updates
1637
+
1638
+ - `@stream-io/video-client` updated to version `1.9.2`
1639
+ - `@stream-io/video-react-bindings` updated to version `1.1.7`
1640
+
1641
+ ## [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)
1642
+
1643
+ ### Dependency Updates
1644
+
1645
+ - `@stream-io/video-client` updated to version `1.9.1`
1646
+ - `@stream-io/video-react-bindings` updated to version `1.1.6`
1647
+
1648
+ ## [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)
1649
+
1650
+ ### Bug Fixes
1651
+
1652
+ - allow specifying publish options in PN config ([#1524](https://github.com/GetStream/stream-video-js/issues/1524)) ([a2ae74e](https://github.com/GetStream/stream-video-js/commit/a2ae74e8097bf1e58d040e4a7696ecadfc435843)), closes [#1434](https://github.com/GetStream/stream-video-js/issues/1434)
1653
+
1654
+ ## [1.2.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.6...@stream-io/video-react-native-sdk-1.2.0) (2024-10-16)
1655
+
1656
+ ### Dependency Updates
1657
+
1658
+ - `@stream-io/video-client` updated to version `1.9.0`
1659
+ - `@stream-io/video-react-bindings` updated to version `1.1.5`
1660
+
1661
+ ### Features
1662
+
1663
+ - **svc-codec:** VP9 and AV1 support ([#1434](https://github.com/GetStream/stream-video-js/issues/1434)) ([c9c8530](https://github.com/GetStream/stream-video-js/commit/c9c8530d48c9206dc3803e6aa6cc1859fd433920))
1664
+
1665
+ ## [1.1.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.5...@stream-io/video-react-native-sdk-1.1.6) (2024-10-16)
1666
+
1667
+ ### Dependency Updates
1668
+
1669
+ - `@stream-io/video-client` updated to version `1.8.4`
1670
+ - `@stream-io/video-react-bindings` updated to version `1.1.4`
1671
+
1672
+ ## [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)
1673
+
1674
+ ### Bug Fixes
1675
+
1676
+ - **react-native:** set objectFit based on actual video track dimensions ([#1520](https://github.com/GetStream/stream-video-js/issues/1520)) ([44ef7d2](https://github.com/GetStream/stream-video-js/commit/44ef7d2e69a910be45b2d3a7643c3f58e0f29803))
1677
+
1678
+ ## [1.1.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.1.3...@stream-io/video-react-native-sdk-1.1.4) (2024-10-10)
1679
+
1680
+ ### Dependency Updates
1681
+
1682
+ - `@stream-io/video-client` updated to version `1.8.3`
1683
+ - `@stream-io/video-react-bindings` updated to version `1.1.3`
1684
+
1685
+ ## [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)
1686
+
1687
+ ### Dependency Updates
1688
+
1689
+ - `@stream-io/video-client` updated to version `1.8.2`
1690
+ - `@stream-io/video-react-bindings` updated to version `1.1.2`
1691
+
1692
+ ## [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)
1693
+
1694
+ ### Dependency Updates
1695
+
1696
+ - `@stream-io/video-client` updated to version `1.8.1`
1697
+ - `@stream-io/video-react-bindings` updated to version `1.1.1`
1698
+
1699
+ ## [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)
1700
+
1701
+ ### Bug Fixes
1702
+
1703
+ - clarify about USE_FULL_SCREEN_INTENT android permission ([#1510](https://github.com/GetStream/stream-video-js/issues/1510)) ([ec61b32](https://github.com/GetStream/stream-video-js/commit/ec61b32449c89885b87fe972a38d25503bab0c0f))
1704
+
1705
+ ## [1.1.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.14...@stream-io/video-react-native-sdk-1.1.0) (2024-10-02)
1706
+
1707
+ ### Dependency Updates
1708
+
1709
+ - `@stream-io/video-client` updated to version `1.8.0`
1710
+ - `@stream-io/video-react-bindings` updated to version `1.1.0`
1711
+
1712
+ ### Features
1713
+
1714
+ - manual video quality selection ([#1486](https://github.com/GetStream/stream-video-js/issues/1486)) ([3a754af](https://github.com/GetStream/stream-video-js/commit/3a754afa1bd13d038b1023520ec8a5296ad2669e))
1715
+
1716
+ ## [1.0.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.13...@stream-io/video-react-native-sdk-1.0.14) (2024-10-02)
1717
+
1718
+ ### Dependency Updates
1719
+
1720
+ - `@stream-io/video-client` updated to version `1.7.4`
1721
+ - `@stream-io/video-react-bindings` updated to version `1.0.10`
1722
+
1723
+ ## [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)
1724
+
1725
+ ### Dependency Updates
1726
+
1727
+ - `@stream-io/video-client` updated to version `1.7.3`
1728
+ - `@stream-io/video-react-bindings` updated to version `1.0.9`
1729
+
1730
+ ## [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)
1731
+
1732
+ ### Dependency Updates
1733
+
1734
+ - `@stream-io/video-client` updated to version `1.7.2`
1735
+ - `@stream-io/video-react-bindings` updated to version `1.0.8`
1736
+
1737
+ ## [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)
1738
+
1739
+ ### Dependency Updates
1740
+
1741
+ - `@stream-io/video-client` updated to version `1.7.1`
1742
+ - `@stream-io/video-react-bindings` updated to version `1.0.7`
1743
+
1744
+ - `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))
1745
+
1746
+ ## [1.0.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.9...@stream-io/video-react-native-sdk-1.0.10) (2024-09-19)
1747
+
1748
+ ### Dependency Updates
1749
+
1750
+ - `@stream-io/video-client` updated to version `1.7.0`
1751
+ - `@stream-io/video-react-bindings` updated to version `1.0.6`
1752
+
1753
+ ## [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)
1754
+
1755
+ ### Dependency Updates
1756
+
1757
+ - `@stream-io/video-client` updated to version `1.6.5`
1758
+ - `@stream-io/video-react-bindings` updated to version `1.0.5`
1759
+
1760
+ ## [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)
1761
+
1762
+ ### Dependency Updates
1763
+
1764
+ - `@stream-io/video-client` updated to version `1.6.4`
1765
+ - `@stream-io/video-react-bindings` updated to version `1.0.4`
1766
+
1767
+ ## [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)
1768
+
1769
+ ### Bug Fixes
1770
+
1771
+ - replace dataSync with shortService for android foreground service type ([#1485](https://github.com/GetStream/stream-video-js/issues/1485)) ([2681535](https://github.com/GetStream/stream-video-js/commit/26815357f66b43f94e1d939fb30a6cdb85c77a5f))
1772
+
1773
+ ## [1.0.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.5...@stream-io/video-react-native-sdk-1.0.6) (2024-09-11)
1774
+
1775
+ ### Dependency Updates
1776
+
1777
+ - `@stream-io/video-client` updated to version `1.6.3`
1778
+ - `@stream-io/video-react-bindings` updated to version `1.0.3`
1779
+
1780
+ ## [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)
1781
+
1782
+ ### Dependency Updates
1783
+
1784
+ - `@stream-io/video-filters-react-native` updated to version `0.2.4`
1785
+
1786
+ ### Bug Fixes
1787
+
1788
+ - broken ios autolinking on react native 0.68 ([#1483](https://github.com/GetStream/stream-video-js/issues/1483)) ([734a361](https://github.com/GetStream/stream-video-js/commit/734a3615bc185fc17c7d7afc812c662a9bec92e7))
1789
+
1790
+ ## [1.0.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.3...@stream-io/video-react-native-sdk-1.0.4) (2024-09-09)
1791
+
1792
+ ### Dependency Updates
1793
+
1794
+ - `@stream-io/video-client` updated to version `1.6.2`
1795
+ - `@stream-io/video-react-bindings` updated to version `1.0.2`
1796
+
1797
+ ## [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)
1798
+
1799
+ ### Dependency Updates
1800
+
1801
+ - `@stream-io/video-filters-react-native` updated to version `0.2.3`
1802
+
1803
+ ### Bug Fixes
1804
+
1805
+ - set min ios version to 13.0 for the podspecs ([b6d8c16](https://github.com/GetStream/stream-video-js/commit/b6d8c163b66f75e12d0316abe46eebc6b017c29a))
1806
+
1807
+ ## [1.0.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-1.0.1...@stream-io/video-react-native-sdk-1.0.2) (2024-09-05)
1808
+
1809
+ ### Dependency Updates
1810
+
1811
+ - `@stream-io/video-client` updated to version `1.6.1`
1812
+ - `@stream-io/video-react-bindings` updated to version `1.0.1`
1813
+
1814
+ ## [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)
1815
+
1816
+ ### Dependency Updates
1817
+
1818
+ - `@stream-io/video-filters-react-native` updated to version `0.2.2`
1819
+
1820
+ - reset releaseAs tags [skip ci] ([6161687](https://github.com/GetStream/stream-video-js/commit/61616870178d6bbc29b22ca3b1a354e5e172c9c3))
1821
+
1822
+ ### Bug Fixes
1823
+
1824
+ - **ios:** if min ios version is not present default to 12 ([9279d59](https://github.com/GetStream/stream-video-js/commit/9279d59e861a51c723a0f17229c39dae946ee664))
1825
+
1826
+ ## [1.0.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.6...@stream-io/video-react-native-sdk-1.0.0) (2024-09-03)
1827
+
1828
+ - **@stream-io/video-react-native-sdk:** release version 1.0.0 ([c990e7a](https://github.com/GetStream/stream-video-js/commit/c990e7a3132c5ee2ddcc707d8a4759c5a08fd3ef))
1829
+
1830
+ ### Features
1831
+
1832
+ - Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
1833
+
1834
+ ## [1.0.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.6...@stream-io/video-react-native-sdk-1.0.0) (2024-09-03)
1835
+
1836
+ ### Features
1837
+
1838
+ - Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
1839
+
1840
+ ### [0.10.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.5...@stream-io/video-react-native-sdk-0.10.6) (2024-09-03)
1841
+
1842
+ ### Bug Fixes
1843
+
1844
+ - ios build after pip addition was only as a static framework ([#1473](https://github.com/GetStream/stream-video-js/issues/1473)) ([582fbc9](https://github.com/GetStream/stream-video-js/commit/582fbc921070368fde446ae666ef366eb3d46177)), closes [#1470](https://github.com/GetStream/stream-video-js/issues/1470)
1845
+
1846
+ ### [0.10.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.4...@stream-io/video-react-native-sdk-0.10.5) (2024-08-28)
1847
+
1848
+ ### Features
1849
+
1850
+ - PiP mode support on iOS ([#1469](https://github.com/GetStream/stream-video-js/issues/1469)) ([3a76378](https://github.com/GetStream/stream-video-js/commit/3a76378a3e663aa8bc23d801c6ac695d65ee77c6))
1851
+
1852
+ ### [0.10.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.3...@stream-io/video-react-native-sdk-0.10.4) (2024-08-23)
1853
+
1854
+ ### Dependency Updates
1855
+
1856
+ - `@stream-io/video-client` updated to version `1.5.2`
1857
+ - `@stream-io/video-react-bindings` updated to version `0.4.55`
1858
+
1859
+ ### [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)
1860
+
1861
+ ### Dependency Updates
1862
+
1863
+ - `@stream-io/video-client` updated to version `1.5.1`
1864
+ - `@stream-io/video-react-bindings` updated to version `0.4.54`
1865
+
1866
+ ### [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)
1867
+
1868
+ ### Dependency Updates
1869
+
1870
+ - `@stream-io/video-client` updated to version `1.5.0`
1871
+ - `@stream-io/video-react-bindings` updated to version `0.4.53`
1872
+
1873
+ ### Features
1874
+
1875
+ - **client:** add a instance getter ([#1461](https://github.com/GetStream/stream-video-js/issues/1461)) ([7f4d836](https://github.com/GetStream/stream-video-js/commit/7f4d836511d9afdcd61bf5c6317611d3725953a6))
1876
+
1877
+ ### [0.10.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.10.0...@stream-io/video-react-native-sdk-0.10.1) (2024-08-14)
1878
+
1879
+ ### Bug Fixes
1880
+
1881
+ - push notifications not dismissed automatically on android 8 and above ([18718e6](https://github.com/GetStream/stream-video-js/commit/18718e637265e02510a3d01a35be37e9a18d5117))
1882
+
1883
+ ## [0.10.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.7...@stream-io/video-react-native-sdk-0.10.0) (2024-08-08)
1884
+
1885
+ ### ⚠ BREAKING CHANGES
1886
+
1887
+ - **react-native:** make notifee to be optional (#1456)
1888
+
1889
+ ### Bug Fixes
1890
+
1891
+ - **react-native:** make notifee to be optional ([#1456](https://github.com/GetStream/stream-video-js/issues/1456)) ([0b3f787](https://github.com/GetStream/stream-video-js/commit/0b3f7876c82a8873901bc1bc77a17f6f98825166))
1892
+
1893
+ ### [0.9.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.6...@stream-io/video-react-native-sdk-0.9.7) (2024-08-06)
1894
+
1895
+ ### Bug Fixes
1896
+
1897
+ - added workaround for android where video doesn't resume when resuming app from lock screen ([#1454](https://github.com/GetStream/stream-video-js/issues/1454)) ([b112506](https://github.com/GetStream/stream-video-js/commit/b1125069b24c3bbbf0191582ba27ff841a0cd9f8))
1898
+
1899
+ ### [0.9.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.5...@stream-io/video-react-native-sdk-0.9.6) (2024-07-31)
1900
+
1901
+ ### Dependency Updates
1902
+
1903
+ - `@stream-io/video-client` updated to version `1.4.8`
1904
+ - `@stream-io/video-react-bindings` updated to version `0.4.52`
1905
+
1906
+ ### [0.9.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.4...@stream-io/video-react-native-sdk-0.9.5) (2024-07-30)
1907
+
1908
+ ### Dependency Updates
1909
+
1910
+ - `@stream-io/video-client` updated to version `1.4.7`
1911
+ - `@stream-io/video-react-bindings` updated to version `0.4.51`
1912
+
1913
+ ### Bug Fixes
1914
+
1915
+ - ringing state issues when call was already ended ([#1451](https://github.com/GetStream/stream-video-js/issues/1451)) ([4a3556e](https://github.com/GetStream/stream-video-js/commit/4a3556e0f7b0bd58d0022cc635aa4391014063d7))
1916
+
1917
+ ### [0.9.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.3...@stream-io/video-react-native-sdk-0.9.4) (2024-07-25)
1918
+
1919
+ ### Dependency Updates
1920
+
1921
+ - `@stream-io/video-client` updated to version `1.4.6`
1922
+ - `@stream-io/video-react-bindings` updated to version `0.4.50`
1923
+
1924
+ ### Bug Fixes
1925
+
1926
+ - allow reusing call instances after leaving ([#1433](https://github.com/GetStream/stream-video-js/issues/1433)) ([61e05af](https://github.com/GetStream/stream-video-js/commit/61e05af25c441b7db9db16166a6b4eca20ec7748))
1927
+
1928
+ ### [0.9.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.2...@stream-io/video-react-native-sdk-0.9.3) (2024-07-24)
1929
+
1930
+ ### Bug Fixes
1931
+
1932
+ - incoming call notifications not removed on call.leave on android 8 and above ([4000f8a](https://github.com/GetStream/stream-video-js/commit/4000f8a06299fc056b135992eba5d745c9202289))
1933
+
1934
+ ### [0.9.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.1...@stream-io/video-react-native-sdk-0.9.2) (2024-07-12)
1935
+
1936
+ ### Dependency Updates
1937
+
1938
+ - `@stream-io/video-client` updated to version `1.4.5`
1939
+ - `@stream-io/video-react-bindings` updated to version `0.4.49`
1940
+
1941
+ ### [0.9.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.9.0...@stream-io/video-react-native-sdk-0.9.1) (2024-07-05)
1942
+
1943
+ ### Bug Fixes
1944
+
1945
+ - **react-native:** ringing call content component did not handle reconnection state ([#1435](https://github.com/GetStream/stream-video-js/issues/1435)) ([a4a50b7](https://github.com/GetStream/stream-video-js/commit/a4a50b74e525324618681b273df998c4478068c6))
1946
+
1947
+ ## [0.9.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.9...@stream-io/video-react-native-sdk-0.9.0) (2024-07-05)
1948
+
1949
+ ### ⚠ BREAKING CHANGES
1950
+
1951
+ - **react-native:** support targetSdk android 14 (#1432)
1952
+
1953
+ ### Features
1954
+
1955
+ - **react-native:** support targetSdk android 14 ([#1432](https://github.com/GetStream/stream-video-js/issues/1432)) ([2e98fbe](https://github.com/GetStream/stream-video-js/commit/2e98fbe5000161088030d553fc38cd5243327dd1))
1956
+
1957
+ ### [0.8.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.8...@stream-io/video-react-native-sdk-0.8.9) (2024-07-02)
1958
+
1959
+ ### Dependency Updates
1960
+
1961
+ - `@stream-io/video-client` updated to version `1.4.4`
1962
+ - `@stream-io/video-react-bindings` updated to version `0.4.48`
1963
+
1964
+ ### [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)
1965
+
1966
+ ### Features
1967
+
1968
+ - **react-native:** enable android 14 compatibility for screensharing foreground service ([#1425](https://github.com/GetStream/stream-video-js/issues/1425)) ([f41aa10](https://github.com/GetStream/stream-video-js/commit/f41aa100b4a5f3ea72a3628407a5d101e9aea342))
1969
+
1970
+ ### [0.8.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.6...@stream-io/video-react-native-sdk-0.8.7) (2024-06-25)
1971
+
1972
+ ### Dependency Updates
1973
+
1974
+ - `@stream-io/video-client` updated to version `1.4.3`
1975
+ - `@stream-io/video-react-bindings` updated to version `0.4.47`
1976
+
1977
+ ### [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)
1978
+
1979
+ ### Dependency Updates
1980
+
1981
+ - `@stream-io/video-client` updated to version `1.4.2`
1982
+ - `@stream-io/video-react-bindings` updated to version `0.4.46`
1983
+
1984
+ ### [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)
1985
+
1986
+ ### Dependency Updates
1987
+
1988
+ - `@stream-io/video-client` updated to version `1.4.1`
1989
+ - `@stream-io/video-react-bindings` updated to version `0.4.45`
1990
+
1991
+ ### [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)
1992
+
1993
+ ### Dependency Updates
1994
+
1995
+ - `@stream-io/video-client` updated to version `1.4.0`
1996
+ - `@stream-io/video-react-bindings` updated to version `0.4.44`
1997
+
1998
+ ### [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)
1999
+
2000
+ ### Bug Fixes
2001
+
2002
+ - **rn:** screenshare overlay should not be seen for remote streams ([c9e9721](https://github.com/GetStream/stream-video-js/commit/c9e9721789de23985d6914011f5ddffd42fac5ab))
2003
+
2004
+ ### [0.8.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.1...@stream-io/video-react-native-sdk-0.8.2) (2024-06-13)
2005
+
2006
+ ### Bug Fixes
2007
+
2008
+ - **android:** no ringtone when incoming call was through foreground service ([#1402](https://github.com/GetStream/stream-video-js/issues/1402)) ([7796d81](https://github.com/GetStream/stream-video-js/commit/7796d817d03902c418fa7c672af05f4fc7df7c5d))
2009
+
2010
+ ### [0.8.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.8.0...@stream-io/video-react-native-sdk-0.8.1) (2024-06-12)
2011
+
2012
+ ### Dependency Updates
2013
+
2014
+ - `@stream-io/video-filters-react-native` updated to version `0.2.1`
2015
+
2016
+ ### Features
2017
+
2018
+ - docs to make video filters usable without the RN SDK ([6061f4d](https://github.com/GetStream/stream-video-js/commit/6061f4d5b83d1ed46051dde12c7d3e269ec26aeb))
2019
+
2020
+ ## [0.8.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.29...@stream-io/video-react-native-sdk-0.8.0) (2024-06-12)
2021
+
2022
+ ### Dependency Updates
2023
+
2024
+ - `@stream-io/video-filters-react-native` updated to version `0.2.0`
2025
+
2026
+ ### ⚠ BREAKING CHANGES
2027
+
2028
+ - **react-native:** add ios video filters (#1400)
2029
+
2030
+ ### Features
2031
+
2032
+ - **react-native:** add ios video filters ([#1400](https://github.com/GetStream/stream-video-js/issues/1400)) ([dbad806](https://github.com/GetStream/stream-video-js/commit/dbad806e136de7d60a10d292431c8cfe74bd28f9))
2033
+
2034
+ ### [0.7.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.28...@stream-io/video-react-native-sdk-0.7.29) (2024-06-12)
2035
+
2036
+ ### Dependency Updates
2037
+
2038
+ - `@stream-io/video-client` updated to version `1.3.1`
2039
+ - `@stream-io/video-react-bindings` updated to version `0.4.43`
2040
+
2041
+ ### [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)
2042
+
2043
+ ### Bug Fixes
2044
+
2045
+ - **ios:** do not disable camera on inactive state ([#1396](https://github.com/GetStream/stream-video-js/issues/1396)) ([741f0bc](https://github.com/GetStream/stream-video-js/commit/741f0bc2dc54db0f95211eea3b558b16a45d40f3))
2046
+
2047
+ ### [0.7.27](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.26...@stream-io/video-react-native-sdk-0.7.27) (2024-06-07)
2048
+
2049
+ ### Dependency Updates
2050
+
2051
+ - `@stream-io/video-client` updated to version `1.3.0`
2052
+ - `@stream-io/video-react-bindings` updated to version `0.4.42`
2053
+
2054
+ ### [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)
2055
+
2056
+ ### Dependency Updates
2057
+
2058
+ - `@stream-io/video-filters-react-native` updated to version `0.1.1`
2059
+
2060
+ ### [0.7.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.24...@stream-io/video-react-native-sdk-0.7.25) (2024-06-06)
2061
+
2062
+ ### Dependency Updates
2063
+
2064
+ - `@stream-io/video-filters-react-native` updated to version `0.1.0`
2065
+
2066
+ ### [0.7.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.23...@stream-io/video-react-native-sdk-0.7.24) (2024-06-06)
2067
+
2068
+ ### Features
2069
+
2070
+ - use logger from client for react native sdk ([#1391](https://github.com/GetStream/stream-video-js/issues/1391)) ([8779da9](https://github.com/GetStream/stream-video-js/commit/8779da965c169ac651b63d600beef3112db889fa))
2071
+
2072
+ ### [0.7.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.22...@stream-io/video-react-native-sdk-0.7.23) (2024-06-05)
2073
+
2074
+ ### Dependency Updates
2075
+
2076
+ - `@stream-io/video-client` updated to version `1.2.3`
2077
+ - `@stream-io/video-react-bindings` updated to version `0.4.41`
2078
+
2079
+ ### [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)
2080
+
2081
+ ### Bug Fixes
2082
+
2083
+ - use same channel id for all foreground services ([#1389](https://github.com/GetStream/stream-video-js/issues/1389)) ([d321b90](https://github.com/GetStream/stream-video-js/commit/d321b90330c73c694ea90e1f494f6e5f38d6c720))
2084
+
2085
+ ### [0.7.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.20...@stream-io/video-react-native-sdk-0.7.21) (2024-06-05)
2086
+
2087
+ ### Bug Fixes
2088
+
2089
+ - change unnecessary warning log to info ([e8dda7d](https://github.com/GetStream/stream-video-js/commit/e8dda7ded3bedc63e20e8230ecfab702da154f98))
2090
+
2091
+ ### [0.7.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.19...@stream-io/video-react-native-sdk-0.7.20) (2024-06-04)
2092
+
2093
+ ### Dependency Updates
2094
+
2095
+ - `@stream-io/video-client` updated to version `1.2.2`
2096
+ - `@stream-io/video-react-bindings` updated to version `0.4.40`
2097
+
2098
+ ### [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)
2099
+
2100
+ ### Dependency Updates
2101
+
2102
+ - `@stream-io/video-client` updated to version `1.2.1`
2103
+ - `@stream-io/video-react-bindings` updated to version `0.4.39`
2104
+
2105
+ ### [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)
2106
+
2107
+ ### Bug Fixes
2108
+
2109
+ - **react-native:** getting if pip was enabled from native was randomly broken ([#1385](https://github.com/GetStream/stream-video-js/issues/1385)) ([a055011](https://github.com/GetStream/stream-video-js/commit/a055011117fc4cee4ff00c855315aa72ffd7d881))
2110
+
2111
+ ### [0.7.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.16...@stream-io/video-react-native-sdk-0.7.17) (2024-06-03)
2112
+
2113
+ ### Dependency Updates
2114
+
2115
+ - `@stream-io/video-client` updated to version `1.2.0`
2116
+ - `@stream-io/video-react-bindings` updated to version `0.4.38`
2117
+
2118
+ ### [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)
2119
+
2120
+ ### Dependency Updates
2121
+
2122
+ - `@stream-io/video-client` updated to version `1.1.0`
2123
+ - `@stream-io/video-react-bindings` updated to version `0.4.37`
2124
+ - `@stream-io/video-filters-react-native` updated to version `0.0.1`
2125
+
2126
+ ### Features
2127
+
2128
+ - video filters on android ([#1382](https://github.com/GetStream/stream-video-js/issues/1382)) ([7ba8b0e](https://github.com/GetStream/stream-video-js/commit/7ba8b0e3b444869d38aae1a045dffb05444643f5))
2129
+
2130
+ ### [0.7.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.14...@stream-io/video-react-native-sdk-0.7.15) (2024-05-31)
2131
+
2132
+ ### Dependency Updates
2133
+
2134
+ - `@stream-io/video-client` updated to version `1.0.10`
2135
+ - `@stream-io/video-react-bindings` updated to version `0.4.36`
2136
+
2137
+ ### [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)
2138
+
2139
+ ### Dependency Updates
2140
+
2141
+ - `@stream-io/video-client` updated to version `1.0.9`
2142
+ - `@stream-io/video-react-bindings` updated to version `0.4.35`
2143
+
2144
+ ### [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)
2145
+
2146
+ ### Bug Fixes
2147
+
2148
+ - export the LivestreamPlayer component ([#1376](https://github.com/GetStream/stream-video-js/issues/1376)) ([89688a0](https://github.com/GetStream/stream-video-js/commit/89688a03a88ecebb04455b76237350ca0c91afe9)), closes [#1373](https://github.com/GetStream/stream-video-js/issues/1373)
2149
+
2150
+ ### [0.7.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.11...@stream-io/video-react-native-sdk-0.7.12) (2024-05-27)
2151
+
2152
+ ### Bug Fixes
2153
+
2154
+ - **reac-native:** properly cleanup call instance in LivestreamPlayer ([4e60c50](https://github.com/GetStream/stream-video-js/commit/4e60c5067503a7e3e1fdc77a4f6775c5873ed508))
2155
+
2156
+ ### [0.7.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.10...@stream-io/video-react-native-sdk-0.7.11) (2024-05-27)
2157
+
2158
+ ### Features
2159
+
2160
+ - **react-native:** add livestream player component ([#1373](https://github.com/GetStream/stream-video-js/issues/1373)) ([a821e23](https://github.com/GetStream/stream-video-js/commit/a821e2359ad6c3ff1535f971c1d644a0b35fff78))
2161
+
2162
+ ### [0.7.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.9...@stream-io/video-react-native-sdk-0.7.10) (2024-05-23)
2163
+
2164
+ ### Dependency Updates
2165
+
2166
+ - `@stream-io/video-client` updated to version `1.0.8`
2167
+ - `@stream-io/video-react-bindings` updated to version `0.4.34`
2168
+
2169
+ ### [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)
2170
+
2171
+ ### Bug Fixes
2172
+
2173
+ - workaround for samsung device ringtone quirks ([#1362](https://github.com/GetStream/stream-video-js/issues/1362)) ([d15380a](https://github.com/GetStream/stream-video-js/commit/d15380a4aac2bd9b7b6dc6b9de337739710c97b8))
2174
+
2175
+ ### [0.7.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.7...@stream-io/video-react-native-sdk-0.7.8) (2024-05-21)
2176
+
2177
+ ### Dependency Updates
2178
+
2179
+ - `@stream-io/video-client` updated to version `1.0.7`
2180
+ - `@stream-io/video-react-bindings` updated to version `0.4.33`
2181
+
2182
+ ### [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)
2183
+
2184
+ ### Dependency Updates
2185
+
2186
+ - `@stream-io/video-client` updated to version `1.0.6`
2187
+ - `@stream-io/video-react-bindings` updated to version `0.4.32`
2188
+
2189
+ ### Bug Fixes
2190
+
2191
+ - **state:** aligns the participant state with other SDKs ([#1357](https://github.com/GetStream/stream-video-js/issues/1357)) ([146e6ac](https://github.com/GetStream/stream-video-js/commit/146e6acd7296488bc18f4bf5c76e9f2c9bfd97af))
2192
+
2193
+ ### [0.7.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.5...@stream-io/video-react-native-sdk-0.7.6) (2024-05-16)
2194
+
2195
+ ### Dependency Updates
2196
+
2197
+ - `@stream-io/video-client` updated to version `1.0.5`
2198
+ - `@stream-io/video-react-bindings` updated to version `0.4.31`
2199
+
2200
+ ### [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)
2201
+
2202
+ ### Features
2203
+
2204
+ - add full screen incoming call view when phone is locked for android ([#1351](https://github.com/GetStream/stream-video-js/issues/1351)) ([54c9e0f](https://github.com/GetStream/stream-video-js/commit/54c9e0fb178a7ad37bb2db0c01f5bd507ef46ddf))
2205
+
2206
+ ### [0.7.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.3...@stream-io/video-react-native-sdk-0.7.4) (2024-05-14)
2207
+
2208
+ ### Bug Fixes
2209
+
2210
+ - **react-native:** mute and unmute device media stream optimistically ([#1354](https://github.com/GetStream/stream-video-js/issues/1354)) ([72f5df4](https://github.com/GetStream/stream-video-js/commit/72f5df4abc63b8824b4c0a9f00b7ee5848ab83da))
2211
+
2212
+ ### [0.7.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.7.2...@stream-io/video-react-native-sdk-0.7.3) (2024-05-14)
2213
+
2214
+ ### Dependency Updates
2215
+
2216
+ - `@stream-io/video-client` updated to version `1.0.4`
2217
+ - `@stream-io/video-react-bindings` updated to version `0.4.30`
2218
+
2219
+ ### [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)
2220
+
2221
+ ### Dependency Updates
2222
+
2223
+ - `@stream-io/video-client` updated to version `1.0.3`
2224
+ - `@stream-io/video-react-bindings` updated to version `0.4.29`
2225
+
2226
+ ### [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)
2227
+
2228
+ ### Dependency Updates
2229
+
2230
+ - `@stream-io/video-client` updated to version `1.0.2`
2231
+ - `@stream-io/video-react-bindings` updated to version `0.4.28`
2232
+
2233
+ ### Bug Fixes
2234
+
2235
+ - optimistically toggle device status ([#1342](https://github.com/GetStream/stream-video-js/issues/1342)) ([2e4e470](https://github.com/GetStream/stream-video-js/commit/2e4e470347fce7c7499dd21a931e5dec74bf9618))
2236
+
2237
+ ## [0.7.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.21...@stream-io/video-react-native-sdk-0.7.0) (2024-05-13)
2238
+
2239
+ ### ⚠ BREAKING CHANGES
2240
+
2241
+ - **react-native:** apply media stream management initial state asyncronously (#1345)
2242
+
2243
+ ### Bug Fixes
2244
+
2245
+ - **react-native:** apply media stream management initial state asyncronously ([#1345](https://github.com/GetStream/stream-video-js/issues/1345)) ([40b5a4e](https://github.com/GetStream/stream-video-js/commit/40b5a4e955f1bcf39755aa3848bc11c3436c14c9)), closes [#1236](https://github.com/GetStream/stream-video-js/issues/1236)
2246
+
2247
+ ### [0.6.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.20...@stream-io/video-react-native-sdk-0.6.21) (2024-05-07)
2248
+
2249
+ ### Dependency Updates
2250
+
2251
+ - `@stream-io/video-client` updated to version `1.0.1`
2252
+ - `@stream-io/video-react-bindings` updated to version `0.4.27`
2253
+
2254
+ ### [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)
2255
+
2256
+ ### Bug Fixes
2257
+
2258
+ - do not check for expo notifications lib dependency unnecessarily ([#1339](https://github.com/GetStream/stream-video-js/issues/1339)) ([0c5566f](https://github.com/GetStream/stream-video-js/commit/0c5566f311cb8377b4c1031387ba6be95165f234))
2259
+
2260
+ ### [0.6.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.18...@stream-io/video-react-native-sdk-0.6.19) (2024-05-07)
2261
+
2262
+ ### Dependency Updates
2263
+
2264
+ - `@stream-io/video-client` updated to version `1.0.0`
2265
+ - `@stream-io/video-react-bindings` updated to version `0.4.26`
2266
+
2267
+ ### [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)
2268
+
2269
+ ### Dependency Updates
2270
+
2271
+ - `@stream-io/video-client` updated to version `0.8.0`
2272
+ - `@stream-io/video-react-bindings` updated to version `0.4.25`
2273
+
2274
+ ### [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)
2275
+
2276
+ ### Dependency Updates
2277
+
2278
+ - `@stream-io/video-client` updated to version `0.7.13`
2279
+ - `@stream-io/video-react-bindings` updated to version `0.4.24`
2280
+
2281
+ ### [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)
2282
+
2283
+ ### Dependency Updates
2284
+
2285
+ - `@stream-io/video-client` updated to version `0.7.12`
2286
+ - `@stream-io/video-react-bindings` updated to version `0.4.23`
2287
+
2288
+ ### [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)
2289
+
2290
+ ### Dependency Updates
2291
+
2292
+ - `@stream-io/video-client` updated to version `0.7.11`
2293
+ - `@stream-io/video-react-bindings` updated to version `0.4.22`
2294
+
2295
+ ### Bug Fixes
2296
+
2297
+ - **devices:** API to disable speaking while muted notifications ([#1335](https://github.com/GetStream/stream-video-js/issues/1335)) ([cdff0e0](https://github.com/GetStream/stream-video-js/commit/cdff0e036bf4afca763e4f7a1563c23e806be190)), closes [#1329](https://github.com/GetStream/stream-video-js/issues/1329)
2298
+
2299
+ ### [0.6.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.13...@stream-io/video-react-native-sdk-0.6.14) (2024-04-30)
2300
+
2301
+ ### Dependency Updates
2302
+
2303
+ - `@stream-io/video-client` updated to version `0.7.10`
2304
+ - `@stream-io/video-react-bindings` updated to version `0.4.21`
2305
+
2306
+ ### [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)
2307
+
2308
+ ### Dependency Updates
2309
+
2310
+ - `@stream-io/video-client` updated to version `0.7.9`
2311
+ - `@stream-io/video-react-bindings` updated to version `0.4.20`
2312
+
2313
+ ### [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)
2314
+
2315
+ ### Dependency Updates
2316
+
2317
+ - `@stream-io/video-client` updated to version `0.7.8`
2318
+ - `@stream-io/video-react-bindings` updated to version `0.4.19`
2319
+
2320
+ ### [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)
2321
+
2322
+ ### Dependency Updates
2323
+
2324
+ - `@stream-io/video-client` updated to version `0.7.7`
2325
+ - `@stream-io/video-react-bindings` updated to version `0.4.18`
2326
+
2327
+ ### Features
2328
+
2329
+ - **feedback:** Collect user feedback ([#1324](https://github.com/GetStream/stream-video-js/issues/1324)) ([b415de0](https://github.com/GetStream/stream-video-js/commit/b415de0828e402f8d3b854553351843aad2e8473))
2330
+
2331
+ ### [0.6.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.9...@stream-io/video-react-native-sdk-0.6.10) (2024-04-23)
2332
+
2333
+ ### Dependency Updates
2334
+
2335
+ - `@stream-io/video-client` updated to version `0.7.6`
2336
+ - `@stream-io/video-react-bindings` updated to version `0.4.17`
2337
+
2338
+ ### [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)
2339
+
2340
+ ### Dependency Updates
2341
+
2342
+ - `@stream-io/video-client` updated to version `0.7.5`
2343
+ - `@stream-io/video-react-bindings` updated to version `0.4.16`
2344
+
2345
+ ### [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)
2346
+
2347
+ ### Bug Fixes
2348
+
2349
+ - move expo ringing setup to react-native firebase ([#1319](https://github.com/GetStream/stream-video-js/issues/1319)) ([bb57300](https://github.com/GetStream/stream-video-js/commit/bb57300028d67917269f8eee9ca33e129b2c7e9d))
2350
+
2351
+ ### [0.6.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.6...@stream-io/video-react-native-sdk-0.6.7) (2024-04-17)
2352
+
2353
+ ### Dependency Updates
2354
+
2355
+ - `@stream-io/video-client` updated to version `0.7.4`
2356
+ - `@stream-io/video-react-bindings` updated to version `0.4.15`
2357
+
2358
+ ### [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)
2359
+
2360
+ ### Dependency Updates
2361
+
2362
+ - `@stream-io/video-client` updated to version `0.7.3`
2363
+ - `@stream-io/video-react-bindings` updated to version `0.4.14`
2364
+
2365
+ ### [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)
2366
+
2367
+ ### Bug Fixes
2368
+
2369
+ - **react-native:** remove wrong required types in livestream buttons ([a357d6a](https://github.com/GetStream/stream-video-js/commit/a357d6ac24e3d15b068d152cc69403c471dff87c))
2370
+
2371
+ ### [0.6.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.3...@stream-io/video-react-native-sdk-0.6.4) (2024-04-16)
2372
+
2373
+ ### Dependency Updates
2374
+
2375
+ - `@stream-io/video-client` updated to version `0.7.2`
2376
+ - `@stream-io/video-react-bindings` updated to version `0.4.13`
2377
+
2378
+ ### [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)
2379
+
2380
+ ### Features
2381
+
2382
+ - **react-native:** add screen share and chat to livestream sample ([#1302](https://github.com/GetStream/stream-video-js/issues/1302)) ([4e7dbe0](https://github.com/GetStream/stream-video-js/commit/4e7dbe0bcbf8ea0e36a05241f1caf3eb9747a760))
2383
+
2384
+ ### [0.6.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.1...@stream-io/video-react-native-sdk-0.6.2) (2024-04-12)
2385
+
2386
+ ### Bug Fixes
2387
+
2388
+ - **react-native:** change objectFit to contain for screensharing ParticipantView ([#1314](https://github.com/GetStream/stream-video-js/issues/1314)) ([c50245d](https://github.com/GetStream/stream-video-js/commit/c50245df92d994d66ae1640b8acd41e8b2ec71e1))
2389
+
2390
+ ### [0.6.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.6.0...@stream-io/video-react-native-sdk-0.6.1) (2024-04-09)
2391
+
2392
+ ### Dependency Updates
2393
+
2394
+ - `@stream-io/video-client` updated to version `0.7.1`
2395
+ - `@stream-io/video-react-bindings` updated to version `0.4.12`
2396
+
2397
+ ## [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)
2398
+
2399
+ ### Dependency Updates
2400
+
2401
+ - `@stream-io/video-client` updated to version `0.7.0`
2402
+ - `@stream-io/video-react-bindings` updated to version `0.4.11`
2403
+
2404
+ ### ⚠ BREAKING CHANGES
2405
+
2406
+ - remove server-side capabilities from JS client (#1282)
2407
+
2408
+ ### Features
2409
+
2410
+ - remove server-side capabilities from JS client ([#1282](https://github.com/GetStream/stream-video-js/issues/1282)) ([362b6b5](https://github.com/GetStream/stream-video-js/commit/362b6b501e6aa1864eb8486e3129a1705a4d41fb))
2411
+
2412
+ ### [0.5.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.16...@stream-io/video-react-native-sdk-0.5.17) (2024-04-05)
2413
+
2414
+ ### Dependency Updates
2415
+
2416
+ - `@stream-io/video-client` updated to version `0.6.10`
2417
+ - `@stream-io/video-react-bindings` updated to version `0.4.10`
2418
+
2419
+ ### [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)
2420
+
2421
+ ### Dependency Updates
2422
+
2423
+ - `@stream-io/video-client` updated to version `0.6.9`
2424
+ - `@stream-io/video-react-bindings` updated to version `0.4.9`
2425
+
2426
+ ### [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)
2427
+
2428
+ ### Dependency Updates
2429
+
2430
+ - `@stream-io/video-client` updated to version `0.6.8`
2431
+ - `@stream-io/video-react-bindings` updated to version `0.4.8`
2432
+
2433
+ ### Features
2434
+
2435
+ - **react:** Support for Background Filters and Background Blurring ([#1283](https://github.com/GetStream/stream-video-js/issues/1283)) ([f790ee7](https://github.com/GetStream/stream-video-js/commit/f790ee78c20fb0f5266e429a777d8bb7ef158c83)), closes [#1271](https://github.com/GetStream/stream-video-js/issues/1271) [#1276](https://github.com/GetStream/stream-video-js/issues/1276)
2436
+
2437
+ ### [0.5.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.13...@stream-io/video-react-native-sdk-0.5.14) (2024-04-02)
2438
+
2439
+ ### Dependency Updates
2440
+
2441
+ - `@stream-io/video-client` updated to version `0.6.7`
2442
+ - `@stream-io/video-react-bindings` updated to version `0.4.7`
2443
+
2444
+ ### [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)
2445
+
2446
+ ### Dependency Updates
2447
+
2448
+ - `@stream-io/video-client` updated to version `0.6.6`
2449
+ - `@stream-io/video-react-bindings` updated to version `0.4.6`
2450
+
2451
+ ### [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)
2452
+
2453
+ ### Dependency Updates
2454
+
2455
+ - `@stream-io/video-client` updated to version `0.6.5`
2456
+ - `@stream-io/video-react-bindings` updated to version `0.4.5`
2457
+
2458
+ ### [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)
2459
+
2460
+ ### Dependency Updates
2461
+
2462
+ - `@stream-io/video-client` updated to version `0.6.4`
2463
+ - `@stream-io/video-react-bindings` updated to version `0.4.4`
2464
+
2465
+ ### Bug Fixes
2466
+
2467
+ - **react-native:** improve error logging for speaker manager hook and improve usage of incall manager in SDK ([#1299](https://github.com/GetStream/stream-video-js/issues/1299)) ([9527c41](https://github.com/GetStream/stream-video-js/commit/9527c4176d4e46224ddec18e3fddfb404e0aaae5))
2468
+
2469
+ ### [0.5.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.9...@stream-io/video-react-native-sdk-0.5.10) (2024-03-25)
2470
+
2471
+ ### Dependency Updates
2472
+
2473
+ - `@stream-io/video-client` updated to version `0.6.3`
2474
+ - `@stream-io/video-react-bindings` updated to version `0.4.3`
2475
+
2476
+ ### Features
2477
+
2478
+ - SFU stats reporting ([#1297](https://github.com/GetStream/stream-video-js/issues/1297)) ([f46e927](https://github.com/GetStream/stream-video-js/commit/f46e927cbd650bc9af64a01cd5ebcec6cf2cfda8)), closes [#1276](https://github.com/GetStream/stream-video-js/issues/1276)
2479
+
2480
+ ### [0.5.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.8...@stream-io/video-react-native-sdk-0.5.9) (2024-03-25)
2481
+
2482
+ ### Dependency Updates
2483
+
2484
+ - `@stream-io/video-client` updated to version `0.6.2`
2485
+ - `@stream-io/video-react-bindings` updated to version `0.4.2`
2486
+
2487
+ ### [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)
2488
+
2489
+ ### Bug Fixes
2490
+
2491
+ - **react-native:** react-native-callkeep optional dependency import issue in SDK ([#1294](https://github.com/GetStream/stream-video-js/issues/1294)) ([6c664a7](https://github.com/GetStream/stream-video-js/commit/6c664a701e6dc838c2a4fcd73ce3f2a24f7f915a))
2492
+
2493
+ ### [0.5.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.6...@stream-io/video-react-native-sdk-0.5.7) (2024-03-15)
2494
+
2495
+ ### Bug Fixes
2496
+
2497
+ - commonjs optional libs bug workaround ([#1292](https://github.com/GetStream/stream-video-js/issues/1292)) ([6d47386](https://github.com/GetStream/stream-video-js/commit/6d47386de79dac2e4a6cf98b31cb1127f48b881c))
2498
+
2499
+ ### [0.5.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.5...@stream-io/video-react-native-sdk-0.5.6) (2024-03-14)
2500
+
2501
+ ### Bug Fixes
2502
+
2503
+ - **react-native:** floating participant speaking border jump issue ([#1291](https://github.com/GetStream/stream-video-js/issues/1291)) ([8e6fb5a](https://github.com/GetStream/stream-video-js/commit/8e6fb5aa047b4353c16673b03fb215508d79951b))
2504
+
2505
+ ### [0.5.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.4...@stream-io/video-react-native-sdk-0.5.5) (2024-03-14)
2506
+
2507
+ ### Bug Fixes
2508
+
2509
+ - remove automatic call leave in call content ([#1289](https://github.com/GetStream/stream-video-js/issues/1289)) ([b9714da](https://github.com/GetStream/stream-video-js/commit/b9714daea6146bf1ecd1c9b91aec0dcf85c5274f))
2510
+
2511
+ ### [0.5.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.3...@stream-io/video-react-native-sdk-0.5.4) (2024-03-13)
2512
+
2513
+ ### Dependency Updates
2514
+
2515
+ - `@stream-io/video-client` updated to version `0.6.1`
2516
+ - `@stream-io/video-react-bindings` updated to version `0.4.1`
2517
+
2518
+ ### [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)
2519
+
2520
+ ### Bug Fixes
2521
+
2522
+ - **react-native:** demo app login screen ([#1285](https://github.com/GetStream/stream-video-js/issues/1285)) ([eb7a4f4](https://github.com/GetStream/stream-video-js/commit/eb7a4f482edb8af13edf57cc404f96adc56abd09))
2523
+
2524
+ ### [0.5.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.1...@stream-io/video-react-native-sdk-0.5.2) (2024-03-05)
2525
+
2526
+ ### [0.5.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.5.0...@stream-io/video-react-native-sdk-0.5.1) (2024-03-01)
2527
+
2528
+ ### Bug Fixes
2529
+
2530
+ - **react-native:** do not add screenshare permissions by default ([6bb3113](https://github.com/GetStream/stream-video-js/commit/6bb3113574f22fe6d5c6c9da41528da7502974ec))
2531
+
2532
+ ## [0.5.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.4.3...@stream-io/video-react-native-sdk-0.5.0) (2024-02-26)
2533
+
2534
+ ### Dependency Updates
2535
+
2536
+ - `@stream-io/video-client` updated to version `0.6.0`
2537
+ - `@stream-io/video-react-bindings` updated to version `0.4.0`
2538
+
2539
+ ### ⚠ BREAKING CHANGES
2540
+
2541
+ - **hooks:** expose permission hooks through useCallStateHooks() (#1254)
2542
+
2543
+ ### Features
2544
+
2545
+ - **hooks:** expose permission hooks through useCallStateHooks() ([#1254](https://github.com/GetStream/stream-video-js/issues/1254)) ([3eaa8bd](https://github.com/GetStream/stream-video-js/commit/3eaa8bd7592920eedb434b6ec747b6d22077ed87))
2546
+
2547
+ ### [0.4.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.4.2...@stream-io/video-react-native-sdk-0.4.3) (2024-02-19)
2548
+
2549
+ ### Dependency Updates
2550
+
2551
+ - `@stream-io/video-client` updated to version `0.5.11`
2552
+ - `@stream-io/video-react-bindings` updated to version `0.3.22`
2553
+
2554
+ ### [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)
2555
+
2556
+ ### Dependency Updates
2557
+
2558
+ - `@stream-io/video-client` updated to version `0.5.10`
2559
+ - `@stream-io/video-react-bindings` updated to version `0.3.21`
2560
+
2561
+ ### [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)
2562
+
2563
+ ### Dependency Updates
2564
+
2565
+ - `@stream-io/video-client` updated to version `0.5.9`
2566
+ - `@stream-io/video-react-bindings` updated to version `0.3.20`
2567
+
2568
+ ## [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)
2569
+
2570
+ ### ⚠ BREAKING CHANGES
2571
+
2572
+ - **react-native:** add missing push call.cancellation support in app terminated state (#1264)
2573
+
2574
+ ### Bug Fixes
2575
+
2576
+ - **react-native:** add missing push call.cancellation support in app terminated state ([#1264](https://github.com/GetStream/stream-video-js/issues/1264)) ([e5dae2e](https://github.com/GetStream/stream-video-js/commit/e5dae2e7f2a99185b5329d5dd5634fbfad318b63))
2577
+
2578
+ ### [0.3.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.17...@stream-io/video-react-native-sdk-0.3.18) (2024-02-06)
2579
+
2580
+ ### Dependency Updates
2581
+
2582
+ - `@stream-io/video-client` updated to version `0.5.8`
2583
+ - `@stream-io/video-react-bindings` updated to version `0.3.19`
2584
+
2585
+ ### [0.3.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.16...@stream-io/video-react-native-sdk-0.3.17) (2024-01-31)
2586
+
2587
+ ### Bug Fixes
2588
+
2589
+ - **react-native:** align outgoing call controls button sizes ([800e330](https://github.com/GetStream/stream-video-js/commit/800e3308893212a305c53710939d9f47aad0d48d))
2590
+ - **react-native:** check for ios provider name presence ([c6c5d2b](https://github.com/GetStream/stream-video-js/commit/c6c5d2bcc3f97ba3d7c28eac112db4cac9714078))
2591
+
2592
+ ### [0.3.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.15...@stream-io/video-react-native-sdk-0.3.16) (2024-01-30)
2593
+
2594
+ ### Bug Fixes
2595
+
2596
+ - **react-native-sdk:** use call settings permissions in CallControls ([#1255](https://github.com/GetStream/stream-video-js/issues/1255)) ([3eefa0d](https://github.com/GetStream/stream-video-js/commit/3eefa0db85693f79e32e6970cc42b2e8a5765f1a))
2597
+
2598
+ ### [0.3.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.14...@stream-io/video-react-native-sdk-0.3.15) (2024-01-30)
2599
+
2600
+ ### Features
2601
+
2602
+ - migrate expo example app to v50 ([#1249](https://github.com/GetStream/stream-video-js/issues/1249)) ([f4c99ac](https://github.com/GetStream/stream-video-js/commit/f4c99ac8bcd750c9bfc1628f5c05cfe42e50bb9f))
2603
+
2604
+ ### [0.3.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.13...@stream-io/video-react-native-sdk-0.3.14) (2024-01-29)
2605
+
2606
+ ### Dependency Updates
2607
+
2608
+ - `@stream-io/video-client` updated to version `0.5.7`
2609
+ - `@stream-io/video-react-bindings` updated to version `0.3.18`
2610
+
2611
+ ### [0.3.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.12...@stream-io/video-react-native-sdk-0.3.13) (2024-01-26)
2612
+
2613
+ ### Features
2614
+
2615
+ - add android default ringtone as the default ringing sound ([#1251](https://github.com/GetStream/stream-video-js/issues/1251)) ([bd47748](https://github.com/GetStream/stream-video-js/commit/bd47748177d82b9b0f5b1d01cfa1c8c5c28cc1ce))
2616
+
2617
+ ### [0.3.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.11...@stream-io/video-react-native-sdk-0.3.12) (2024-01-25)
2618
+
2619
+ ### Bug Fixes
2620
+
2621
+ - pass sound and vibration to android notifications display ([f4e34ec](https://github.com/GetStream/stream-video-js/commit/f4e34ec77ae8ab2885d6b98c428085431b52bc00))
2622
+
2623
+ ### [0.3.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.10...@stream-io/video-react-native-sdk-0.3.11) (2024-01-19)
2624
+
2625
+ ### Dependency Updates
2626
+
2627
+ - `@stream-io/video-client` updated to version `0.5.6`
2628
+ - `@stream-io/video-react-bindings` updated to version `0.3.17`
2629
+
2630
+ ### [0.3.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.9...@stream-io/video-react-native-sdk-0.3.10) (2024-01-16)
2631
+
2632
+ ### Features
2633
+
2634
+ - **react-native:** add support for kotlin in expo config plugin ([#1239](https://github.com/GetStream/stream-video-js/issues/1239)) ([d285e32](https://github.com/GetStream/stream-video-js/commit/d285e32940cf3864932cc6053f8e66bc164bceb0)), closes [#1231](https://github.com/GetStream/stream-video-js/issues/1231)
2635
+
2636
+ ### [0.3.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.8...@stream-io/video-react-native-sdk-0.3.9) (2024-01-16)
2637
+
2638
+ ### Dependency Updates
2639
+
2640
+ - `@stream-io/video-client` updated to version `0.5.5`
2641
+ - `@stream-io/video-react-bindings` updated to version `0.3.16`
2642
+
2643
+ ### [0.3.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.7...@stream-io/video-react-native-sdk-0.3.8) (2024-01-16)
2644
+
2645
+ ### Dependency Updates
2646
+
2647
+ - `@stream-io/video-client` updated to version `0.5.4`
2648
+ - `@stream-io/video-react-bindings` updated to version `0.3.15`
2649
+
2650
+ ### [0.3.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.6...@stream-io/video-react-native-sdk-0.3.7) (2024-01-05)
2651
+
2652
+ ### Features
2653
+
2654
+ - **react-native:** add ability to customize the objectFit for participant view ([#1225](https://github.com/GetStream/stream-video-js/issues/1225)) ([06c7010](https://github.com/GetStream/stream-video-js/commit/06c7010cd0fc128e4cfb582c8e8771e43a007629))
2655
+
2656
+ ### [0.3.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.5...@stream-io/video-react-native-sdk-0.3.6) (2023-12-22)
2657
+
2658
+ ### Dependency Updates
2659
+
2660
+ - `@stream-io/video-client` updated to version `0.5.3`
2661
+ - `@stream-io/video-react-bindings` updated to version `0.3.14`
2662
+
2663
+ ### [0.3.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.4...@stream-io/video-react-native-sdk-0.3.5) (2023-12-11)
2664
+
2665
+ ### Dependency Updates
2666
+
2667
+ - `@stream-io/video-client` updated to version `0.5.2`
2668
+ - `@stream-io/video-react-bindings` updated to version `0.3.13`
2669
+
2670
+ ### [0.3.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.3...@stream-io/video-react-native-sdk-0.3.4) (2023-12-06)
2671
+
2672
+ ### Bug Fixes
2673
+
2674
+ - **react-native:** unnecessary setState in initial device management ([#1211](https://github.com/GetStream/stream-video-js/issues/1211)) ([c9a10c3](https://github.com/GetStream/stream-video-js/commit/c9a10c3938aeddcae0008d4de84a604c873dcbde))
2675
+
2676
+ ### [0.3.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.2...@stream-io/video-react-native-sdk-0.3.3) (2023-12-05)
2677
+
2678
+ ### Dependency Updates
2679
+
2680
+ - `@stream-io/video-client` updated to version `0.5.1`
2681
+ - `@stream-io/video-react-bindings` updated to version `0.3.12`
2682
+
2683
+ ### Features
2684
+
2685
+ - **client:** speaking while muted in React Native using temporary peer connection ([#1207](https://github.com/GetStream/stream-video-js/issues/1207)) ([9093006](https://github.com/GetStream/stream-video-js/commit/90930063503b6dfb83572dad8a31e45b16bf1685))
2686
+
2687
+ ### [0.3.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.1...@stream-io/video-react-native-sdk-0.3.2) (2023-12-04)
2688
+
2689
+ ### Bug Fixes
2690
+
2691
+ - **react-native:** remove postinstall command as it breaks on windows ([90f0b9c](https://github.com/GetStream/stream-video-js/commit/90f0b9ced6aa0c89593cb860a5a5c87d782766ca))
2692
+
2693
+ ### [0.3.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.3.0...@stream-io/video-react-native-sdk-0.3.1) (2023-11-30)
2694
+
2695
+ ### Bug Fixes
2696
+
2697
+ - **react-native:** do not trigger initial device setting after join ([204c303](https://github.com/GetStream/stream-video-js/commit/204c303353c536c44b77350bb49c117f21e093c5))
2698
+
2699
+ ## [0.3.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.14...@stream-io/video-react-native-sdk-0.3.0) (2023-11-29)
2700
+
2701
+ ### Dependency Updates
2702
+
2703
+ - `@stream-io/video-client` updated to version `0.5.0`
2704
+ - `@stream-io/video-react-bindings` updated to version `0.3.11`
2705
+
2706
+ ### ⚠ BREAKING CHANGES
2707
+
2708
+ - **react-native:** move to webrtc 118 (#1197)
2709
+
2710
+ ### Features
2711
+
2712
+ - **react-native:** move to webrtc 118 ([#1197](https://github.com/GetStream/stream-video-js/issues/1197)) ([8cdbe11](https://github.com/GetStream/stream-video-js/commit/8cdbe11de069fcb6eae5643f5cef5c9612f6c805))
2713
+
2714
+ ### Bug Fixes
2715
+
2716
+ - **react-native:** remove unused import ([388d5fc](https://github.com/GetStream/stream-video-js/commit/388d5fc41479190c34b1f5042303157b96149381))
2717
+
2718
+ ### [0.2.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.13...@stream-io/video-react-native-sdk-0.2.14) (2023-11-27)
2719
+
2720
+ ### Dependency Updates
2721
+
2722
+ - `@stream-io/video-client` updated to version `0.4.10`
2723
+ - `@stream-io/video-react-bindings` updated to version `0.3.10`
2724
+
2725
+ ### [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)
2726
+
2727
+ ### Bug Fixes
2728
+
2729
+ - **react-native:** add default sound for android notifications ([6ecb6d3](https://github.com/GetStream/stream-video-js/commit/6ecb6d35016a4c8d8fc61d43c78a5b245c4f8ac5))
2730
+
2731
+ ### [0.2.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.11...@stream-io/video-react-native-sdk-0.2.12) (2023-11-22)
2732
+
2733
+ ### Dependency Updates
2734
+
2735
+ - `@stream-io/video-client` updated to version `0.4.9`
2736
+ - `@stream-io/video-react-bindings` updated to version `0.3.9`
2737
+
2738
+ ### [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)
2739
+
2740
+ ### Features
2741
+
2742
+ - **react-native:** update rn-webrtc version ([159b1cc](https://github.com/GetStream/stream-video-js/commit/159b1cc6b581f9dff257aad481170a36d5d065e9))
2743
+
2744
+ ### [0.2.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.9...@stream-io/video-react-native-sdk-0.2.10) (2023-11-16)
2745
+
2746
+ ### Dependency Updates
2747
+
2748
+ - `@stream-io/video-client` updated to version `0.4.8`
2749
+ - `@stream-io/video-react-bindings` updated to version `0.3.8`
2750
+
2751
+ ### [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)
2752
+
2753
+ ### Dependency Updates
2754
+
2755
+ - `@stream-io/video-client` updated to version `0.4.7`
2756
+ - `@stream-io/video-react-bindings` updated to version `0.3.7`
2757
+
2758
+ ### Features
2759
+
2760
+ - **device-api:** Browser Permissions API ([#1184](https://github.com/GetStream/stream-video-js/issues/1184)) ([a0b3573](https://github.com/GetStream/stream-video-js/commit/a0b3573b630ff8450953cdf1102fe722aea83f6f))
2761
+
2762
+ ### [0.2.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.7...@stream-io/video-react-native-sdk-0.2.8) (2023-11-13)
2763
+
2764
+ ### Dependency Updates
2765
+
2766
+ - `@stream-io/video-client` updated to version `0.4.6`
2767
+ - `@stream-io/video-react-bindings` updated to version `0.3.6`
2768
+
2769
+ ### [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)
2770
+
2771
+ ### Bug Fixes
2772
+
2773
+ - **react-native:** Cannot find interface declaration for 'RCTEventEmitter' ([#1185](https://github.com/GetStream/stream-video-js/issues/1185)) ([ab0f314](https://github.com/GetStream/stream-video-js/commit/ab0f314bb035529b9b0da27e2c6c6ed17cd4c626))
2774
+
2775
+ ### [0.2.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.2.5...@stream-io/video-react-native-sdk-0.2.6) (2023-11-07)
2776
+
2777
+ ### Dependency Updates
2778
+
2779
+ - `@stream-io/video-client` updated to version `0.4.5`
2780
+ - `@stream-io/video-react-bindings` updated to version `0.3.5`
2781
+
2782
+ ### [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)
2783
+
2784
+ ### Dependency Updates
2785
+
2786
+ - `@stream-io/video-client` updated to version `0.4.4`
2787
+ - `@stream-io/video-react-bindings` updated to version `0.3.4`
2788
+
2789
+ ### [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)
2790
+
2791
+ ### Dependency Updates
2792
+
2793
+ - `@stream-io/video-client` updated to version `0.4.3`
2794
+ - `@stream-io/video-react-bindings` updated to version `0.3.3`
2795
+
2796
+ ### [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)
2797
+
2798
+ ### Dependency Updates
2799
+
2800
+ - `@stream-io/video-client` updated to version `0.4.2`
2801
+ - `@stream-io/video-react-bindings` updated to version `0.3.2`
2802
+
2803
+ ### [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)
2804
+
2805
+ ### Dependency Updates
2806
+
2807
+ - `@stream-io/video-client` updated to version `0.4.1`
2808
+ - `@stream-io/video-react-bindings` updated to version `0.3.1`
2809
+
2810
+ ### [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)
2811
+
2812
+ ### Features
2813
+
2814
+ - **react-native:** add screensharing ([#1149](https://github.com/GetStream/stream-video-js/issues/1149)) ([e021365](https://github.com/GetStream/stream-video-js/commit/e021365158d9bbe3c6192294a02fa694ce9f24fe))
2815
+
2816
+ ## [0.2.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.14...@stream-io/video-react-native-sdk-0.2.0) (2023-10-27)
2817
+
2818
+ ### Dependency Updates
2819
+
2820
+ - `@stream-io/video-client` updated to version `0.4.0`
2821
+ - `@stream-io/video-react-bindings` updated to version `0.3.0`
2822
+
2823
+ ### ⚠ BREAKING CHANGES
2824
+
2825
+ - **react-sdk:** Universal Device Management API (#1127)
2826
+
2827
+ ### Features
2828
+
2829
+ - **react-sdk:** Universal Device Management API ([#1127](https://github.com/GetStream/stream-video-js/issues/1127)) ([aeb3561](https://github.com/GetStream/stream-video-js/commit/aeb35612745f45254b536281c5f81d1bcac2bab5))
2830
+
2831
+ ### [0.1.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.13...@stream-io/video-react-native-sdk-0.1.14) (2023-10-26)
2832
+
2833
+ ### Dependency Updates
2834
+
2835
+ - `@stream-io/video-react-bindings` updated to version `0.2.37`
2836
+
2837
+ ### [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)
2838
+
2839
+ ### Dependency Updates
2840
+
2841
+ - `@stream-io/video-client` updated to version `0.3.36`
2842
+ - `@stream-io/video-react-bindings` updated to version `0.2.37`
2843
+
2844
+ ### [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)
2845
+
2846
+ ### Features
2847
+
2848
+ - **react-native:** add picture-in-picture support for Android ([#1133](https://github.com/GetStream/stream-video-js/issues/1133)) ([ad313cc](https://github.com/GetStream/stream-video-js/commit/ad313cc1abf59020936b342621669448bd03c0a8))
2849
+
2850
+ ### [0.1.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.10...@stream-io/video-react-native-sdk-0.1.11) (2023-10-19)
2851
+
2852
+ ### Features
2853
+
2854
+ - **react-native:** live stream components for host and viewer ([#1135](https://github.com/GetStream/stream-video-js/issues/1135)) ([5a5f0e1](https://github.com/GetStream/stream-video-js/commit/5a5f0e10ba7c32d77c547bd3e42396a385fb9f50))
2855
+
2856
+ ### [0.1.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.9...@stream-io/video-react-native-sdk-0.1.10) (2023-10-19)
2857
+
2858
+ ### Dependency Updates
2859
+
2860
+ - `@stream-io/video-client` updated to version `0.3.35`
2861
+ - `@stream-io/video-react-bindings` updated to version `0.2.36`
2862
+
2863
+ ### Features
2864
+
2865
+ - mute screenshare_audio, update to the newest OpenAPI schema ([#1148](https://github.com/GetStream/stream-video-js/issues/1148)) ([81c45a7](https://github.com/GetStream/stream-video-js/commit/81c45a77e6a526de05ce5457357d212fb3e613d9))
2866
+
2867
+ ### [0.1.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.8...@stream-io/video-react-native-sdk-0.1.9) (2023-10-18)
2868
+
2869
+ ### Dependency Updates
2870
+
2871
+ - `@stream-io/video-client` updated to version `0.3.34`
2872
+ - `@stream-io/video-react-bindings` updated to version `0.2.35`
2873
+
2874
+ ### Features
2875
+
2876
+ - **build:** ESM and CJS bundles ([#1144](https://github.com/GetStream/stream-video-js/issues/1144)) ([58b60ee](https://github.com/GetStream/stream-video-js/commit/58b60eee4b1cd667d2eef8f17ed4e6da74876a51)), closes [#1025](https://github.com/GetStream/stream-video-js/issues/1025)
2877
+
2878
+ ### [0.1.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.7...@stream-io/video-react-native-sdk-0.1.8) (2023-10-13)
2879
+
2880
+ ### Bug Fixes
2881
+
2882
+ - **react-native:** misc expo config plugin bugs ([bba3f84](https://github.com/GetStream/stream-video-js/commit/bba3f8437cb0f7a662adef4e89fbc487225a5ed5))
2883
+
2884
+ ### [0.1.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.6...@stream-io/video-react-native-sdk-0.1.7) (2023-10-13)
2885
+
2886
+ ### Dependency Updates
2887
+
2888
+ - `@stream-io/video-client` updated to version `0.3.33`
2889
+ - `@stream-io/video-react-bindings` updated to version `0.2.34`
2890
+
2891
+ ### Bug Fixes
2892
+
2893
+ - **react-native:** added missing webrtc android expo config steps ([fb2c5a1](https://github.com/GetStream/stream-video-js/commit/fb2c5a1da24bc6c7d9d235ad1d8a562c8a075360))
2894
+
2895
+ ### [0.1.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.5...@stream-io/video-react-native-sdk-0.1.6) (2023-10-13)
2896
+
2897
+ ### Dependency Updates
2898
+
2899
+ - `@stream-io/video-client` updated to version `0.3.32`
2900
+ - `@stream-io/video-react-bindings` updated to version `0.2.33`
2901
+
2902
+ ### Features
2903
+
2904
+ - **react-native:** add landscape mode support to Lobby, RingingCallContent and DF app ([#1123](https://github.com/GetStream/stream-video-js/issues/1123)) ([cc247f0](https://github.com/GetStream/stream-video-js/commit/cc247f07d50acc775034535e37fd5b319f26673d))
2905
+
2906
+ ### Bug Fixes
2907
+
2908
+ - **react-native:** incorrect starting position on reanimated floating animation ([#1139](https://github.com/GetStream/stream-video-js/issues/1139)) ([8d09012](https://github.com/GetStream/stream-video-js/commit/8d09012bc42adbd4474ddbc24ebb0b0362e7332e))
2909
+
2910
+ ### [0.1.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.4...@stream-io/video-react-native-sdk-0.1.5) (2023-10-11)
2911
+
2912
+ ### Bug Fixes
2913
+
2914
+ - **react-native:** faulty default value for landscape mode for CallContent ([#1137](https://github.com/GetStream/stream-video-js/issues/1137)) ([ecb72b3](https://github.com/GetStream/stream-video-js/commit/ecb72b34c9acce690bfa157501c5dce845519670))
2915
+
2916
+ ### [0.1.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.3...@stream-io/video-react-native-sdk-0.1.4) (2023-10-09)
2917
+
2918
+ ### Dependency Updates
2919
+
2920
+ - `@stream-io/video-client` updated to version `0.3.31`
2921
+ - `@stream-io/video-react-bindings` updated to version `0.2.32`
2922
+
2923
+ ### Features
2924
+
2925
+ - **react-native:** add all push support to Expo and non ringing push for vanilla ([#1097](https://github.com/GetStream/stream-video-js/issues/1097)) ([9dcbe23](https://github.com/GetStream/stream-video-js/commit/9dcbe23dc949e452132b5450419a9558dc836309))
2926
+
2927
+ ### [0.1.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.2...@stream-io/video-react-native-sdk-0.1.3) (2023-10-06)
2928
+
2929
+ ### Dependency Updates
2930
+
2931
+ - `@stream-io/video-client` updated to version `0.3.30`
2932
+ - `@stream-io/video-react-bindings` updated to version `0.2.31`
2933
+
2934
+ ### Features
2935
+
2936
+ - ScreenShare Audio support ([#1118](https://github.com/GetStream/stream-video-js/issues/1118)) ([5b63e1c](https://github.com/GetStream/stream-video-js/commit/5b63e1c5f52c76e3761e6907bd3786c19f0e5c6d))
2937
+
2938
+ ### [0.1.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.1.1...@stream-io/video-react-native-sdk-0.1.2) (2023-10-05)
2939
+
2940
+ ### Dependency Updates
2941
+
2942
+ - `@stream-io/video-client` updated to version `0.3.29`
2943
+ - `@stream-io/video-react-bindings` updated to version `0.2.30`
2944
+
2945
+ ### [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)
2946
+
2947
+ ### Features
2948
+
2949
+ - **react-native:** add lobby footer component ([#1091](https://github.com/GetStream/stream-video-js/issues/1091)) ([4945eb3](https://github.com/GetStream/stream-video-js/commit/4945eb358c4217f502a9735865664cef6c133a93))
2950
+
2951
+ ## [0.1.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.28...@stream-io/video-react-native-sdk-0.1.0) (2023-10-04)
2952
+
2953
+ ### ⚠ BREAKING CHANGES
2954
+
2955
+ - **react-native:** set reactions through props and not config (#1069)
2956
+
2957
+ ### Features
2958
+
2959
+ - **react-native:** set reactions through props and not config ([#1069](https://github.com/GetStream/stream-video-js/issues/1069)) ([9569648](https://github.com/GetStream/stream-video-js/commit/95696482c5622c3c93f071356b980deebee6bfbf))
2960
+
2961
+ ### [0.0.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.27...@stream-io/video-react-native-sdk-0.0.28) (2023-10-02)
2962
+
2963
+ ### Features
2964
+
2965
+ - **react-native:** support landscape more for CallContent ([#1119](https://github.com/GetStream/stream-video-js/issues/1119)) ([2e218b4](https://github.com/GetStream/stream-video-js/commit/2e218b4ad8f00c5eb1632d64df6c5d3456b5af41))
2966
+
2967
+ ### [0.0.27](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.26...@stream-io/video-react-native-sdk-0.0.27) (2023-09-28)
2968
+
2969
+ ### Dependency Updates
2970
+
2971
+ - `@stream-io/video-client` updated to version `0.3.28`
2972
+ - `@stream-io/video-react-bindings` updated to version `0.2.29`
2973
+
2974
+ ### [0.0.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.25...@stream-io/video-react-native-sdk-0.0.26) (2023-09-28)
2975
+
2976
+ ### Bug Fixes
2977
+
2978
+ - **react-native:** initial media stream management according to BE and SDK settings ([#1110](https://github.com/GetStream/stream-video-js/issues/1110)) ([cca7cf6](https://github.com/GetStream/stream-video-js/commit/cca7cf6d977a3a46e17deb73fa4f1b585d2039e8))
2979
+
2980
+ ### [0.0.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.24...@stream-io/video-react-native-sdk-0.0.25) (2023-09-28)
2981
+
2982
+ ### Dependency Updates
2983
+
2984
+ - `@stream-io/video-client` updated to version `0.1.0`
2985
+ - `@stream-io/video-react-bindings` updated to version `0.2.28`
2986
+
2987
+ ### [0.0.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.23...@stream-io/video-react-native-sdk-0.0.24) (2023-09-27)
2988
+
2989
+ ### Dependency Updates
2990
+
2991
+ - `@stream-io/video-client` updated to version `0.1.0`
2992
+ - `@stream-io/video-react-bindings` updated to version `0.2.27`
2993
+
2994
+ ### Features
2995
+
2996
+ - **Call Preview:** Support for call thumbnails ([#1099](https://github.com/GetStream/stream-video-js/issues/1099)) ([9274f76](https://github.com/GetStream/stream-video-js/commit/9274f760ed264ee0ee6ac97c6fe679288e067fd8))
2997
+
2998
+ ### [0.0.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.22...@stream-io/video-react-native-sdk-0.0.23) (2023-09-27)
2999
+
3000
+ ### Dependency Updates
3001
+
3002
+ - `@stream-io/video-client` updated to version `0.1.0`
3003
+ - `@stream-io/video-react-bindings` updated to version `0.2.26`
3004
+
3005
+ ### [0.0.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.21...@stream-io/video-react-native-sdk-0.0.22) (2023-09-26)
3006
+
3007
+ ### Dependency Updates
3008
+
3009
+ - `@stream-io/video-client` updated to version `0.1.0`
3010
+ - `@stream-io/video-react-bindings` updated to version `0.2.25`
3011
+
3012
+ ### [0.0.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.20...@stream-io/video-react-native-sdk-0.0.21) (2023-09-26)
3013
+
3014
+ ### Dependency Updates
3015
+
3016
+ - `@stream-io/video-client` updated to version `0.1.0`
3017
+ - `@stream-io/video-react-bindings` updated to version `0.2.24`
3018
+
3019
+ ### [0.0.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.19...@stream-io/video-react-native-sdk-0.0.20) (2023-09-25)
3020
+
3021
+ ### Dependency Updates
3022
+
3023
+ - `@stream-io/i18n` updated to version `0.1.2`
3024
+ - `@stream-io/video-client` updated to version `0.1.0`
3025
+ - `@stream-io/video-react-bindings` updated to version `0.2.23`
3026
+
3027
+ ### Bug Fixes
3028
+
3029
+ - Add extra delay before attempting to play video in Safari and Firefox ([#1106](https://github.com/GetStream/stream-video-js/issues/1106)) ([5b4a589](https://github.com/GetStream/stream-video-js/commit/5b4a58918240a7b63807726609d6d54b92cfe1d2))
3030
+
3031
+ ### [0.0.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.18...@stream-io/video-react-native-sdk-0.0.19) (2023-09-20)
3032
+
3033
+ ### Dependency Updates
3034
+
3035
+ - `@stream-io/video-client` updated to version `0.1.0`
3036
+ - `@stream-io/video-react-bindings` updated to version `0.2.22`
3037
+
3038
+ ### [0.0.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.17...@stream-io/video-react-native-sdk-0.0.18) (2023-09-19)
3039
+
3040
+ ### Dependency Updates
3041
+
3042
+ - `@stream-io/video-client` updated to version `0.1.0`
3043
+ - `@stream-io/video-react-bindings` updated to version `0.2.21`
3044
+
3045
+ ### [0.0.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.16...@stream-io/video-react-native-sdk-0.0.17) (2023-09-18)
3046
+
3047
+ ### Dependency Updates
3048
+
3049
+ - `@stream-io/video-client` updated to version `0.1.0`
3050
+
3051
+ ### [0.0.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.15...@stream-io/video-react-native-sdk-0.0.16) (2023-09-15)
3052
+
3053
+ ### Dependency Updates
3054
+
3055
+ - `@stream-io/video-client` updated to version `0.1.0`
3056
+ - `@stream-io/video-react-bindings` updated to version `0.2.20`
3057
+
3058
+ ### Bug Fixes
3059
+
3060
+ - initial device state handling ([#1092](https://github.com/GetStream/stream-video-js/issues/1092)) ([a98d07f](https://github.com/GetStream/stream-video-js/commit/a98d07f9e3eaf6bb059911538ba2a64a1550e53d))
3061
+
3062
+ ### [0.0.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.14...@stream-io/video-react-native-sdk-0.0.15) (2023-09-15)
3063
+
3064
+ ### Dependency Updates
3065
+
3066
+ - `@stream-io/video-client` updated to version `0.1.0`
3067
+ - `@stream-io/video-react-bindings` updated to version `0.2.19`
3068
+
3069
+ ### [0.0.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.13...@stream-io/video-react-native-sdk-0.0.14) (2023-09-14)
3070
+
3071
+ ### Dependency Updates
3072
+
3073
+ - `@stream-io/video-client` updated to version `0.1.0`
3074
+ - `@stream-io/video-react-bindings` updated to version `0.2.18`
3075
+
3076
+ ### [0.0.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.12...@stream-io/video-react-native-sdk-0.0.13) (2023-09-13)
3077
+
3078
+ ### Dependency Updates
3079
+
3080
+ - `@stream-io/video-client` updated to version `0.1.0`
3081
+ - `@stream-io/video-react-bindings` updated to version `0.2.17`
3082
+
3083
+ ### [0.0.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.11...@stream-io/video-react-native-sdk-0.0.12) (2023-09-12)
3084
+
3085
+ ### Bug Fixes
3086
+
3087
+ - **react-native:** remove method to inform SDK about native permissions ([#1072](https://github.com/GetStream/stream-video-js/issues/1072)) ([53b4abd](https://github.com/GetStream/stream-video-js/commit/53b4abd80c17fc21d7f3a93dd103946ef0b3f080))
3088
+
3089
+ ### [0.0.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.10...@stream-io/video-react-native-sdk-0.0.11) (2023-09-12)
3090
+
3091
+ ### Bug Fixes
3092
+
3093
+ - **react-native:** add missing commonjs support ([#1075](https://github.com/GetStream/stream-video-js/issues/1075)) ([c9e4e7d](https://github.com/GetStream/stream-video-js/commit/c9e4e7df73c8568286afe18ec7816aa69836b1c7))
3094
+
3095
+ ### [0.0.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.9...@stream-io/video-react-native-sdk-0.0.10) (2023-09-11)
3096
+
3097
+ ### Bug Fixes
3098
+
3099
+ - **react-native:** add missing expo plugin in npm pack ([bfeb79d](https://github.com/GetStream/stream-video-js/commit/bfeb79d2a540f627e8fcefbe1524cf634307ce84))
3100
+
3101
+ ### [0.0.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.8...@stream-io/video-react-native-sdk-0.0.9) (2023-09-11)
3102
+
3103
+ ### Dependency Updates
3104
+
3105
+ - `@stream-io/video-client` updated to version `0.1.0`
3106
+ - `@stream-io/video-react-bindings` updated to version `0.2.16`
3107
+
3108
+ ### [0.0.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.7...@stream-io/video-react-native-sdk-0.0.8) (2023-09-07)
3109
+
3110
+ ### Features
3111
+
3112
+ - **react-native:** add expo video sample app ([#974](https://github.com/GetStream/stream-video-js/issues/974)) ([3c61756](https://github.com/GetStream/stream-video-js/commit/3c617566bea8160c765682c256d84d72e4243082))
3113
+
3114
+ ### [0.0.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.6...@stream-io/video-react-native-sdk-0.0.7) (2023-09-06)
3115
+
3116
+ ### Bug Fixes
3117
+
3118
+ - downgraded rn url polyfill dep to be compatible with jest ([#1059](https://github.com/GetStream/stream-video-js/issues/1059)) ([6f17239](https://github.com/GetStream/stream-video-js/commit/6f1723943e106a8584e46976350f1898b1b3bf50))
3119
+
3120
+ ### [0.0.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.5...@stream-io/video-react-native-sdk-0.0.6) (2023-09-05)
3121
+
3122
+ ### Bug Fixes
3123
+
3124
+ - added missing props for RingingCallContent ([#1057](https://github.com/GetStream/stream-video-js/issues/1057)) ([60bb247](https://github.com/GetStream/stream-video-js/commit/60bb2474f837346a87e06610fe26758caf12c890))
3125
+
3126
+ ### [0.0.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.4...@stream-io/video-react-native-sdk-0.0.5) (2023-09-05)
3127
+
3128
+ ### Bug Fixes
3129
+
3130
+ - override default handler with onPressHandler prop for ToggleCameraButton ([#1053](https://github.com/GetStream/stream-video-js/issues/1053)) ([2eecce6](https://github.com/GetStream/stream-video-js/commit/2eecce6d8e66ba58bede69776815efa929680716))
3131
+
3132
+ ### [0.0.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.3...@stream-io/video-react-native-sdk-0.0.4) (2023-09-05)
3133
+
3134
+ ### Bug Fixes
3135
+
3136
+ - **react-native:** missing translations in lobby component ([3dbed69](https://github.com/GetStream/stream-video-js/commit/3dbed692dcbb4b6a948cc1eb41540ab1e7825912))
3137
+
3138
+ ### [0.0.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.2...@stream-io/video-react-native-sdk-0.0.3) (2023-09-05)
3139
+
3140
+ ### Dependency Updates
3141
+
3142
+ - `@stream-io/video-client` updated to version `0.1.0`
3143
+ - `@stream-io/video-react-bindings` updated to version `0.2.15`
3144
+
3145
+ ### [0.0.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1...@stream-io/video-react-native-sdk-0.0.2) (2023-09-05)
3146
+
3147
+ ### Bug Fixes
3148
+
3149
+ - handle media device initial state when media status is undefined ([#1051](https://github.com/GetStream/stream-video-js/issues/1051)) ([4c9ff8d](https://github.com/GetStream/stream-video-js/commit/4c9ff8dda64eb5939ab1bae42734003da9aa768b))
3150
+
3151
+ ### [0.0.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.415...@stream-io/video-react-native-sdk-0.0.1) (2023-08-31)
3152
+
3153
+ ### Dependency Updates
3154
+
3155
+ - `@stream-io/i18n` updated to version `0.1.1`
3156
+ - `@stream-io/video-client` updated to version `0.1.0`
3157
+ - `@stream-io/video-react-bindings` updated to version `0.2.14`
3158
+
3159
+ ### Features
3160
+
3161
+ - first stable release 0.0.1 ([#1027](https://github.com/GetStream/stream-video-js/issues/1027)) ([3a2efe7](https://github.com/GetStream/stream-video-js/commit/3a2efe7a86c6ef5c79630207e85d4f4370ac5848))
3162
+ - **react-native:** first stable release ([#1036](https://github.com/GetStream/stream-video-js/issues/1036)) ([49750c1](https://github.com/GetStream/stream-video-js/commit/49750c1506fe94f680f0b2361c3506b57031ad81))