@stream-io/video-react-native-sdk 1.2.16 → 1.3.1

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 (148) hide show
  1. package/CHANGELOG.md +1609 -0
  2. package/dist/commonjs/components/Call/CallControls/IncomingCallControls.js +2 -1
  3. package/dist/commonjs/components/Call/CallControls/IncomingCallControls.js.map +1 -1
  4. package/dist/commonjs/components/Call/CallControls/OutgoingCallControls.js +4 -3
  5. package/dist/commonjs/components/Call/CallControls/OutgoingCallControls.js.map +1 -1
  6. package/dist/commonjs/components/Call/CallControls/RejectCallButton.js +7 -4
  7. package/dist/commonjs/components/Call/CallControls/RejectCallButton.js.map +1 -1
  8. package/dist/commonjs/hooks/push/useIosCallKeepEventsSetupEffect.js +43 -6
  9. package/dist/commonjs/hooks/push/useIosCallKeepEventsSetupEffect.js.map +1 -1
  10. package/dist/commonjs/hooks/push/useIosCallkeepWithCallingStateEffect.js +1 -1
  11. package/dist/commonjs/hooks/push/useIosVoipPushEventsSetupEffect.js +2 -2
  12. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js +2 -7
  13. package/dist/commonjs/hooks/push/useProcessPushCallEffect.js.map +1 -1
  14. package/dist/commonjs/hooks/push/useProcessPushNonRingingCallEffect.js +3 -3
  15. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js +1 -0
  16. package/dist/commonjs/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  17. package/dist/commonjs/providers/StreamCall.js +1 -1
  18. package/dist/commonjs/utils/StreamVideoRN/index.js +5 -6
  19. package/dist/commonjs/utils/StreamVideoRN/index.js.map +1 -1
  20. package/dist/commonjs/utils/index.js +12 -0
  21. package/dist/commonjs/utils/index.js.map +1 -1
  22. package/dist/commonjs/utils/push/android.js +23 -79
  23. package/dist/commonjs/utils/push/android.js.map +1 -1
  24. package/dist/commonjs/utils/push/index.js +39 -0
  25. package/dist/commonjs/utils/push/index.js.map +1 -0
  26. package/dist/commonjs/utils/push/internal/rxSubjects.js.map +1 -0
  27. package/dist/commonjs/utils/push/internal/utils.js +158 -0
  28. package/dist/commonjs/utils/push/internal/utils.js.map +1 -0
  29. package/dist/commonjs/utils/push/ios.js +43 -84
  30. package/dist/commonjs/utils/push/ios.js.map +1 -1
  31. package/dist/commonjs/utils/push/libs/expoNotifications.js.map +1 -1
  32. package/dist/commonjs/utils/push/libs/index.js +0 -11
  33. package/dist/commonjs/utils/push/libs/index.js.map +1 -1
  34. package/dist/commonjs/utils/push/libs/iosPushNotification.js.map +1 -1
  35. package/dist/commonjs/utils/push/utils.js +29 -150
  36. package/dist/commonjs/utils/push/utils.js.map +1 -1
  37. package/dist/commonjs/version.js +1 -1
  38. package/dist/commonjs/version.js.map +1 -1
  39. package/dist/module/components/Call/CallControls/IncomingCallControls.js +2 -1
  40. package/dist/module/components/Call/CallControls/IncomingCallControls.js.map +1 -1
  41. package/dist/module/components/Call/CallControls/OutgoingCallControls.js +4 -3
  42. package/dist/module/components/Call/CallControls/OutgoingCallControls.js.map +1 -1
  43. package/dist/module/components/Call/CallControls/RejectCallButton.js +7 -4
  44. package/dist/module/components/Call/CallControls/RejectCallButton.js.map +1 -1
  45. package/dist/module/hooks/push/useIosCallKeepEventsSetupEffect.js +41 -4
  46. package/dist/module/hooks/push/useIosCallKeepEventsSetupEffect.js.map +1 -1
  47. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js +1 -1
  48. package/dist/module/hooks/push/useIosCallkeepWithCallingStateEffect.js.map +1 -1
  49. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js +2 -2
  50. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  51. package/dist/module/hooks/push/useProcessPushCallEffect.js +2 -7
  52. package/dist/module/hooks/push/useProcessPushCallEffect.js.map +1 -1
  53. package/dist/module/hooks/push/useProcessPushNonRingingCallEffect.js +3 -3
  54. package/dist/module/hooks/push/useProcessPushNonRingingCallEffect.js.map +1 -1
  55. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js +1 -0
  56. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  57. package/dist/module/providers/StreamCall.js +1 -1
  58. package/dist/module/providers/StreamCall.js.map +1 -1
  59. package/dist/module/utils/StreamVideoRN/index.js +5 -6
  60. package/dist/module/utils/StreamVideoRN/index.js.map +1 -1
  61. package/dist/module/utils/index.js +1 -0
  62. package/dist/module/utils/index.js.map +1 -1
  63. package/dist/module/utils/push/android.js +20 -79
  64. package/dist/module/utils/push/android.js.map +1 -1
  65. package/dist/module/utils/push/index.js +4 -0
  66. package/dist/module/utils/push/index.js.map +1 -0
  67. package/dist/module/utils/push/internal/rxSubjects.js.map +1 -0
  68. package/dist/module/utils/push/internal/utils.js +147 -0
  69. package/dist/module/utils/push/internal/utils.js.map +1 -0
  70. package/dist/module/utils/push/ios.js +40 -81
  71. package/dist/module/utils/push/ios.js.map +1 -1
  72. package/dist/module/utils/push/libs/expoNotifications.js.map +1 -1
  73. package/dist/module/utils/push/libs/index.js +0 -1
  74. package/dist/module/utils/push/libs/index.js.map +1 -1
  75. package/dist/module/utils/push/libs/iosPushNotification.js.map +1 -1
  76. package/dist/module/utils/push/utils.js +25 -144
  77. package/dist/module/utils/push/utils.js.map +1 -1
  78. package/dist/module/version.js +1 -1
  79. package/dist/module/version.js.map +1 -1
  80. package/dist/typescript/components/Call/CallControls/IncomingCallControls.d.ts.map +1 -1
  81. package/dist/typescript/components/Call/CallControls/OutgoingCallControls.d.ts.map +1 -1
  82. package/dist/typescript/components/Call/CallControls/RejectCallButton.d.ts +17 -2
  83. package/dist/typescript/components/Call/CallControls/RejectCallButton.d.ts.map +1 -1
  84. package/dist/typescript/hooks/push/useIosCallKeepEventsSetupEffect.d.ts.map +1 -1
  85. package/dist/typescript/hooks/useAndroidKeepCallAliveEffect.d.ts.map +1 -1
  86. package/dist/typescript/utils/StreamVideoRN/index.d.ts.map +1 -1
  87. package/dist/typescript/utils/StreamVideoRN/types.d.ts +6 -4
  88. package/dist/typescript/utils/StreamVideoRN/types.d.ts.map +1 -1
  89. package/dist/typescript/utils/index.d.ts +1 -0
  90. package/dist/typescript/utils/index.d.ts.map +1 -1
  91. package/dist/typescript/utils/push/android.d.ts +12 -2
  92. package/dist/typescript/utils/push/android.d.ts.map +1 -1
  93. package/dist/typescript/utils/push/index.d.ts +4 -0
  94. package/dist/typescript/utils/push/index.d.ts.map +1 -0
  95. package/dist/typescript/utils/push/{rxSubjects.d.ts → internal/rxSubjects.d.ts} +1 -1
  96. package/dist/typescript/utils/push/internal/rxSubjects.d.ts.map +1 -0
  97. package/dist/typescript/utils/push/internal/utils.d.ts +43 -0
  98. package/dist/typescript/utils/push/internal/utils.d.ts.map +1 -0
  99. package/dist/typescript/utils/push/ios.d.ts +8 -3
  100. package/dist/typescript/utils/push/ios.d.ts.map +1 -1
  101. package/dist/typescript/utils/push/libs/expoNotifications.d.ts +2 -0
  102. package/dist/typescript/utils/push/libs/expoNotifications.d.ts.map +1 -1
  103. package/dist/typescript/utils/push/libs/index.d.ts +0 -1
  104. package/dist/typescript/utils/push/libs/index.d.ts.map +1 -1
  105. package/dist/typescript/utils/push/libs/iosPushNotification.d.ts +2 -0
  106. package/dist/typescript/utils/push/libs/iosPushNotification.d.ts.map +1 -1
  107. package/dist/typescript/utils/push/utils.d.ts +14 -42
  108. package/dist/typescript/utils/push/utils.d.ts.map +1 -1
  109. package/dist/typescript/version.d.ts +1 -1
  110. package/dist/typescript/version.d.ts.map +1 -1
  111. package/package.json +6 -11
  112. package/src/components/Call/CallControls/IncomingCallControls.tsx +4 -1
  113. package/src/components/Call/CallControls/OutgoingCallControls.tsx +3 -2
  114. package/src/components/Call/CallControls/RejectCallButton.tsx +19 -3
  115. package/src/hooks/push/useIosCallKeepEventsSetupEffect.ts +62 -6
  116. package/src/hooks/push/useIosCallkeepWithCallingStateEffect.ts +1 -1
  117. package/src/hooks/push/useIosVoipPushEventsSetupEffect.ts +2 -2
  118. package/src/hooks/push/useProcessPushCallEffect.ts +2 -7
  119. package/src/hooks/push/useProcessPushNonRingingCallEffect.ts +3 -3
  120. package/src/hooks/useAndroidKeepCallAliveEffect.ts +1 -0
  121. package/src/providers/StreamCall.tsx +1 -1
  122. package/src/utils/StreamVideoRN/index.ts +11 -6
  123. package/src/utils/StreamVideoRN/types.ts +6 -4
  124. package/src/utils/index.ts +1 -0
  125. package/src/utils/push/android.ts +28 -99
  126. package/src/utils/push/index.ts +3 -0
  127. package/src/utils/push/{rxSubjects.ts → internal/rxSubjects.ts} +1 -1
  128. package/src/utils/push/internal/utils.ts +178 -0
  129. package/src/utils/push/ios.ts +49 -115
  130. package/src/utils/push/libs/expoNotifications.ts +4 -0
  131. package/src/utils/push/libs/index.ts +0 -1
  132. package/src/utils/push/libs/iosPushNotification.ts +4 -0
  133. package/src/utils/push/utils.ts +44 -175
  134. package/src/version.ts +1 -1
  135. package/dist/commonjs/utils/push/libs/expoTaskManager.js +0 -17
  136. package/dist/commonjs/utils/push/libs/expoTaskManager.js.map +0 -1
  137. package/dist/commonjs/utils/push/rxSubjects.js.map +0 -1
  138. package/dist/module/utils/push/libs/expoTaskManager.js +0 -11
  139. package/dist/module/utils/push/libs/expoTaskManager.js.map +0 -1
  140. package/dist/module/utils/push/rxSubjects.js.map +0 -1
  141. package/dist/typescript/utils/push/libs/expoTaskManager.d.ts +0 -3
  142. package/dist/typescript/utils/push/libs/expoTaskManager.d.ts.map +0 -1
  143. package/dist/typescript/utils/push/rxSubjects.d.ts.map +0 -1
  144. package/ios/StreamVideoReactNative.xcodeproj/project.xcworkspace/xcuserdata/santhoshvaiyapuri.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  145. package/ios/StreamVideoReactNative.xcodeproj/xcuserdata/santhoshvaiyapuri.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
  146. package/src/utils/push/libs/expoTaskManager.ts +0 -16
  147. /package/dist/commonjs/utils/push/{rxSubjects.js → internal/rxSubjects.js} +0 -0
  148. /package/dist/module/utils/push/{rxSubjects.js → internal/rxSubjects.js} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1609 @@
1
+ # Changelog
2
+
3
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
+
5
+ ## [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)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@stream-io/video-client` updated to version `1.11.1`
10
+ * `@stream-io/video-react-bindings` updated to version `1.1.18`
11
+
12
+ ### Bug Fixes
13
+
14
+ * 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))
15
+
16
+ ## [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)
17
+
18
+
19
+ ### Features
20
+
21
+ * 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)
22
+
23
+ ## [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)
24
+
25
+ ### Dependency Updates
26
+
27
+ * `@stream-io/video-client` updated to version `1.11.0`
28
+ * `@stream-io/video-react-bindings` updated to version `1.1.17`
29
+ ## [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)
30
+
31
+ ### Dependency Updates
32
+
33
+ * `@stream-io/video-client` updated to version `1.10.5`
34
+ * `@stream-io/video-react-bindings` updated to version `1.1.16`
35
+ ## [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)
36
+
37
+ ### Dependency Updates
38
+
39
+ * `@stream-io/video-client` updated to version `1.10.4`
40
+ * `@stream-io/video-react-bindings` updated to version `1.1.15`
41
+ ## [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)
42
+
43
+ ### Dependency Updates
44
+
45
+ * `@stream-io/video-client` updated to version `1.10.3`
46
+ * `@stream-io/video-react-bindings` updated to version `1.1.14`
47
+ ## [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)
48
+
49
+
50
+ ### Bug Fixes
51
+
52
+ * 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))
53
+
54
+ ## [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)
55
+
56
+ ### Dependency Updates
57
+
58
+ * `@stream-io/video-react-bindings` updated to version `1.1.13`
59
+ ## [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)
60
+
61
+ ### Dependency Updates
62
+
63
+ * `@stream-io/video-client` updated to version `1.10.2`
64
+ * `@stream-io/video-react-bindings` updated to version `1.1.12`
65
+
66
+ ### Bug Fixes
67
+
68
+ * 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))
69
+
70
+ ## [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)
71
+
72
+ ### Dependency Updates
73
+
74
+ * `@stream-io/video-react-bindings` updated to version `1.1.11`
75
+ ## [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)
76
+
77
+ ### Dependency Updates
78
+
79
+ * `@stream-io/video-client` updated to version `1.10.1`
80
+ * `@stream-io/video-react-bindings` updated to version `1.1.10`
81
+ ## [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)
82
+
83
+ ### Dependency Updates
84
+
85
+ * `@stream-io/video-client` updated to version `1.10.0`
86
+ * `@stream-io/video-react-bindings` updated to version `1.1.9`
87
+ ## [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)
88
+
89
+ ### Dependency Updates
90
+
91
+ * `@stream-io/video-client` updated to version `1.9.3`
92
+ * `@stream-io/video-react-bindings` updated to version `1.1.8`
93
+ ## [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)
94
+
95
+
96
+ ### Bug Fixes
97
+
98
+ * 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))
99
+
100
+ ## [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)
101
+
102
+ ### Dependency Updates
103
+
104
+ * `@stream-io/video-client` updated to version `1.9.2`
105
+ * `@stream-io/video-react-bindings` updated to version `1.1.7`
106
+ ## [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)
107
+
108
+ ### Dependency Updates
109
+
110
+ * `@stream-io/video-client` updated to version `1.9.1`
111
+ * `@stream-io/video-react-bindings` updated to version `1.1.6`
112
+ ## [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)
113
+
114
+
115
+ ### Bug Fixes
116
+
117
+ * 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)
118
+
119
+ ## [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)
120
+
121
+ ### Dependency Updates
122
+
123
+ * `@stream-io/video-client` updated to version `1.9.0`
124
+ * `@stream-io/video-react-bindings` updated to version `1.1.5`
125
+
126
+ ### Features
127
+
128
+ * **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))
129
+
130
+ ## [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)
131
+
132
+ ### Dependency Updates
133
+
134
+ * `@stream-io/video-client` updated to version `1.8.4`
135
+ * `@stream-io/video-react-bindings` updated to version `1.1.4`
136
+ ## [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)
137
+
138
+
139
+ ### Bug Fixes
140
+
141
+ * **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))
142
+
143
+ ## [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)
144
+
145
+ ### Dependency Updates
146
+
147
+ * `@stream-io/video-client` updated to version `1.8.3`
148
+ * `@stream-io/video-react-bindings` updated to version `1.1.3`
149
+ ## [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)
150
+
151
+ ### Dependency Updates
152
+
153
+ * `@stream-io/video-client` updated to version `1.8.2`
154
+ * `@stream-io/video-react-bindings` updated to version `1.1.2`
155
+ ## [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)
156
+
157
+ ### Dependency Updates
158
+
159
+ * `@stream-io/video-client` updated to version `1.8.1`
160
+ * `@stream-io/video-react-bindings` updated to version `1.1.1`
161
+ ## [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)
162
+
163
+
164
+ ### Bug Fixes
165
+
166
+ * 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))
167
+
168
+ ## [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)
169
+
170
+ ### Dependency Updates
171
+
172
+ * `@stream-io/video-client` updated to version `1.8.0`
173
+ * `@stream-io/video-react-bindings` updated to version `1.1.0`
174
+
175
+ ### Features
176
+
177
+ * manual video quality selection ([#1486](https://github.com/GetStream/stream-video-js/issues/1486)) ([3a754af](https://github.com/GetStream/stream-video-js/commit/3a754afa1bd13d038b1023520ec8a5296ad2669e))
178
+
179
+ ## [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)
180
+
181
+ ### Dependency Updates
182
+
183
+ * `@stream-io/video-client` updated to version `1.7.4`
184
+ * `@stream-io/video-react-bindings` updated to version `1.0.10`
185
+ ## [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)
186
+
187
+ ### Dependency Updates
188
+
189
+ * `@stream-io/video-client` updated to version `1.7.3`
190
+ * `@stream-io/video-react-bindings` updated to version `1.0.9`
191
+ ## [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)
192
+
193
+ ### Dependency Updates
194
+
195
+ * `@stream-io/video-client` updated to version `1.7.2`
196
+ * `@stream-io/video-react-bindings` updated to version `1.0.8`
197
+ ## [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)
198
+
199
+ ### Dependency Updates
200
+
201
+ * `@stream-io/video-client` updated to version `1.7.1`
202
+ * `@stream-io/video-react-bindings` updated to version `1.0.7`
203
+
204
+ * `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))
205
+
206
+ ## [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)
207
+
208
+ ### Dependency Updates
209
+
210
+ * `@stream-io/video-client` updated to version `1.7.0`
211
+ * `@stream-io/video-react-bindings` updated to version `1.0.6`
212
+ ## [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)
213
+
214
+ ### Dependency Updates
215
+
216
+ * `@stream-io/video-client` updated to version `1.6.5`
217
+ * `@stream-io/video-react-bindings` updated to version `1.0.5`
218
+ ## [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)
219
+
220
+ ### Dependency Updates
221
+
222
+ * `@stream-io/video-client` updated to version `1.6.4`
223
+ * `@stream-io/video-react-bindings` updated to version `1.0.4`
224
+ ## [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)
225
+
226
+
227
+ ### Bug Fixes
228
+
229
+ * 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))
230
+
231
+ ## [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)
232
+
233
+ ### Dependency Updates
234
+
235
+ * `@stream-io/video-client` updated to version `1.6.3`
236
+ * `@stream-io/video-react-bindings` updated to version `1.0.3`
237
+ ## [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)
238
+
239
+ ### Dependency Updates
240
+
241
+ * `@stream-io/video-filters-react-native` updated to version `0.2.4`
242
+
243
+ ### Bug Fixes
244
+
245
+ * 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))
246
+
247
+ ## [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)
248
+
249
+ ### Dependency Updates
250
+
251
+ * `@stream-io/video-client` updated to version `1.6.2`
252
+ * `@stream-io/video-react-bindings` updated to version `1.0.2`
253
+ ## [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)
254
+
255
+ ### Dependency Updates
256
+
257
+ * `@stream-io/video-filters-react-native` updated to version `0.2.3`
258
+
259
+ ### Bug Fixes
260
+
261
+ * set min ios version to 13.0 for the podspecs ([b6d8c16](https://github.com/GetStream/stream-video-js/commit/b6d8c163b66f75e12d0316abe46eebc6b017c29a))
262
+
263
+ ## [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)
264
+
265
+ ### Dependency Updates
266
+
267
+ * `@stream-io/video-client` updated to version `1.6.1`
268
+ * `@stream-io/video-react-bindings` updated to version `1.0.1`
269
+ ## [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)
270
+
271
+ ### Dependency Updates
272
+
273
+ * `@stream-io/video-filters-react-native` updated to version `0.2.2`
274
+
275
+ * reset releaseAs tags [skip ci] ([6161687](https://github.com/GetStream/stream-video-js/commit/61616870178d6bbc29b22ca3b1a354e5e172c9c3))
276
+
277
+
278
+ ### Bug Fixes
279
+
280
+ * **ios:** if min ios version is not present default to 12 ([9279d59](https://github.com/GetStream/stream-video-js/commit/9279d59e861a51c723a0f17229c39dae946ee664))
281
+
282
+ ## [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)
283
+
284
+
285
+ * **@stream-io/video-react-native-sdk:** release version 1.0.0 ([c990e7a](https://github.com/GetStream/stream-video-js/commit/c990e7a3132c5ee2ddcc707d8a4759c5a08fd3ef))
286
+
287
+
288
+ ### Features
289
+
290
+ * Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
291
+
292
+ ## [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)
293
+
294
+
295
+ ### Features
296
+
297
+ * Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
298
+
299
+ ### [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)
300
+
301
+
302
+ ### Bug Fixes
303
+
304
+ * 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)
305
+
306
+ ### [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)
307
+
308
+
309
+ ### Features
310
+
311
+ * 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))
312
+
313
+ ### [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)
314
+
315
+ ### Dependency Updates
316
+
317
+ * `@stream-io/video-client` updated to version `1.5.2`
318
+ * `@stream-io/video-react-bindings` updated to version `0.4.55`
319
+ ### [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)
320
+
321
+ ### Dependency Updates
322
+
323
+ * `@stream-io/video-client` updated to version `1.5.1`
324
+ * `@stream-io/video-react-bindings` updated to version `0.4.54`
325
+ ### [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)
326
+
327
+ ### Dependency Updates
328
+
329
+ * `@stream-io/video-client` updated to version `1.5.0`
330
+ * `@stream-io/video-react-bindings` updated to version `0.4.53`
331
+
332
+ ### Features
333
+
334
+ * **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))
335
+
336
+ ### [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)
337
+
338
+
339
+ ### Bug Fixes
340
+
341
+ * push notifications not dismissed automatically on android 8 and above ([18718e6](https://github.com/GetStream/stream-video-js/commit/18718e637265e02510a3d01a35be37e9a18d5117))
342
+
343
+ ## [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)
344
+
345
+
346
+ ### ⚠ BREAKING CHANGES
347
+
348
+ * **react-native:** make notifee to be optional (#1456)
349
+
350
+ ### Bug Fixes
351
+
352
+ * **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))
353
+
354
+ ### [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)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * 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))
360
+
361
+ ### [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)
362
+
363
+ ### Dependency Updates
364
+
365
+ * `@stream-io/video-client` updated to version `1.4.8`
366
+ * `@stream-io/video-react-bindings` updated to version `0.4.52`
367
+ ### [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)
368
+
369
+ ### Dependency Updates
370
+
371
+ * `@stream-io/video-client` updated to version `1.4.7`
372
+ * `@stream-io/video-react-bindings` updated to version `0.4.51`
373
+
374
+ ### Bug Fixes
375
+
376
+ * 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))
377
+
378
+ ### [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)
379
+
380
+ ### Dependency Updates
381
+
382
+ * `@stream-io/video-client` updated to version `1.4.6`
383
+ * `@stream-io/video-react-bindings` updated to version `0.4.50`
384
+
385
+ ### Bug Fixes
386
+
387
+ * 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))
388
+
389
+ ### [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)
390
+
391
+
392
+ ### Bug Fixes
393
+
394
+ * incoming call notifications not removed on call.leave on android 8 and above ([4000f8a](https://github.com/GetStream/stream-video-js/commit/4000f8a06299fc056b135992eba5d745c9202289))
395
+
396
+ ### [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)
397
+
398
+ ### Dependency Updates
399
+
400
+ * `@stream-io/video-client` updated to version `1.4.5`
401
+ * `@stream-io/video-react-bindings` updated to version `0.4.49`
402
+ ### [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)
403
+
404
+
405
+ ### Bug Fixes
406
+
407
+ * **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))
408
+
409
+ ## [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)
410
+
411
+
412
+ ### ⚠ BREAKING CHANGES
413
+
414
+ * **react-native:** support targetSdk android 14 (#1432)
415
+
416
+ ### Features
417
+
418
+ * **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))
419
+
420
+ ### [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)
421
+
422
+ ### Dependency Updates
423
+
424
+ * `@stream-io/video-client` updated to version `1.4.4`
425
+ * `@stream-io/video-react-bindings` updated to version `0.4.48`
426
+ ### [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)
427
+
428
+
429
+ ### Features
430
+
431
+ * **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))
432
+
433
+ ### [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)
434
+
435
+ ### Dependency Updates
436
+
437
+ * `@stream-io/video-client` updated to version `1.4.3`
438
+ * `@stream-io/video-react-bindings` updated to version `0.4.47`
439
+ ### [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)
440
+
441
+ ### Dependency Updates
442
+
443
+ * `@stream-io/video-client` updated to version `1.4.2`
444
+ * `@stream-io/video-react-bindings` updated to version `0.4.46`
445
+ ### [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)
446
+
447
+ ### Dependency Updates
448
+
449
+ * `@stream-io/video-client` updated to version `1.4.1`
450
+ * `@stream-io/video-react-bindings` updated to version `0.4.45`
451
+ ### [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)
452
+
453
+ ### Dependency Updates
454
+
455
+ * `@stream-io/video-client` updated to version `1.4.0`
456
+ * `@stream-io/video-react-bindings` updated to version `0.4.44`
457
+ ### [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)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * **rn:** screenshare overlay should not be seen for remote streams ([c9e9721](https://github.com/GetStream/stream-video-js/commit/c9e9721789de23985d6914011f5ddffd42fac5ab))
463
+
464
+ ### [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)
465
+
466
+
467
+ ### Bug Fixes
468
+
469
+ * **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))
470
+
471
+ ### [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)
472
+
473
+ ### Dependency Updates
474
+
475
+ * `@stream-io/video-filters-react-native` updated to version `0.2.1`
476
+
477
+ ### Features
478
+
479
+ * docs to make video filters usable without the RN SDK ([6061f4d](https://github.com/GetStream/stream-video-js/commit/6061f4d5b83d1ed46051dde12c7d3e269ec26aeb))
480
+
481
+ ## [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)
482
+
483
+ ### Dependency Updates
484
+
485
+ * `@stream-io/video-filters-react-native` updated to version `0.2.0`
486
+
487
+ ### ⚠ BREAKING CHANGES
488
+
489
+ * **react-native:** add ios video filters (#1400)
490
+
491
+ ### Features
492
+
493
+ * **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))
494
+
495
+ ### [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)
496
+
497
+ ### Dependency Updates
498
+
499
+ * `@stream-io/video-client` updated to version `1.3.1`
500
+ * `@stream-io/video-react-bindings` updated to version `0.4.43`
501
+ ### [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)
502
+
503
+
504
+ ### Bug Fixes
505
+
506
+ * **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))
507
+
508
+ ### [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)
509
+
510
+ ### Dependency Updates
511
+
512
+ * `@stream-io/video-client` updated to version `1.3.0`
513
+ * `@stream-io/video-react-bindings` updated to version `0.4.42`
514
+ ### [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)
515
+
516
+ ### Dependency Updates
517
+
518
+ * `@stream-io/video-filters-react-native` updated to version `0.1.1`
519
+ ### [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)
520
+
521
+ ### Dependency Updates
522
+
523
+ * `@stream-io/video-filters-react-native` updated to version `0.1.0`
524
+ ### [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)
525
+
526
+
527
+ ### Features
528
+
529
+ * 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))
530
+
531
+ ### [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)
532
+
533
+ ### Dependency Updates
534
+
535
+ * `@stream-io/video-client` updated to version `1.2.3`
536
+ * `@stream-io/video-react-bindings` updated to version `0.4.41`
537
+ ### [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)
538
+
539
+
540
+ ### Bug Fixes
541
+
542
+ * 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))
543
+
544
+ ### [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)
545
+
546
+
547
+ ### Bug Fixes
548
+
549
+ * change unnecessary warning log to info ([e8dda7d](https://github.com/GetStream/stream-video-js/commit/e8dda7ded3bedc63e20e8230ecfab702da154f98))
550
+
551
+ ### [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)
552
+
553
+ ### Dependency Updates
554
+
555
+ * `@stream-io/video-client` updated to version `1.2.2`
556
+ * `@stream-io/video-react-bindings` updated to version `0.4.40`
557
+ ### [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)
558
+
559
+ ### Dependency Updates
560
+
561
+ * `@stream-io/video-client` updated to version `1.2.1`
562
+ * `@stream-io/video-react-bindings` updated to version `0.4.39`
563
+ ### [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)
564
+
565
+
566
+ ### Bug Fixes
567
+
568
+ * **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))
569
+
570
+ ### [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)
571
+
572
+ ### Dependency Updates
573
+
574
+ * `@stream-io/video-client` updated to version `1.2.0`
575
+ * `@stream-io/video-react-bindings` updated to version `0.4.38`
576
+ ### [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)
577
+
578
+ ### Dependency Updates
579
+
580
+ * `@stream-io/video-client` updated to version `1.1.0`
581
+ * `@stream-io/video-react-bindings` updated to version `0.4.37`
582
+ * `@stream-io/video-filters-react-native` updated to version `0.0.1`
583
+
584
+ ### Features
585
+
586
+ * video filters on android ([#1382](https://github.com/GetStream/stream-video-js/issues/1382)) ([7ba8b0e](https://github.com/GetStream/stream-video-js/commit/7ba8b0e3b444869d38aae1a045dffb05444643f5))
587
+
588
+ ### [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)
589
+
590
+ ### Dependency Updates
591
+
592
+ * `@stream-io/video-client` updated to version `1.0.10`
593
+ * `@stream-io/video-react-bindings` updated to version `0.4.36`
594
+ ### [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)
595
+
596
+ ### Dependency Updates
597
+
598
+ * `@stream-io/video-client` updated to version `1.0.9`
599
+ * `@stream-io/video-react-bindings` updated to version `0.4.35`
600
+ ### [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)
601
+
602
+
603
+ ### Bug Fixes
604
+
605
+ * 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)
606
+
607
+ ### [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)
608
+
609
+
610
+ ### Bug Fixes
611
+
612
+ * **reac-native:** properly cleanup call instance in LivestreamPlayer ([4e60c50](https://github.com/GetStream/stream-video-js/commit/4e60c5067503a7e3e1fdc77a4f6775c5873ed508))
613
+
614
+ ### [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)
615
+
616
+
617
+ ### Features
618
+
619
+ * **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))
620
+
621
+ ### [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)
622
+
623
+ ### Dependency Updates
624
+
625
+ * `@stream-io/video-client` updated to version `1.0.8`
626
+ * `@stream-io/video-react-bindings` updated to version `0.4.34`
627
+ ### [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)
628
+
629
+
630
+ ### Bug Fixes
631
+
632
+ * 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))
633
+
634
+ ### [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)
635
+
636
+ ### Dependency Updates
637
+
638
+ * `@stream-io/video-client` updated to version `1.0.7`
639
+ * `@stream-io/video-react-bindings` updated to version `0.4.33`
640
+ ### [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)
641
+
642
+ ### Dependency Updates
643
+
644
+ * `@stream-io/video-client` updated to version `1.0.6`
645
+ * `@stream-io/video-react-bindings` updated to version `0.4.32`
646
+
647
+ ### Bug Fixes
648
+
649
+ * **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))
650
+
651
+ ### [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)
652
+
653
+ ### Dependency Updates
654
+
655
+ * `@stream-io/video-client` updated to version `1.0.5`
656
+ * `@stream-io/video-react-bindings` updated to version `0.4.31`
657
+ ### [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)
658
+
659
+
660
+ ### Features
661
+
662
+ * 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))
663
+
664
+ ### [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)
665
+
666
+
667
+ ### Bug Fixes
668
+
669
+ * **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))
670
+
671
+ ### [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)
672
+
673
+ ### Dependency Updates
674
+
675
+ * `@stream-io/video-client` updated to version `1.0.4`
676
+ * `@stream-io/video-react-bindings` updated to version `0.4.30`
677
+ ### [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)
678
+
679
+ ### Dependency Updates
680
+
681
+ * `@stream-io/video-client` updated to version `1.0.3`
682
+ * `@stream-io/video-react-bindings` updated to version `0.4.29`
683
+ ### [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)
684
+
685
+ ### Dependency Updates
686
+
687
+ * `@stream-io/video-client` updated to version `1.0.2`
688
+ * `@stream-io/video-react-bindings` updated to version `0.4.28`
689
+
690
+ ### Bug Fixes
691
+
692
+ * optimistically toggle device status ([#1342](https://github.com/GetStream/stream-video-js/issues/1342)) ([2e4e470](https://github.com/GetStream/stream-video-js/commit/2e4e470347fce7c7499dd21a931e5dec74bf9618))
693
+
694
+ ## [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)
695
+
696
+
697
+ ### ⚠ BREAKING CHANGES
698
+
699
+ * **react-native:** apply media stream management initial state asyncronously (#1345)
700
+
701
+ ### Bug Fixes
702
+
703
+ * **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)
704
+
705
+ ### [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)
706
+
707
+ ### Dependency Updates
708
+
709
+ * `@stream-io/video-client` updated to version `1.0.1`
710
+ * `@stream-io/video-react-bindings` updated to version `0.4.27`
711
+ ### [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)
712
+
713
+
714
+ ### Bug Fixes
715
+
716
+ * 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))
717
+
718
+ ### [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)
719
+
720
+ ### Dependency Updates
721
+
722
+ * `@stream-io/video-client` updated to version `1.0.0`
723
+ * `@stream-io/video-react-bindings` updated to version `0.4.26`
724
+ ### [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)
725
+
726
+ ### Dependency Updates
727
+
728
+ * `@stream-io/video-client` updated to version `0.8.0`
729
+ * `@stream-io/video-react-bindings` updated to version `0.4.25`
730
+ ### [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)
731
+
732
+ ### Dependency Updates
733
+
734
+ * `@stream-io/video-client` updated to version `0.7.13`
735
+ * `@stream-io/video-react-bindings` updated to version `0.4.24`
736
+ ### [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)
737
+
738
+ ### Dependency Updates
739
+
740
+ * `@stream-io/video-client` updated to version `0.7.12`
741
+ * `@stream-io/video-react-bindings` updated to version `0.4.23`
742
+ ### [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)
743
+
744
+ ### Dependency Updates
745
+
746
+ * `@stream-io/video-client` updated to version `0.7.11`
747
+ * `@stream-io/video-react-bindings` updated to version `0.4.22`
748
+
749
+ ### Bug Fixes
750
+
751
+ * **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)
752
+
753
+ ### [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)
754
+
755
+ ### Dependency Updates
756
+
757
+ * `@stream-io/video-client` updated to version `0.7.10`
758
+ * `@stream-io/video-react-bindings` updated to version `0.4.21`
759
+ ### [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)
760
+
761
+ ### Dependency Updates
762
+
763
+ * `@stream-io/video-client` updated to version `0.7.9`
764
+ * `@stream-io/video-react-bindings` updated to version `0.4.20`
765
+ ### [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)
766
+
767
+ ### Dependency Updates
768
+
769
+ * `@stream-io/video-client` updated to version `0.7.8`
770
+ * `@stream-io/video-react-bindings` updated to version `0.4.19`
771
+ ### [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)
772
+
773
+ ### Dependency Updates
774
+
775
+ * `@stream-io/video-client` updated to version `0.7.7`
776
+ * `@stream-io/video-react-bindings` updated to version `0.4.18`
777
+
778
+ ### Features
779
+
780
+ * **feedback:** Collect user feedback ([#1324](https://github.com/GetStream/stream-video-js/issues/1324)) ([b415de0](https://github.com/GetStream/stream-video-js/commit/b415de0828e402f8d3b854553351843aad2e8473))
781
+
782
+ ### [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)
783
+
784
+ ### Dependency Updates
785
+
786
+ * `@stream-io/video-client` updated to version `0.7.6`
787
+ * `@stream-io/video-react-bindings` updated to version `0.4.17`
788
+ ### [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)
789
+
790
+ ### Dependency Updates
791
+
792
+ * `@stream-io/video-client` updated to version `0.7.5`
793
+ * `@stream-io/video-react-bindings` updated to version `0.4.16`
794
+ ### [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)
795
+
796
+
797
+ ### Bug Fixes
798
+
799
+ * 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))
800
+
801
+ ### [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)
802
+
803
+ ### Dependency Updates
804
+
805
+ * `@stream-io/video-client` updated to version `0.7.4`
806
+ * `@stream-io/video-react-bindings` updated to version `0.4.15`
807
+ ### [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)
808
+
809
+ ### Dependency Updates
810
+
811
+ * `@stream-io/video-client` updated to version `0.7.3`
812
+ * `@stream-io/video-react-bindings` updated to version `0.4.14`
813
+ ### [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)
814
+
815
+
816
+ ### Bug Fixes
817
+
818
+ * **react-native:** remove wrong required types in livestream buttons ([a357d6a](https://github.com/GetStream/stream-video-js/commit/a357d6ac24e3d15b068d152cc69403c471dff87c))
819
+
820
+ ### [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)
821
+
822
+ ### Dependency Updates
823
+
824
+ * `@stream-io/video-client` updated to version `0.7.2`
825
+ * `@stream-io/video-react-bindings` updated to version `0.4.13`
826
+ ### [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)
827
+
828
+
829
+ ### Features
830
+
831
+ * **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))
832
+
833
+ ### [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)
834
+
835
+
836
+ ### Bug Fixes
837
+
838
+ * **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))
839
+
840
+ ### [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)
841
+
842
+ ### Dependency Updates
843
+
844
+ * `@stream-io/video-client` updated to version `0.7.1`
845
+ * `@stream-io/video-react-bindings` updated to version `0.4.12`
846
+ ## [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)
847
+
848
+ ### Dependency Updates
849
+
850
+ * `@stream-io/video-client` updated to version `0.7.0`
851
+ * `@stream-io/video-react-bindings` updated to version `0.4.11`
852
+
853
+ ### ⚠ BREAKING CHANGES
854
+
855
+ * remove server-side capabilities from JS client (#1282)
856
+
857
+ ### Features
858
+
859
+ * 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))
860
+
861
+ ### [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)
862
+
863
+ ### Dependency Updates
864
+
865
+ * `@stream-io/video-client` updated to version `0.6.10`
866
+ * `@stream-io/video-react-bindings` updated to version `0.4.10`
867
+ ### [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)
868
+
869
+ ### Dependency Updates
870
+
871
+ * `@stream-io/video-client` updated to version `0.6.9`
872
+ * `@stream-io/video-react-bindings` updated to version `0.4.9`
873
+ ### [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)
874
+
875
+ ### Dependency Updates
876
+
877
+ * `@stream-io/video-client` updated to version `0.6.8`
878
+ * `@stream-io/video-react-bindings` updated to version `0.4.8`
879
+
880
+ ### Features
881
+
882
+ * **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)
883
+
884
+ ### [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)
885
+
886
+ ### Dependency Updates
887
+
888
+ * `@stream-io/video-client` updated to version `0.6.7`
889
+ * `@stream-io/video-react-bindings` updated to version `0.4.7`
890
+ ### [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)
891
+
892
+ ### Dependency Updates
893
+
894
+ * `@stream-io/video-client` updated to version `0.6.6`
895
+ * `@stream-io/video-react-bindings` updated to version `0.4.6`
896
+ ### [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)
897
+
898
+ ### Dependency Updates
899
+
900
+ * `@stream-io/video-client` updated to version `0.6.5`
901
+ * `@stream-io/video-react-bindings` updated to version `0.4.5`
902
+ ### [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)
903
+
904
+ ### Dependency Updates
905
+
906
+ * `@stream-io/video-client` updated to version `0.6.4`
907
+ * `@stream-io/video-react-bindings` updated to version `0.4.4`
908
+
909
+ ### Bug Fixes
910
+
911
+ * **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))
912
+
913
+ ### [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)
914
+
915
+ ### Dependency Updates
916
+
917
+ * `@stream-io/video-client` updated to version `0.6.3`
918
+ * `@stream-io/video-react-bindings` updated to version `0.4.3`
919
+
920
+ ### Features
921
+
922
+ * 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)
923
+
924
+ ### [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)
925
+
926
+ ### Dependency Updates
927
+
928
+ * `@stream-io/video-client` updated to version `0.6.2`
929
+ * `@stream-io/video-react-bindings` updated to version `0.4.2`
930
+ ### [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)
931
+
932
+
933
+ ### Bug Fixes
934
+
935
+ * **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))
936
+
937
+ ### [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)
938
+
939
+
940
+ ### Bug Fixes
941
+
942
+ * 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))
943
+
944
+ ### [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)
945
+
946
+
947
+ ### Bug Fixes
948
+
949
+ * **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))
950
+
951
+ ### [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)
952
+
953
+
954
+ ### Bug Fixes
955
+
956
+ * 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))
957
+
958
+ ### [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)
959
+
960
+ ### Dependency Updates
961
+
962
+ * `@stream-io/video-client` updated to version `0.6.1`
963
+ * `@stream-io/video-react-bindings` updated to version `0.4.1`
964
+ ### [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)
965
+
966
+
967
+ ### Bug Fixes
968
+
969
+ * **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))
970
+
971
+ ### [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)
972
+
973
+ ### [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)
974
+
975
+
976
+ ### Bug Fixes
977
+
978
+ * **react-native:** do not add screenshare permissions by default ([6bb3113](https://github.com/GetStream/stream-video-js/commit/6bb3113574f22fe6d5c6c9da41528da7502974ec))
979
+
980
+ ## [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)
981
+
982
+ ### Dependency Updates
983
+
984
+ * `@stream-io/video-client` updated to version `0.6.0`
985
+ * `@stream-io/video-react-bindings` updated to version `0.4.0`
986
+
987
+ ### ⚠ BREAKING CHANGES
988
+
989
+ * **hooks:** expose permission hooks through useCallStateHooks() (#1254)
990
+
991
+ ### Features
992
+
993
+ * **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))
994
+
995
+ ### [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)
996
+
997
+ ### Dependency Updates
998
+
999
+ * `@stream-io/video-client` updated to version `0.5.11`
1000
+ * `@stream-io/video-react-bindings` updated to version `0.3.22`
1001
+ ### [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)
1002
+
1003
+ ### Dependency Updates
1004
+
1005
+ * `@stream-io/video-client` updated to version `0.5.10`
1006
+ * `@stream-io/video-react-bindings` updated to version `0.3.21`
1007
+ ### [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)
1008
+
1009
+ ### Dependency Updates
1010
+
1011
+ * `@stream-io/video-client` updated to version `0.5.9`
1012
+ * `@stream-io/video-react-bindings` updated to version `0.3.20`
1013
+ ## [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)
1014
+
1015
+
1016
+ ### ⚠ BREAKING CHANGES
1017
+
1018
+ * **react-native:** add missing push call.cancellation support in app terminated state (#1264)
1019
+
1020
+ ### Bug Fixes
1021
+
1022
+ * **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))
1023
+
1024
+ ### [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)
1025
+
1026
+ ### Dependency Updates
1027
+
1028
+ * `@stream-io/video-client` updated to version `0.5.8`
1029
+ * `@stream-io/video-react-bindings` updated to version `0.3.19`
1030
+ ### [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)
1031
+
1032
+
1033
+ ### Bug Fixes
1034
+
1035
+ * **react-native:** align outgoing call controls button sizes ([800e330](https://github.com/GetStream/stream-video-js/commit/800e3308893212a305c53710939d9f47aad0d48d))
1036
+ * **react-native:** check for ios provider name presence ([c6c5d2b](https://github.com/GetStream/stream-video-js/commit/c6c5d2bcc3f97ba3d7c28eac112db4cac9714078))
1037
+
1038
+ ### [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)
1039
+
1040
+
1041
+ ### Bug Fixes
1042
+
1043
+ * **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))
1044
+
1045
+ ### [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)
1046
+
1047
+
1048
+ ### Features
1049
+
1050
+ * 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))
1051
+
1052
+ ### [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)
1053
+
1054
+ ### Dependency Updates
1055
+
1056
+ * `@stream-io/video-client` updated to version `0.5.7`
1057
+ * `@stream-io/video-react-bindings` updated to version `0.3.18`
1058
+ ### [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)
1059
+
1060
+
1061
+ ### Features
1062
+
1063
+ * 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))
1064
+
1065
+ ### [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)
1066
+
1067
+
1068
+ ### Bug Fixes
1069
+
1070
+ * pass sound and vibration to android notifications display ([f4e34ec](https://github.com/GetStream/stream-video-js/commit/f4e34ec77ae8ab2885d6b98c428085431b52bc00))
1071
+
1072
+ ### [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)
1073
+
1074
+ ### Dependency Updates
1075
+
1076
+ * `@stream-io/video-client` updated to version `0.5.6`
1077
+ * `@stream-io/video-react-bindings` updated to version `0.3.17`
1078
+ ### [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)
1079
+
1080
+
1081
+ ### Features
1082
+
1083
+ * **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)
1084
+
1085
+ ### [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)
1086
+
1087
+ ### Dependency Updates
1088
+
1089
+ * `@stream-io/video-client` updated to version `0.5.5`
1090
+ * `@stream-io/video-react-bindings` updated to version `0.3.16`
1091
+ ### [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)
1092
+
1093
+ ### Dependency Updates
1094
+
1095
+ * `@stream-io/video-client` updated to version `0.5.4`
1096
+ * `@stream-io/video-react-bindings` updated to version `0.3.15`
1097
+ ### [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)
1098
+
1099
+
1100
+ ### Features
1101
+
1102
+ * **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))
1103
+
1104
+ ### [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)
1105
+
1106
+ ### Dependency Updates
1107
+
1108
+ * `@stream-io/video-client` updated to version `0.5.3`
1109
+ * `@stream-io/video-react-bindings` updated to version `0.3.14`
1110
+ ### [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)
1111
+
1112
+ ### Dependency Updates
1113
+
1114
+ * `@stream-io/video-client` updated to version `0.5.2`
1115
+ * `@stream-io/video-react-bindings` updated to version `0.3.13`
1116
+ ### [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)
1117
+
1118
+
1119
+ ### Bug Fixes
1120
+
1121
+ * **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))
1122
+
1123
+ ### [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)
1124
+
1125
+ ### Dependency Updates
1126
+
1127
+ * `@stream-io/video-client` updated to version `0.5.1`
1128
+ * `@stream-io/video-react-bindings` updated to version `0.3.12`
1129
+
1130
+ ### Features
1131
+
1132
+ * **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))
1133
+
1134
+ ### [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)
1135
+
1136
+
1137
+ ### Bug Fixes
1138
+
1139
+ * **react-native:** remove postinstall command as it breaks on windows ([90f0b9c](https://github.com/GetStream/stream-video-js/commit/90f0b9ced6aa0c89593cb860a5a5c87d782766ca))
1140
+
1141
+ ### [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)
1142
+
1143
+
1144
+ ### Bug Fixes
1145
+
1146
+ * **react-native:** do not trigger initial device setting after join ([204c303](https://github.com/GetStream/stream-video-js/commit/204c303353c536c44b77350bb49c117f21e093c5))
1147
+
1148
+ ## [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)
1149
+
1150
+ ### Dependency Updates
1151
+
1152
+ * `@stream-io/video-client` updated to version `0.5.0`
1153
+ * `@stream-io/video-react-bindings` updated to version `0.3.11`
1154
+
1155
+ ### ⚠ BREAKING CHANGES
1156
+
1157
+ * **react-native:** move to webrtc 118 (#1197)
1158
+
1159
+ ### Features
1160
+
1161
+ * **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))
1162
+
1163
+
1164
+ ### Bug Fixes
1165
+
1166
+ * **react-native:** remove unused import ([388d5fc](https://github.com/GetStream/stream-video-js/commit/388d5fc41479190c34b1f5042303157b96149381))
1167
+
1168
+ ### [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)
1169
+
1170
+ ### Dependency Updates
1171
+
1172
+ * `@stream-io/video-client` updated to version `0.4.10`
1173
+ * `@stream-io/video-react-bindings` updated to version `0.3.10`
1174
+ ### [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)
1175
+
1176
+
1177
+ ### Bug Fixes
1178
+
1179
+ * **react-native:** add default sound for android notifications ([6ecb6d3](https://github.com/GetStream/stream-video-js/commit/6ecb6d35016a4c8d8fc61d43c78a5b245c4f8ac5))
1180
+
1181
+ ### [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)
1182
+
1183
+ ### Dependency Updates
1184
+
1185
+ * `@stream-io/video-client` updated to version `0.4.9`
1186
+ * `@stream-io/video-react-bindings` updated to version `0.3.9`
1187
+ ### [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)
1188
+
1189
+
1190
+ ### Features
1191
+
1192
+ * **react-native:** update rn-webrtc version ([159b1cc](https://github.com/GetStream/stream-video-js/commit/159b1cc6b581f9dff257aad481170a36d5d065e9))
1193
+
1194
+ ### [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)
1195
+
1196
+ ### Dependency Updates
1197
+
1198
+ * `@stream-io/video-client` updated to version `0.4.8`
1199
+ * `@stream-io/video-react-bindings` updated to version `0.3.8`
1200
+ ### [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)
1201
+
1202
+ ### Dependency Updates
1203
+
1204
+ * `@stream-io/video-client` updated to version `0.4.7`
1205
+ * `@stream-io/video-react-bindings` updated to version `0.3.7`
1206
+
1207
+ ### Features
1208
+
1209
+ * **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))
1210
+
1211
+ ### [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)
1212
+
1213
+ ### Dependency Updates
1214
+
1215
+ * `@stream-io/video-client` updated to version `0.4.6`
1216
+ * `@stream-io/video-react-bindings` updated to version `0.3.6`
1217
+ ### [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)
1218
+
1219
+
1220
+ ### Bug Fixes
1221
+
1222
+ * **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))
1223
+
1224
+ ### [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)
1225
+
1226
+ ### Dependency Updates
1227
+
1228
+ * `@stream-io/video-client` updated to version `0.4.5`
1229
+ * `@stream-io/video-react-bindings` updated to version `0.3.5`
1230
+ ### [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)
1231
+
1232
+ ### Dependency Updates
1233
+
1234
+ * `@stream-io/video-client` updated to version `0.4.4`
1235
+ * `@stream-io/video-react-bindings` updated to version `0.3.4`
1236
+ ### [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)
1237
+
1238
+ ### Dependency Updates
1239
+
1240
+ * `@stream-io/video-client` updated to version `0.4.3`
1241
+ * `@stream-io/video-react-bindings` updated to version `0.3.3`
1242
+ ### [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)
1243
+
1244
+ ### Dependency Updates
1245
+
1246
+ * `@stream-io/video-client` updated to version `0.4.2`
1247
+ * `@stream-io/video-react-bindings` updated to version `0.3.2`
1248
+ ### [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)
1249
+
1250
+ ### Dependency Updates
1251
+
1252
+ * `@stream-io/video-client` updated to version `0.4.1`
1253
+ * `@stream-io/video-react-bindings` updated to version `0.3.1`
1254
+ ### [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)
1255
+
1256
+
1257
+ ### Features
1258
+
1259
+ * **react-native:** add screensharing ([#1149](https://github.com/GetStream/stream-video-js/issues/1149)) ([e021365](https://github.com/GetStream/stream-video-js/commit/e021365158d9bbe3c6192294a02fa694ce9f24fe))
1260
+
1261
+ ## [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)
1262
+
1263
+ ### Dependency Updates
1264
+
1265
+ * `@stream-io/video-client` updated to version `0.4.0`
1266
+ * `@stream-io/video-react-bindings` updated to version `0.3.0`
1267
+
1268
+ ### ⚠ BREAKING CHANGES
1269
+
1270
+ * **react-sdk:** Universal Device Management API (#1127)
1271
+
1272
+ ### Features
1273
+
1274
+ * **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))
1275
+
1276
+ ### [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)
1277
+
1278
+ ### Dependency Updates
1279
+
1280
+ * `@stream-io/video-react-bindings` updated to version `0.2.37`
1281
+ ### [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)
1282
+
1283
+ ### Dependency Updates
1284
+
1285
+ * `@stream-io/video-client` updated to version `0.3.36`
1286
+ * `@stream-io/video-react-bindings` updated to version `0.2.37`
1287
+ ### [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)
1288
+
1289
+
1290
+ ### Features
1291
+
1292
+ * **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))
1293
+
1294
+ ### [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)
1295
+
1296
+
1297
+ ### Features
1298
+
1299
+ * **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))
1300
+
1301
+ ### [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)
1302
+
1303
+ ### Dependency Updates
1304
+
1305
+ * `@stream-io/video-client` updated to version `0.3.35`
1306
+ * `@stream-io/video-react-bindings` updated to version `0.2.36`
1307
+
1308
+ ### Features
1309
+
1310
+ * 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))
1311
+
1312
+ ### [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)
1313
+
1314
+ ### Dependency Updates
1315
+
1316
+ * `@stream-io/video-client` updated to version `0.3.34`
1317
+ * `@stream-io/video-react-bindings` updated to version `0.2.35`
1318
+
1319
+ ### Features
1320
+
1321
+ * **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)
1322
+
1323
+ ### [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)
1324
+
1325
+
1326
+ ### Bug Fixes
1327
+
1328
+ * **react-native:** misc expo config plugin bugs ([bba3f84](https://github.com/GetStream/stream-video-js/commit/bba3f8437cb0f7a662adef4e89fbc487225a5ed5))
1329
+
1330
+ ### [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)
1331
+
1332
+ ### Dependency Updates
1333
+
1334
+ * `@stream-io/video-client` updated to version `0.3.33`
1335
+ * `@stream-io/video-react-bindings` updated to version `0.2.34`
1336
+
1337
+ ### Bug Fixes
1338
+
1339
+ * **react-native:** added missing webrtc android expo config steps ([fb2c5a1](https://github.com/GetStream/stream-video-js/commit/fb2c5a1da24bc6c7d9d235ad1d8a562c8a075360))
1340
+
1341
+ ### [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)
1342
+
1343
+ ### Dependency Updates
1344
+
1345
+ * `@stream-io/video-client` updated to version `0.3.32`
1346
+ * `@stream-io/video-react-bindings` updated to version `0.2.33`
1347
+
1348
+ ### Features
1349
+
1350
+ * **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))
1351
+
1352
+
1353
+ ### Bug Fixes
1354
+
1355
+ * **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))
1356
+
1357
+ ### [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)
1358
+
1359
+
1360
+ ### Bug Fixes
1361
+
1362
+ * **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))
1363
+
1364
+ ### [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)
1365
+
1366
+ ### Dependency Updates
1367
+
1368
+ * `@stream-io/video-client` updated to version `0.3.31`
1369
+ * `@stream-io/video-react-bindings` updated to version `0.2.32`
1370
+
1371
+ ### Features
1372
+
1373
+ * **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))
1374
+
1375
+ ### [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)
1376
+
1377
+ ### Dependency Updates
1378
+
1379
+ * `@stream-io/video-client` updated to version `0.3.30`
1380
+ * `@stream-io/video-react-bindings` updated to version `0.2.31`
1381
+
1382
+ ### Features
1383
+
1384
+ * ScreenShare Audio support ([#1118](https://github.com/GetStream/stream-video-js/issues/1118)) ([5b63e1c](https://github.com/GetStream/stream-video-js/commit/5b63e1c5f52c76e3761e6907bd3786c19f0e5c6d))
1385
+
1386
+ ### [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)
1387
+
1388
+ ### Dependency Updates
1389
+
1390
+ * `@stream-io/video-client` updated to version `0.3.29`
1391
+ * `@stream-io/video-react-bindings` updated to version `0.2.30`
1392
+ ### [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)
1393
+
1394
+
1395
+ ### Features
1396
+
1397
+ * **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))
1398
+
1399
+ ## [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)
1400
+
1401
+
1402
+ ### ⚠ BREAKING CHANGES
1403
+
1404
+ * **react-native:** set reactions through props and not config (#1069)
1405
+
1406
+ ### Features
1407
+
1408
+ * **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))
1409
+
1410
+ ### [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)
1411
+
1412
+
1413
+ ### Features
1414
+
1415
+ * **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))
1416
+
1417
+ ### [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)
1418
+
1419
+ ### Dependency Updates
1420
+
1421
+ * `@stream-io/video-client` updated to version `0.3.28`
1422
+ * `@stream-io/video-react-bindings` updated to version `0.2.29`
1423
+ ### [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)
1424
+
1425
+
1426
+ ### Bug Fixes
1427
+
1428
+ * **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))
1429
+
1430
+ ### [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)
1431
+
1432
+ ### Dependency Updates
1433
+
1434
+ * `@stream-io/video-client` updated to version `0.1.0`
1435
+ * `@stream-io/video-react-bindings` updated to version `0.2.28`
1436
+ ### [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)
1437
+
1438
+ ### Dependency Updates
1439
+
1440
+ * `@stream-io/video-client` updated to version `0.1.0`
1441
+ * `@stream-io/video-react-bindings` updated to version `0.2.27`
1442
+
1443
+ ### Features
1444
+
1445
+ * **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))
1446
+
1447
+ ### [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)
1448
+
1449
+ ### Dependency Updates
1450
+
1451
+ * `@stream-io/video-client` updated to version `0.1.0`
1452
+ * `@stream-io/video-react-bindings` updated to version `0.2.26`
1453
+ ### [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)
1454
+
1455
+ ### Dependency Updates
1456
+
1457
+ * `@stream-io/video-client` updated to version `0.1.0`
1458
+ * `@stream-io/video-react-bindings` updated to version `0.2.25`
1459
+ ### [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)
1460
+
1461
+ ### Dependency Updates
1462
+
1463
+ * `@stream-io/video-client` updated to version `0.1.0`
1464
+ * `@stream-io/video-react-bindings` updated to version `0.2.24`
1465
+ ### [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)
1466
+
1467
+ ### Dependency Updates
1468
+
1469
+ * `@stream-io/i18n` updated to version `0.1.2`
1470
+ * `@stream-io/video-client` updated to version `0.1.0`
1471
+ * `@stream-io/video-react-bindings` updated to version `0.2.23`
1472
+
1473
+ ### Bug Fixes
1474
+
1475
+ * 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))
1476
+
1477
+ ### [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)
1478
+
1479
+ ### Dependency Updates
1480
+
1481
+ * `@stream-io/video-client` updated to version `0.1.0`
1482
+ * `@stream-io/video-react-bindings` updated to version `0.2.22`
1483
+ ### [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)
1484
+
1485
+ ### Dependency Updates
1486
+
1487
+ * `@stream-io/video-client` updated to version `0.1.0`
1488
+ * `@stream-io/video-react-bindings` updated to version `0.2.21`
1489
+ ### [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)
1490
+
1491
+ ### Dependency Updates
1492
+
1493
+ * `@stream-io/video-client` updated to version `0.1.0`
1494
+ ### [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)
1495
+
1496
+ ### Dependency Updates
1497
+
1498
+ * `@stream-io/video-client` updated to version `0.1.0`
1499
+ * `@stream-io/video-react-bindings` updated to version `0.2.20`
1500
+
1501
+ ### Bug Fixes
1502
+
1503
+ * initial device state handling ([#1092](https://github.com/GetStream/stream-video-js/issues/1092)) ([a98d07f](https://github.com/GetStream/stream-video-js/commit/a98d07f9e3eaf6bb059911538ba2a64a1550e53d))
1504
+
1505
+ ### [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)
1506
+
1507
+ ### Dependency Updates
1508
+
1509
+ * `@stream-io/video-client` updated to version `0.1.0`
1510
+ * `@stream-io/video-react-bindings` updated to version `0.2.19`
1511
+ ### [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)
1512
+
1513
+ ### Dependency Updates
1514
+
1515
+ * `@stream-io/video-client` updated to version `0.1.0`
1516
+ * `@stream-io/video-react-bindings` updated to version `0.2.18`
1517
+ ### [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)
1518
+
1519
+ ### Dependency Updates
1520
+
1521
+ * `@stream-io/video-client` updated to version `0.1.0`
1522
+ * `@stream-io/video-react-bindings` updated to version `0.2.17`
1523
+ ### [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)
1524
+
1525
+
1526
+ ### Bug Fixes
1527
+
1528
+ * **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))
1529
+
1530
+ ### [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)
1531
+
1532
+
1533
+ ### Bug Fixes
1534
+
1535
+ * **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))
1536
+
1537
+ ### [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)
1538
+
1539
+
1540
+ ### Bug Fixes
1541
+
1542
+ * **react-native:** add missing expo plugin in npm pack ([bfeb79d](https://github.com/GetStream/stream-video-js/commit/bfeb79d2a540f627e8fcefbe1524cf634307ce84))
1543
+
1544
+ ### [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)
1545
+
1546
+ ### Dependency Updates
1547
+
1548
+ * `@stream-io/video-client` updated to version `0.1.0`
1549
+ * `@stream-io/video-react-bindings` updated to version `0.2.16`
1550
+ ### [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)
1551
+
1552
+
1553
+ ### Features
1554
+
1555
+ * **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))
1556
+
1557
+ ### [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)
1558
+
1559
+
1560
+ ### Bug Fixes
1561
+
1562
+ * 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))
1563
+
1564
+ ### [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)
1565
+
1566
+
1567
+ ### Bug Fixes
1568
+
1569
+ * 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))
1570
+
1571
+ ### [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)
1572
+
1573
+
1574
+ ### Bug Fixes
1575
+
1576
+ * 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))
1577
+
1578
+ ### [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)
1579
+
1580
+
1581
+ ### Bug Fixes
1582
+
1583
+ * **react-native:** missing translations in lobby component ([3dbed69](https://github.com/GetStream/stream-video-js/commit/3dbed692dcbb4b6a948cc1eb41540ab1e7825912))
1584
+
1585
+ ### [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)
1586
+
1587
+ ### Dependency Updates
1588
+
1589
+ * `@stream-io/video-client` updated to version `0.1.0`
1590
+ * `@stream-io/video-react-bindings` updated to version `0.2.15`
1591
+ ### [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)
1592
+
1593
+
1594
+ ### Bug Fixes
1595
+
1596
+ * 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))
1597
+
1598
+ ### [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)
1599
+
1600
+ ### Dependency Updates
1601
+
1602
+ * `@stream-io/i18n` updated to version `0.1.1`
1603
+ * `@stream-io/video-client` updated to version `0.1.0`
1604
+ * `@stream-io/video-react-bindings` updated to version `0.2.14`
1605
+
1606
+ ### Features
1607
+
1608
+ * 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))
1609
+ * **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))