@stream-io/video-react-sdk 0.4.25 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +301 -236
- package/README.md +5 -5
- package/dist/css/styles.css +952 -481
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +946 -639
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +939 -639
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/Button/CompositeButton.d.ts +9 -11
- package/dist/src/components/Button/index.d.ts +0 -1
- package/dist/src/components/CallControls/CallStatsButton.d.ts +3 -0
- package/dist/src/components/CallControls/CancelCallButton.d.ts +1 -0
- package/dist/src/components/CallControls/ReactionsButton.d.ts +2 -1
- package/dist/src/components/CallControls/RecordCallButton.d.ts +4 -1
- package/dist/src/components/CallControls/ToggleAudioButton.d.ts +3 -9
- package/dist/src/components/CallControls/ToggleAudioOutputButton.d.ts +2 -5
- package/dist/src/components/CallControls/ToggleVideoButton.d.ts +3 -9
- package/dist/src/components/CallParticipantsList/CallParticipantListHeader.d.ts +3 -1
- package/dist/src/components/CallParticipantsList/CallParticipantListingItem.d.ts +0 -5
- package/dist/src/components/CallStats/CallStats.d.ts +25 -2
- package/dist/src/components/DeviceSettings/DeviceSelector.d.ts +6 -1
- package/dist/src/components/DeviceSettings/DeviceSelectorAudio.d.ts +4 -2
- package/dist/src/components/DeviceSettings/DeviceSelectorVideo.d.ts +2 -1
- package/dist/src/components/DeviceSettings/DeviceSettings.d.ts +5 -1
- package/dist/src/components/DropdownSelect/DropdownSelect.d.ts +14 -0
- package/dist/src/components/DropdownSelect/index.d.ts +1 -0
- package/dist/src/components/Icon/Icon.d.ts +2 -1
- package/dist/src/components/Menu/GenericMenu.d.ts +4 -2
- package/dist/src/components/Menu/MenuToggle.d.ts +15 -2
- package/dist/src/components/Notification/Notification.d.ts +1 -0
- package/dist/src/components/Notification/RecordingInProgressNotification.d.ts +5 -0
- package/dist/src/components/Notification/SpeakingWhileMutedNotification.d.ts +3 -1
- package/dist/src/components/Notification/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +2 -0
- package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.d.ts +7 -1
- package/dist/src/core/components/ParticipantView/ParticipantActionsContextMenu.d.ts +1 -0
- package/dist/src/core/components/ParticipantView/ParticipantViewContext.d.ts +3 -3
- package/dist/src/core/components/ParticipantView/index.d.ts +1 -0
- package/dist/src/hooks/useFloatingUIPreset.d.ts +4 -1
- package/dist/src/translations/index.d.ts +9 -0
- package/package.json +7 -9
- package/src/components/Button/CompositeButton.tsx +78 -26
- package/src/components/Button/IconButton.tsx +22 -21
- package/src/components/Button/index.ts +0 -1
- package/src/components/CallControls/AcceptCallButton.tsx +1 -0
- package/src/components/CallControls/CallControls.tsx +2 -2
- package/src/components/CallControls/CallStatsButton.tsx +24 -7
- package/src/components/CallControls/CancelCallButton.tsx +102 -3
- package/src/components/CallControls/ReactionsButton.tsx +37 -17
- package/src/components/CallControls/RecordCallButton.tsx +131 -21
- package/src/components/CallControls/ScreenShareButton.tsx +29 -15
- package/src/components/CallControls/ToggleAudioButton.tsx +76 -31
- package/src/components/CallControls/ToggleAudioOutputButton.tsx +14 -10
- package/src/components/CallControls/ToggleVideoButton.tsx +83 -33
- package/src/components/CallParticipantsList/CallParticipantListHeader.tsx +9 -6
- package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +17 -281
- package/src/components/CallParticipantsList/CallParticipantsList.tsx +2 -32
- package/src/components/CallRecordingList/CallRecordingList.tsx +24 -6
- package/src/components/CallRecordingList/CallRecordingListHeader.tsx +6 -2
- package/src/components/CallRecordingList/CallRecordingListItem.tsx +18 -41
- package/src/components/CallStats/CallStats.tsx +167 -10
- package/src/components/CallStats/CallStatsLatencyChart.tsx +73 -44
- package/src/components/DeviceSettings/DeviceSelector.tsx +107 -12
- package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +13 -5
- package/src/components/DeviceSettings/DeviceSelectorVideo.tsx +10 -4
- package/src/components/DeviceSettings/DeviceSettings.tsx +40 -28
- package/src/components/DropdownSelect/DropdownSelect.tsx +214 -0
- package/src/components/DropdownSelect/index.ts +1 -0
- package/src/components/Icon/Icon.tsx +7 -2
- package/src/components/Menu/GenericMenu.tsx +25 -3
- package/src/components/Menu/MenuToggle.tsx +79 -14
- package/src/components/Notification/Notification.tsx +8 -0
- package/src/components/Notification/PermissionNotification.tsx +2 -1
- package/src/components/Notification/RecordingInProgressNotification.tsx +40 -0
- package/src/components/Notification/SpeakingWhileMutedNotification.tsx +9 -1
- package/src/components/Notification/index.ts +1 -0
- package/src/components/Permissions/PermissionRequests.tsx +9 -21
- package/src/components/Search/hooks/useSearch.ts +5 -1
- package/src/components/index.ts +2 -0
- package/src/core/components/ParticipantView/DefaultParticipantViewUI.tsx +71 -57
- package/src/core/components/ParticipantView/ParticipantActionsContextMenu.tsx +241 -0
- package/src/core/components/ParticipantView/ParticipantView.tsx +2 -2
- package/src/core/components/ParticipantView/ParticipantViewContext.tsx +3 -3
- package/src/core/components/ParticipantView/index.ts +1 -0
- package/src/core/components/Video/BaseVideo.tsx +1 -1
- package/src/core/components/Video/DefaultVideoPlaceholder.tsx +19 -5
- package/src/hooks/useFloatingUIPreset.ts +3 -2
- package/src/hooks/useRequestPermission.ts +2 -1
- package/src/translations/en.json +9 -0
- package/dist/src/components/Button/CopyToClipboardButton.d.ts +0 -27
- package/src/components/Button/CopyToClipboardButton.tsx +0 -129
package/CHANGELOG.md
CHANGED
|
@@ -2,776 +2,841 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.5.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.26...@stream-io/video-react-sdk-0.5.0) (2024-02-26)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `0.6.0`
|
|
10
|
+
* `@stream-io/video-react-bindings` updated to version `0.4.0`
|
|
11
|
+
* `@stream-io/video-styling` updated to version `0.2.0`
|
|
12
|
+
|
|
13
|
+
### ⚠ BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
* **hooks:** expose permission hooks through useCallStateHooks() (#1254)
|
|
16
|
+
* **events:** improved type narrowing on call events (#1246)
|
|
17
|
+
* **react-sdk:** Visual redesign of the SDK and Demo App (#1194)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **events:** improved type narrowing on call events ([#1246](https://github.com/GetStream/stream-video-js/issues/1246)) ([b5bdab1](https://github.com/GetStream/stream-video-js/commit/b5bdab1b526b451402867a849f5790f4f9a9fa1e))
|
|
22
|
+
* **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))
|
|
23
|
+
* **react-sdk:** Visual redesign of the SDK and Demo App ([#1194](https://github.com/GetStream/stream-video-js/issues/1194)) ([c1c6a7b](https://github.com/GetStream/stream-video-js/commit/c1c6a7b9bb0551442457f6d0ef5fedc92a985a3d))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **react-sdk:** consider call setting permissions in CallControls ([c2ff1f9](https://github.com/GetStream/stream-video-js/commit/c2ff1f98c005ce6165743082882da6d62835ad99))
|
|
29
|
+
|
|
30
|
+
### [0.4.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.25...@stream-io/video-react-sdk-0.4.26) (2024-02-19)
|
|
31
|
+
|
|
32
|
+
### Dependency Updates
|
|
33
|
+
|
|
34
|
+
- `@stream-io/video-client` updated to version `0.5.11`
|
|
35
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.22`
|
|
36
|
+
|
|
5
37
|
### [0.4.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.24...@stream-io/video-react-sdk-0.4.25) (2024-02-16)
|
|
6
38
|
|
|
7
39
|
### Dependency Updates
|
|
8
40
|
|
|
9
|
-
|
|
10
|
-
|
|
41
|
+
- `@stream-io/video-client` updated to version `0.5.10`
|
|
42
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.21`
|
|
43
|
+
|
|
11
44
|
### [0.4.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.23...@stream-io/video-react-sdk-0.4.24) (2024-02-12)
|
|
12
45
|
|
|
13
46
|
### Dependency Updates
|
|
14
47
|
|
|
15
|
-
|
|
16
|
-
|
|
48
|
+
- `@stream-io/video-client` updated to version `0.5.9`
|
|
49
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.20`
|
|
50
|
+
|
|
17
51
|
### [0.4.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.22...@stream-io/video-react-sdk-0.4.23) (2024-02-06)
|
|
18
52
|
|
|
19
53
|
### Dependency Updates
|
|
20
54
|
|
|
21
|
-
|
|
22
|
-
|
|
55
|
+
- `@stream-io/video-client` updated to version `0.5.8`
|
|
56
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.19`
|
|
57
|
+
|
|
23
58
|
### [0.4.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.21...@stream-io/video-react-sdk-0.4.22) (2024-01-29)
|
|
24
59
|
|
|
25
60
|
### Dependency Updates
|
|
26
61
|
|
|
27
|
-
|
|
28
|
-
|
|
62
|
+
- `@stream-io/video-client` updated to version `0.5.7`
|
|
63
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.18`
|
|
64
|
+
|
|
29
65
|
### [0.4.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.20...@stream-io/video-react-sdk-0.4.21) (2024-01-19)
|
|
30
66
|
|
|
31
67
|
### Dependency Updates
|
|
32
68
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### [0.4.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.19...@stream-io/video-react-sdk-0.4.20) (2024-01-16)
|
|
69
|
+
- `@stream-io/video-client` updated to version `0.5.6`
|
|
70
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.17`
|
|
36
71
|
|
|
72
|
+
### [0.4.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.19...@stream-io/video-react-sdk-0.4.20) (2024-01-16)
|
|
37
73
|
|
|
38
74
|
### Bug Fixes
|
|
39
75
|
|
|
40
|
-
|
|
76
|
+
- **react-sdk:** handle external full-screen toggling ([#1243](https://github.com/GetStream/stream-video-js/issues/1243)) ([9578155](https://github.com/GetStream/stream-video-js/commit/95781555e8450c780ca73cf9d9d940d12613d893))
|
|
41
77
|
|
|
42
78
|
### [0.4.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.18...@stream-io/video-react-sdk-0.4.19) (2024-01-16)
|
|
43
79
|
|
|
44
80
|
### Dependency Updates
|
|
45
81
|
|
|
46
|
-
|
|
47
|
-
|
|
82
|
+
- `@stream-io/video-client` updated to version `0.5.5`
|
|
83
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.16`
|
|
84
|
+
|
|
48
85
|
### [0.4.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.17...@stream-io/video-react-sdk-0.4.18) (2024-01-16)
|
|
49
86
|
|
|
50
87
|
### Dependency Updates
|
|
51
88
|
|
|
52
|
-
|
|
53
|
-
|
|
89
|
+
- `@stream-io/video-client` updated to version `0.5.4`
|
|
90
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.15`
|
|
91
|
+
|
|
54
92
|
### [0.4.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.16...@stream-io/video-react-sdk-0.4.17) (2023-12-22)
|
|
55
93
|
|
|
56
94
|
### Dependency Updates
|
|
57
95
|
|
|
58
|
-
|
|
59
|
-
|
|
96
|
+
- `@stream-io/video-client` updated to version `0.5.3`
|
|
97
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.14`
|
|
98
|
+
|
|
60
99
|
### [0.4.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.15...@stream-io/video-react-sdk-0.4.16) (2023-12-11)
|
|
61
100
|
|
|
62
101
|
### Dependency Updates
|
|
63
102
|
|
|
64
|
-
|
|
65
|
-
|
|
103
|
+
- `@stream-io/video-client` updated to version `0.5.2`
|
|
104
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.13`
|
|
105
|
+
|
|
66
106
|
### [0.4.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.14...@stream-io/video-react-sdk-0.4.15) (2023-12-05)
|
|
67
107
|
|
|
68
108
|
### Dependency Updates
|
|
69
109
|
|
|
70
|
-
|
|
71
|
-
|
|
110
|
+
- `@stream-io/video-client` updated to version `0.5.1`
|
|
111
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.12`
|
|
112
|
+
|
|
72
113
|
### [0.4.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.13...@stream-io/video-react-sdk-0.4.14) (2023-11-29)
|
|
73
114
|
|
|
74
115
|
### Dependency Updates
|
|
75
116
|
|
|
76
|
-
|
|
77
|
-
|
|
117
|
+
- `@stream-io/video-client` updated to version `0.5.0`
|
|
118
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.11`
|
|
119
|
+
|
|
78
120
|
### [0.4.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.12...@stream-io/video-react-sdk-0.4.13) (2023-11-27)
|
|
79
121
|
|
|
80
122
|
### Dependency Updates
|
|
81
123
|
|
|
82
|
-
|
|
83
|
-
|
|
124
|
+
- `@stream-io/video-client` updated to version `0.4.10`
|
|
125
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.10`
|
|
126
|
+
|
|
84
127
|
### [0.4.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.11...@stream-io/video-react-sdk-0.4.12) (2023-11-22)
|
|
85
128
|
|
|
86
129
|
### Dependency Updates
|
|
87
130
|
|
|
88
|
-
|
|
89
|
-
|
|
131
|
+
- `@stream-io/video-client` updated to version `0.4.9`
|
|
132
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.9`
|
|
90
133
|
|
|
91
134
|
### Features
|
|
92
135
|
|
|
93
|
-
|
|
136
|
+
- **participant-view:** allow opting-out from rendering VideoPlaceholder ([#1198](https://github.com/GetStream/stream-video-js/issues/1198)) ([acb020c](https://github.com/GetStream/stream-video-js/commit/acb020c8157a1338771bef11ef5e501bc9cd6f69))
|
|
94
137
|
|
|
95
138
|
### [0.4.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.10...@stream-io/video-react-sdk-0.4.11) (2023-11-16)
|
|
96
139
|
|
|
97
140
|
### Dependency Updates
|
|
98
141
|
|
|
99
|
-
|
|
100
|
-
|
|
142
|
+
- `@stream-io/video-client` updated to version `0.4.8`
|
|
143
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.8`
|
|
144
|
+
|
|
101
145
|
### [0.4.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.9...@stream-io/video-react-sdk-0.4.10) (2023-11-13)
|
|
102
146
|
|
|
103
147
|
### Dependency Updates
|
|
104
148
|
|
|
105
|
-
|
|
106
|
-
|
|
149
|
+
- `@stream-io/video-client` updated to version `0.4.7`
|
|
150
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.7`
|
|
107
151
|
|
|
108
152
|
### Features
|
|
109
153
|
|
|
110
|
-
|
|
154
|
+
- **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))
|
|
111
155
|
|
|
112
156
|
### [0.4.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.8...@stream-io/video-react-sdk-0.4.9) (2023-11-13)
|
|
113
157
|
|
|
114
158
|
### Dependency Updates
|
|
115
159
|
|
|
116
|
-
|
|
117
|
-
|
|
160
|
+
- `@stream-io/video-client` updated to version `0.4.6`
|
|
161
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.6`
|
|
162
|
+
|
|
118
163
|
### [0.4.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.7...@stream-io/video-react-sdk-0.4.8) (2023-11-07)
|
|
119
164
|
|
|
120
165
|
### Dependency Updates
|
|
121
166
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
167
|
+
- `@stream-io/video-client` updated to version `0.4.5`
|
|
168
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.5`
|
|
169
|
+
- `@stream-io/video-styling` updated to version `0.1.14`
|
|
125
170
|
|
|
126
171
|
### Bug Fixes
|
|
127
172
|
|
|
128
|
-
|
|
173
|
+
- lift the debug helpers from the SDK to Pronto ([#1182](https://github.com/GetStream/stream-video-js/issues/1182)) ([8f31efc](https://github.com/GetStream/stream-video-js/commit/8f31efc71d9f85ef147d21b42f23876599c36072))
|
|
129
174
|
|
|
130
175
|
### [0.4.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.6...@stream-io/video-react-sdk-0.4.7) (2023-11-03)
|
|
131
176
|
|
|
132
|
-
|
|
133
177
|
### Bug Fixes
|
|
134
178
|
|
|
135
|
-
|
|
179
|
+
- set `key` prop to the correct element ([#1178](https://github.com/GetStream/stream-video-js/issues/1178)) ([b24c07d](https://github.com/GetStream/stream-video-js/commit/b24c07dd366e8aa64055aae7dd48cabe8761eac0)), closes [#1176](https://github.com/GetStream/stream-video-js/issues/1176)
|
|
136
180
|
|
|
137
181
|
### [0.4.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.5...@stream-io/video-react-sdk-0.4.6) (2023-11-02)
|
|
138
182
|
|
|
139
183
|
### Dependency Updates
|
|
140
184
|
|
|
141
|
-
|
|
142
|
-
|
|
185
|
+
- `@stream-io/video-client` updated to version `0.4.4`
|
|
186
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.4`
|
|
143
187
|
|
|
144
188
|
### Bug Fixes
|
|
145
189
|
|
|
146
|
-
|
|
190
|
+
- allow audio and screen share audio tracks, delay setSinkId ([#1176](https://github.com/GetStream/stream-video-js/issues/1176)) ([6a099c5](https://github.com/GetStream/stream-video-js/commit/6a099c5c7cc6f5d389961a7c594e914e19be4ddb))
|
|
147
191
|
|
|
148
192
|
### [0.4.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.4...@stream-io/video-react-sdk-0.4.5) (2023-11-01)
|
|
149
193
|
|
|
150
194
|
### Dependency Updates
|
|
151
195
|
|
|
152
|
-
|
|
153
|
-
|
|
196
|
+
- `@stream-io/video-client` updated to version `0.4.3`
|
|
197
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.3`
|
|
198
|
+
|
|
154
199
|
### [0.4.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.3...@stream-io/video-react-sdk-0.4.4) (2023-11-01)
|
|
155
200
|
|
|
156
201
|
### Dependency Updates
|
|
157
202
|
|
|
158
|
-
|
|
159
|
-
|
|
203
|
+
- `@stream-io/video-client` updated to version `0.4.2`
|
|
204
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.2`
|
|
160
205
|
|
|
161
206
|
### Bug Fixes
|
|
162
207
|
|
|
163
|
-
|
|
208
|
+
- respect server-side settings in the lobby ([#1175](https://github.com/GetStream/stream-video-js/issues/1175)) ([b722a0a](https://github.com/GetStream/stream-video-js/commit/b722a0a4f8fd4e4e56787db3d9a56e45ee195974))
|
|
164
209
|
|
|
165
210
|
### [0.4.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.2...@stream-io/video-react-sdk-0.4.3) (2023-10-30)
|
|
166
211
|
|
|
167
|
-
|
|
168
212
|
### Bug Fixes
|
|
169
213
|
|
|
170
|
-
|
|
214
|
+
- add marker classes for the default `VideoPreview` components ([#1172](https://github.com/GetStream/stream-video-js/issues/1172)) ([7948cd8](https://github.com/GetStream/stream-video-js/commit/7948cd81a5ad6271872239a77b2a5ab8a856d231))
|
|
171
215
|
|
|
172
216
|
### [0.4.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.1...@stream-io/video-react-sdk-0.4.2) (2023-10-30)
|
|
173
217
|
|
|
174
218
|
### Dependency Updates
|
|
175
219
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
### [0.4.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.0...@stream-io/video-react-sdk-0.4.1) (2023-10-27)
|
|
220
|
+
- `@stream-io/video-client` updated to version `0.4.1`
|
|
221
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.1`
|
|
179
222
|
|
|
223
|
+
### [0.4.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.4.0...@stream-io/video-react-sdk-0.4.1) (2023-10-27)
|
|
180
224
|
|
|
181
225
|
### Bug Fixes
|
|
182
226
|
|
|
183
|
-
|
|
227
|
+
- **video-preview:** accept `className` prop ([#1166](https://github.com/GetStream/stream-video-js/issues/1166)) ([bfbfa1e](https://github.com/GetStream/stream-video-js/commit/bfbfa1ed52d4a0b19f9221252640d2926ebda641))
|
|
184
228
|
|
|
185
229
|
## [0.4.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.47...@stream-io/video-react-sdk-0.4.0) (2023-10-27)
|
|
186
230
|
|
|
187
231
|
### Dependency Updates
|
|
188
232
|
|
|
189
|
-
|
|
190
|
-
|
|
233
|
+
- `@stream-io/video-client` updated to version `0.4.0`
|
|
234
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.0`
|
|
191
235
|
|
|
192
236
|
### ⚠ BREAKING CHANGES
|
|
193
237
|
|
|
194
|
-
|
|
238
|
+
- **react-sdk:** Universal Device Management API (#1127)
|
|
195
239
|
|
|
196
240
|
### Features
|
|
197
241
|
|
|
198
|
-
|
|
242
|
+
- **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))
|
|
199
243
|
|
|
200
244
|
### [0.3.47](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.46...@stream-io/video-react-sdk-0.3.47) (2023-10-26)
|
|
201
245
|
|
|
202
|
-
|
|
203
246
|
### Bug Fixes
|
|
204
247
|
|
|
205
|
-
|
|
248
|
+
- Localize "Screen Share" caption ([#1164](https://github.com/GetStream/stream-video-js/issues/1164)) ([0a9ed96](https://github.com/GetStream/stream-video-js/commit/0a9ed960ee5ef8409b61dc5d747912b17a521160))
|
|
206
249
|
|
|
207
250
|
### [0.3.46](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.45...@stream-io/video-react-sdk-0.3.46) (2023-10-25)
|
|
208
251
|
|
|
209
252
|
### Dependency Updates
|
|
210
253
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
### [0.3.45](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.44...@stream-io/video-react-sdk-0.3.45) (2023-10-24)
|
|
254
|
+
- `@stream-io/video-client` updated to version `0.3.36`
|
|
255
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.37`
|
|
214
256
|
|
|
257
|
+
### [0.3.45](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.44...@stream-io/video-react-sdk-0.3.45) (2023-10-24)
|
|
215
258
|
|
|
216
259
|
### Bug Fixes
|
|
217
260
|
|
|
218
|
-
|
|
261
|
+
- add missing translations ([#1158](https://github.com/GetStream/stream-video-js/issues/1158)) ([6eb0c7a](https://github.com/GetStream/stream-video-js/commit/6eb0c7abf1b6a403438e4d80f275265e07e4f82f))
|
|
219
262
|
|
|
220
263
|
### [0.3.44](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.43...@stream-io/video-react-sdk-0.3.44) (2023-10-19)
|
|
221
264
|
|
|
222
|
-
|
|
223
265
|
### Bug Fixes
|
|
224
266
|
|
|
225
|
-
|
|
267
|
+
- sync video "paused" state more accurately ([#1150](https://github.com/GetStream/stream-video-js/issues/1150)) ([39cd42f](https://github.com/GetStream/stream-video-js/commit/39cd42f0035bbabdd9bb078fc8df9192f3b6c42f))
|
|
226
268
|
|
|
227
269
|
### [0.3.43](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.42...@stream-io/video-react-sdk-0.3.43) (2023-10-19)
|
|
228
270
|
|
|
229
271
|
### Dependency Updates
|
|
230
272
|
|
|
231
|
-
|
|
232
|
-
|
|
273
|
+
- `@stream-io/video-client` updated to version `0.3.35`
|
|
274
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.36`
|
|
233
275
|
|
|
234
276
|
### Features
|
|
235
277
|
|
|
236
|
-
|
|
278
|
+
- 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))
|
|
237
279
|
|
|
238
280
|
### [0.3.42](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.41...@stream-io/video-react-sdk-0.3.42) (2023-10-18)
|
|
239
281
|
|
|
240
282
|
### Dependency Updates
|
|
241
283
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
284
|
+
- `@stream-io/video-client` updated to version `0.3.34`
|
|
285
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.35`
|
|
286
|
+
- `@stream-io/video-styling` updated to version `0.1.13`
|
|
245
287
|
|
|
246
288
|
### Features
|
|
247
289
|
|
|
248
|
-
|
|
290
|
+
- **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)
|
|
249
291
|
|
|
250
292
|
### [0.3.41](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.40...@stream-io/video-react-sdk-0.3.41) (2023-10-13)
|
|
251
293
|
|
|
252
294
|
### Dependency Updates
|
|
253
295
|
|
|
254
|
-
|
|
255
|
-
|
|
296
|
+
- `@stream-io/video-client` updated to version `0.3.33`
|
|
297
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.34`
|
|
298
|
+
|
|
256
299
|
### [0.3.40](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.39...@stream-io/video-react-sdk-0.3.40) (2023-10-13)
|
|
257
300
|
|
|
258
301
|
### Dependency Updates
|
|
259
302
|
|
|
260
|
-
|
|
261
|
-
|
|
303
|
+
- `@stream-io/video-client` updated to version `0.3.32`
|
|
304
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.33`
|
|
305
|
+
|
|
262
306
|
### [0.3.39](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.38...@stream-io/video-react-sdk-0.3.39) (2023-10-09)
|
|
263
307
|
|
|
264
308
|
### Dependency Updates
|
|
265
309
|
|
|
266
|
-
|
|
267
|
-
|
|
310
|
+
- `@stream-io/video-client` updated to version `0.3.31`
|
|
311
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.32`
|
|
268
312
|
|
|
269
313
|
### Bug Fixes
|
|
270
314
|
|
|
271
|
-
|
|
315
|
+
- sorting in paginated grid ([#1129](https://github.com/GetStream/stream-video-js/issues/1129)) ([d5b280a](https://github.com/GetStream/stream-video-js/commit/d5b280aadeaa4c718d0158561197c7045620ae0f))
|
|
272
316
|
|
|
273
317
|
### [0.3.38](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.37...@stream-io/video-react-sdk-0.3.38) (2023-10-06)
|
|
274
318
|
|
|
275
319
|
### Dependency Updates
|
|
276
320
|
|
|
277
|
-
|
|
278
|
-
|
|
321
|
+
- `@stream-io/video-client` updated to version `0.3.30`
|
|
322
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.31`
|
|
279
323
|
|
|
280
324
|
### Features
|
|
281
325
|
|
|
282
|
-
|
|
326
|
+
- ScreenShare Audio support ([#1118](https://github.com/GetStream/stream-video-js/issues/1118)) ([5b63e1c](https://github.com/GetStream/stream-video-js/commit/5b63e1c5f52c76e3761e6907bd3786c19f0e5c6d))
|
|
283
327
|
|
|
284
328
|
### [0.3.37](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.36...@stream-io/video-react-sdk-0.3.37) (2023-10-05)
|
|
285
329
|
|
|
286
330
|
### Dependency Updates
|
|
287
331
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
### [0.3.36](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.35...@stream-io/video-react-sdk-0.3.36) (2023-10-03)
|
|
332
|
+
- `@stream-io/video-client` updated to version `0.3.29`
|
|
333
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.30`
|
|
291
334
|
|
|
335
|
+
### [0.3.36](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.35...@stream-io/video-react-sdk-0.3.36) (2023-10-03)
|
|
292
336
|
|
|
293
337
|
### Bug Fixes
|
|
294
338
|
|
|
295
|
-
|
|
339
|
+
- check if `currentParticipant` is actually initialized ([#1124](https://github.com/GetStream/stream-video-js/issues/1124)) ([797b84f](https://github.com/GetStream/stream-video-js/commit/797b84f9f63ae2c98a97b28afc08858705cd6840))
|
|
296
340
|
|
|
297
341
|
### [0.3.35](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.34...@stream-io/video-react-sdk-0.3.35) (2023-10-02)
|
|
298
342
|
|
|
299
|
-
|
|
300
343
|
### Bug Fixes
|
|
301
344
|
|
|
302
|
-
|
|
345
|
+
- requestPermission should be no-op when permission is already granted ([#1122](https://github.com/GetStream/stream-video-js/issues/1122)) ([f3d9e34](https://github.com/GetStream/stream-video-js/commit/f3d9e349825a6052850f7a78c3d6af9f517d136e))
|
|
303
346
|
|
|
304
347
|
### [0.3.34](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.33...@stream-io/video-react-sdk-0.3.34) (2023-10-02)
|
|
305
348
|
|
|
306
349
|
### Dependency Updates
|
|
307
350
|
|
|
308
|
-
|
|
351
|
+
- `@stream-io/video-styling` updated to version `0.1.12`
|
|
309
352
|
|
|
310
353
|
### Features
|
|
311
354
|
|
|
312
|
-
|
|
355
|
+
- **egress-composite:** add support for new options ([#1104](https://github.com/GetStream/stream-video-js/issues/1104)) ([2e039c2](https://github.com/GetStream/stream-video-js/commit/2e039c280cd808e6464ee3ab54e8c3606a0a0180)), closes [/github.com/GetStream/stream-video-js/blob/acc7301c069daeff68a8ad495e4f66bc2e61a137/sample-apps/react/egress-composite/src/ConfigurationContext.tsx#L53-L117](https://github.com/GetStream//github.com/GetStream/stream-video-js/blob/acc7301c069daeff68a8ad495e4f66bc2e61a137/sample-apps/react/egress-composite/src/ConfigurationContext.tsx/issues/L53-L117)
|
|
313
356
|
|
|
314
357
|
### [0.3.33](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.32...@stream-io/video-react-sdk-0.3.33) (2023-09-28)
|
|
315
358
|
|
|
316
359
|
### Dependency Updates
|
|
317
360
|
|
|
318
|
-
|
|
319
|
-
|
|
361
|
+
- `@stream-io/video-client` updated to version `0.3.28`
|
|
362
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.29`
|
|
363
|
+
|
|
320
364
|
### [0.3.32](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.31...@stream-io/video-react-sdk-0.3.32) (2023-09-28)
|
|
321
365
|
|
|
322
366
|
### Dependency Updates
|
|
323
367
|
|
|
324
|
-
|
|
325
|
-
|
|
368
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
369
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.28`
|
|
370
|
+
|
|
326
371
|
### [0.3.31](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.30...@stream-io/video-react-sdk-0.3.31) (2023-09-27)
|
|
327
372
|
|
|
328
373
|
### Dependency Updates
|
|
329
374
|
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
375
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
376
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.27`
|
|
377
|
+
- `@stream-io/video-styling` updated to version `0.1.11`
|
|
333
378
|
|
|
334
379
|
### Features
|
|
335
380
|
|
|
336
|
-
|
|
381
|
+
- **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))
|
|
337
382
|
|
|
338
383
|
### [0.3.30](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.29...@stream-io/video-react-sdk-0.3.30) (2023-09-27)
|
|
339
384
|
|
|
340
385
|
### Dependency Updates
|
|
341
386
|
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
387
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
388
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.26`
|
|
389
|
+
- `@stream-io/video-styling` updated to version `0.1.10`
|
|
345
390
|
|
|
346
391
|
### Features
|
|
347
392
|
|
|
348
|
-
|
|
393
|
+
- **react-sdk:** LivestreamLayout ([#1103](https://github.com/GetStream/stream-video-js/issues/1103)) ([6636699](https://github.com/GetStream/stream-video-js/commit/6636699701dfd5eb5886c50781dd5f16a8470da5))
|
|
349
394
|
|
|
350
395
|
### [0.3.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.28...@stream-io/video-react-sdk-0.3.29) (2023-09-27)
|
|
351
396
|
|
|
352
|
-
|
|
353
397
|
### Features
|
|
354
398
|
|
|
355
|
-
|
|
399
|
+
- **SpeakerLayout:** add participantsBarLimit ([#1090](https://github.com/GetStream/stream-video-js/issues/1090)) ([712f1e7](https://github.com/GetStream/stream-video-js/commit/712f1e7010fdb8859aaa6caba7e7d9e0f4557ccb))
|
|
356
400
|
|
|
357
401
|
### [0.3.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.27...@stream-io/video-react-sdk-0.3.28) (2023-09-26)
|
|
358
402
|
|
|
359
403
|
### Dependency Updates
|
|
360
404
|
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
405
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
406
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.25`
|
|
407
|
+
- `@stream-io/video-styling` updated to version `0.1.9`
|
|
364
408
|
|
|
365
409
|
### Features
|
|
366
410
|
|
|
367
|
-
|
|
411
|
+
- show the anonymous user count in the participant list ([#1109](https://github.com/GetStream/stream-video-js/issues/1109)) ([a253cbf](https://github.com/GetStream/stream-video-js/commit/a253cbfa7552a9ab4302ce824a72653a27dd324d))
|
|
368
412
|
|
|
369
413
|
### [0.3.27](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.26...@stream-io/video-react-sdk-0.3.27) (2023-09-26)
|
|
370
414
|
|
|
371
415
|
### Dependency Updates
|
|
372
416
|
|
|
373
|
-
|
|
374
|
-
|
|
417
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
418
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.24`
|
|
419
|
+
|
|
375
420
|
### [0.3.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.25...@stream-io/video-react-sdk-0.3.26) (2023-09-25)
|
|
376
421
|
|
|
377
422
|
### Dependency Updates
|
|
378
423
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
424
|
+
- `@stream-io/i18n` updated to version `0.1.2`
|
|
425
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
426
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.23`
|
|
427
|
+
- `@stream-io/video-styling` updated to version `0.1.8`
|
|
383
428
|
|
|
384
429
|
### Bug Fixes
|
|
385
430
|
|
|
386
|
-
|
|
431
|
+
- 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))
|
|
387
432
|
|
|
388
433
|
### [0.3.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.24...@stream-io/video-react-sdk-0.3.25) (2023-09-20)
|
|
389
434
|
|
|
390
435
|
### Dependency Updates
|
|
391
436
|
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
437
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
438
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.22`
|
|
439
|
+
- `@stream-io/video-styling` updated to version `0.1.7`
|
|
395
440
|
|
|
396
441
|
### Bug Fixes
|
|
397
442
|
|
|
398
|
-
|
|
443
|
+
- unmount video element when there is no video track or participant is invisible ([#1096](https://github.com/GetStream/stream-video-js/issues/1096)) ([bd01835](https://github.com/GetStream/stream-video-js/commit/bd01835f4e93c981ca2e5a7e4e09142ea4e326cf)), closes [#1094](https://github.com/GetStream/stream-video-js/issues/1094)
|
|
399
444
|
|
|
400
445
|
### [0.3.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.23...@stream-io/video-react-sdk-0.3.24) (2023-09-19)
|
|
401
446
|
|
|
402
447
|
### Dependency Updates
|
|
403
448
|
|
|
404
|
-
|
|
405
|
-
|
|
449
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
450
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.21`
|
|
451
|
+
|
|
406
452
|
### [0.3.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.22...@stream-io/video-react-sdk-0.3.23) (2023-09-18)
|
|
407
453
|
|
|
408
454
|
### Dependency Updates
|
|
409
455
|
|
|
410
|
-
|
|
456
|
+
- `@stream-io/video-styling` updated to version `0.1.6`
|
|
411
457
|
|
|
412
458
|
### Bug Fixes
|
|
413
459
|
|
|
414
|
-
|
|
460
|
+
- hide the video element when a placeholder is visible ([#1094](https://github.com/GetStream/stream-video-js/issues/1094)) ([9efd84c](https://github.com/GetStream/stream-video-js/commit/9efd84cb77b98c372917e6bfa36161763969dddd))
|
|
415
461
|
|
|
416
462
|
### [0.3.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.21...@stream-io/video-react-sdk-0.3.22) (2023-09-15)
|
|
417
463
|
|
|
418
464
|
### Dependency Updates
|
|
419
465
|
|
|
420
|
-
|
|
421
|
-
|
|
466
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
467
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.20`
|
|
468
|
+
|
|
422
469
|
### [0.3.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.20...@stream-io/video-react-sdk-0.3.21) (2023-09-15)
|
|
423
470
|
|
|
424
471
|
### Dependency Updates
|
|
425
472
|
|
|
426
|
-
|
|
427
|
-
|
|
473
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
474
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.19`
|
|
475
|
+
|
|
428
476
|
### [0.3.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.19...@stream-io/video-react-sdk-0.3.20) (2023-09-14)
|
|
429
477
|
|
|
430
478
|
### Dependency Updates
|
|
431
479
|
|
|
432
|
-
|
|
433
|
-
|
|
480
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
481
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.18`
|
|
482
|
+
|
|
434
483
|
### [0.3.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.18...@stream-io/video-react-sdk-0.3.19) (2023-09-13)
|
|
435
484
|
|
|
436
485
|
### Dependency Updates
|
|
437
486
|
|
|
438
|
-
|
|
439
|
-
|
|
487
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
488
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.17`
|
|
489
|
+
|
|
440
490
|
### [0.3.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.17...@stream-io/video-react-sdk-0.3.18) (2023-09-11)
|
|
441
491
|
|
|
442
492
|
### Dependency Updates
|
|
443
493
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
### [0.3.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.16...@stream-io/video-react-sdk-0.3.17) (2023-09-08)
|
|
494
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
495
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.16`
|
|
447
496
|
|
|
497
|
+
### [0.3.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.16...@stream-io/video-react-sdk-0.3.17) (2023-09-08)
|
|
448
498
|
|
|
449
499
|
### Bug Fixes
|
|
450
500
|
|
|
451
|
-
|
|
501
|
+
- hook dependency issues, re-compute video aspect ratio after track unmute ([#1067](https://github.com/GetStream/stream-video-js/issues/1067)) ([392c36a](https://github.com/GetStream/stream-video-js/commit/392c36af9dbabd22f72d4cc4b11aab7b1d642b1f))
|
|
452
502
|
|
|
453
503
|
### [0.3.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.15...@stream-io/video-react-sdk-0.3.16) (2023-09-05)
|
|
454
504
|
|
|
455
505
|
### Dependency Updates
|
|
456
506
|
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
### [0.3.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.14...@stream-io/video-react-sdk-0.3.15) (2023-08-31)
|
|
507
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
508
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.15`
|
|
460
509
|
|
|
510
|
+
### [0.3.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.14...@stream-io/video-react-sdk-0.3.15) (2023-08-31)
|
|
461
511
|
|
|
462
512
|
### Features
|
|
463
513
|
|
|
464
|
-
|
|
514
|
+
- **react-sdk:** add browser permissions hook ([#972](https://github.com/GetStream/stream-video-js/issues/972)) ([4f1b40c](https://github.com/GetStream/stream-video-js/commit/4f1b40c3d19d580964c1e999c8055c3b736674a4))
|
|
465
515
|
|
|
466
516
|
### [0.3.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.13...@stream-io/video-react-sdk-0.3.14) (2023-08-31)
|
|
467
517
|
|
|
468
518
|
### Dependency Updates
|
|
469
519
|
|
|
470
|
-
|
|
471
|
-
|
|
520
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
521
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.14`
|
|
522
|
+
|
|
472
523
|
### [0.3.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.12...@stream-io/video-react-sdk-0.3.13) (2023-08-31)
|
|
473
524
|
|
|
474
525
|
### Dependency Updates
|
|
475
526
|
|
|
476
|
-
|
|
477
|
-
|
|
527
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
528
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.13`
|
|
529
|
+
|
|
478
530
|
### [0.3.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.11...@stream-io/video-react-sdk-0.3.12) (2023-08-30)
|
|
479
531
|
|
|
480
532
|
### Dependency Updates
|
|
481
533
|
|
|
482
|
-
|
|
483
|
-
|
|
534
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
535
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.12`
|
|
536
|
+
|
|
484
537
|
### [0.3.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.10...@stream-io/video-react-sdk-0.3.11) (2023-08-30)
|
|
485
538
|
|
|
486
539
|
### Dependency Updates
|
|
487
540
|
|
|
488
|
-
|
|
489
|
-
|
|
541
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
542
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.11`
|
|
490
543
|
|
|
491
544
|
### Features
|
|
492
545
|
|
|
493
|
-
|
|
546
|
+
- **Call:** Dynascale support for Plain-JS SDK ([#914](https://github.com/GetStream/stream-video-js/issues/914)) ([d295fd3](https://github.com/GetStream/stream-video-js/commit/d295fd341bbe325310fc6479f24ef647b013429b))
|
|
494
547
|
|
|
495
548
|
### [0.3.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.9...@stream-io/video-react-sdk-0.3.10) (2023-08-29)
|
|
496
549
|
|
|
497
550
|
### Dependency Updates
|
|
498
551
|
|
|
499
|
-
|
|
500
|
-
|
|
552
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
553
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.10`
|
|
554
|
+
|
|
501
555
|
### [0.3.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.8...@stream-io/video-react-sdk-0.3.9) (2023-08-29)
|
|
502
556
|
|
|
503
557
|
### Dependency Updates
|
|
504
558
|
|
|
505
|
-
|
|
506
|
-
|
|
559
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
560
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.9`
|
|
561
|
+
|
|
507
562
|
### [0.3.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.7...@stream-io/video-react-sdk-0.3.8) (2023-08-24)
|
|
508
563
|
|
|
509
564
|
### Dependency Updates
|
|
510
565
|
|
|
511
|
-
|
|
512
|
-
|
|
566
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
567
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.8`
|
|
568
|
+
|
|
513
569
|
### [0.3.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.6...@stream-io/video-react-sdk-0.3.7) (2023-08-23)
|
|
514
570
|
|
|
515
571
|
### Dependency Updates
|
|
516
572
|
|
|
517
|
-
|
|
518
|
-
|
|
573
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
574
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.7`
|
|
575
|
+
|
|
519
576
|
### [0.3.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.5...@stream-io/video-react-sdk-0.3.6) (2023-08-22)
|
|
520
577
|
|
|
521
578
|
### Dependency Updates
|
|
522
579
|
|
|
523
|
-
|
|
524
|
-
|
|
580
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
581
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.6`
|
|
582
|
+
|
|
525
583
|
### [0.3.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.4...@stream-io/video-react-sdk-0.3.5) (2023-08-21)
|
|
526
584
|
|
|
527
585
|
### Dependency Updates
|
|
528
586
|
|
|
529
|
-
|
|
530
|
-
|
|
587
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
588
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.5`
|
|
589
|
+
|
|
531
590
|
### [0.3.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.3...@stream-io/video-react-sdk-0.3.4) (2023-08-18)
|
|
532
591
|
|
|
533
592
|
### Dependency Updates
|
|
534
593
|
|
|
535
|
-
|
|
536
|
-
|
|
594
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
595
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.4`
|
|
596
|
+
|
|
537
597
|
### [0.3.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.2...@stream-io/video-react-sdk-0.3.3) (2023-08-16)
|
|
538
598
|
|
|
539
599
|
### Dependency Updates
|
|
540
600
|
|
|
541
|
-
|
|
542
|
-
|
|
601
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
602
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.3`
|
|
603
|
+
|
|
543
604
|
### [0.3.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.1...@stream-io/video-react-sdk-0.3.2) (2023-08-16)
|
|
544
605
|
|
|
545
606
|
### Dependency Updates
|
|
546
607
|
|
|
547
|
-
|
|
548
|
-
|
|
608
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
609
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.2`
|
|
610
|
+
|
|
549
611
|
### [0.3.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.0...@stream-io/video-react-sdk-0.3.1) (2023-08-16)
|
|
550
612
|
|
|
551
613
|
### Dependency Updates
|
|
552
614
|
|
|
553
|
-
|
|
615
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.1`
|
|
616
|
+
|
|
554
617
|
## [0.3.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.8...@stream-io/video-react-sdk-0.3.0) (2023-08-16)
|
|
555
618
|
|
|
556
619
|
### Dependency Updates
|
|
557
620
|
|
|
558
|
-
|
|
559
|
-
|
|
621
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
622
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.0`
|
|
560
623
|
|
|
561
624
|
### ⚠ BREAKING CHANGES
|
|
562
625
|
|
|
563
|
-
|
|
626
|
+
- Call State reorganization (#931)
|
|
564
627
|
|
|
565
628
|
### Features
|
|
566
629
|
|
|
567
|
-
|
|
630
|
+
- Call State reorganization ([#931](https://github.com/GetStream/stream-video-js/issues/931)) ([441dbd4](https://github.com/GetStream/stream-video-js/commit/441dbd4ffb8c851abb0ca719be143a1e80d1418c)), closes [#917](https://github.com/GetStream/stream-video-js/issues/917)
|
|
568
631
|
|
|
569
632
|
### [0.2.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.7...@stream-io/video-react-sdk-0.2.8) (2023-08-15)
|
|
570
633
|
|
|
571
634
|
### Dependency Updates
|
|
572
635
|
|
|
573
|
-
|
|
636
|
+
- `@stream-io/video-styling` updated to version `0.1.5`
|
|
637
|
+
|
|
574
638
|
### [0.2.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.6...@stream-io/video-react-sdk-0.2.7) (2023-08-14)
|
|
575
639
|
|
|
576
640
|
### Dependency Updates
|
|
577
641
|
|
|
578
|
-
|
|
579
|
-
|
|
642
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
643
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.18`
|
|
580
644
|
|
|
581
645
|
### Features
|
|
582
646
|
|
|
583
|
-
|
|
647
|
+
- extra config params in goLive() API ([#924](https://github.com/GetStream/stream-video-js/issues/924)) ([e14a082](https://github.com/GetStream/stream-video-js/commit/e14a0829460a3c5ff6d249dd159e6118df0b8352))
|
|
584
648
|
|
|
585
649
|
### [0.2.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.5...@stream-io/video-react-sdk-0.2.6) (2023-08-11)
|
|
586
650
|
|
|
587
|
-
|
|
588
651
|
### Features
|
|
589
652
|
|
|
590
|
-
|
|
653
|
+
- flag the dominant speaker with a CSS class ([#923](https://github.com/GetStream/stream-video-js/issues/923)) ([d503578](https://github.com/GetStream/stream-video-js/commit/d5035788c6f2b1a9db195d9f5fb9dd062cad1627))
|
|
591
654
|
|
|
592
655
|
### [0.2.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.4...@stream-io/video-react-sdk-0.2.5) (2023-08-11)
|
|
593
656
|
|
|
594
657
|
### Dependency Updates
|
|
595
658
|
|
|
596
|
-
|
|
659
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.17`
|
|
597
660
|
|
|
598
661
|
### Features
|
|
599
662
|
|
|
600
|
-
|
|
663
|
+
- Wrap all call state hooks in useCallStateHooks() ([#917](https://github.com/GetStream/stream-video-js/issues/917)) ([19f891a](https://github.com/GetStream/stream-video-js/commit/19f891aab42b725b6a1d0194bf0ef8f645ccc792))
|
|
601
664
|
|
|
602
665
|
### [0.2.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.3...@stream-io/video-react-sdk-0.2.4) (2023-08-10)
|
|
603
666
|
|
|
604
667
|
### Dependency Updates
|
|
605
668
|
|
|
606
|
-
|
|
607
|
-
### [0.2.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.2...@stream-io/video-react-sdk-0.2.3) (2023-08-10)
|
|
669
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.16`
|
|
608
670
|
|
|
671
|
+
### [0.2.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.2...@stream-io/video-react-sdk-0.2.3) (2023-08-10)
|
|
609
672
|
|
|
610
673
|
### Bug Fixes
|
|
611
674
|
|
|
612
|
-
|
|
675
|
+
- **ParticipantView:** remove audio element while muted ([#918](https://github.com/GetStream/stream-video-js/issues/918)) ([076c7ff](https://github.com/GetStream/stream-video-js/commit/076c7ffbc4a525b0fb2acbc62a560734381e362b))
|
|
613
676
|
|
|
614
677
|
### [0.2.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.1...@stream-io/video-react-sdk-0.2.2) (2023-08-08)
|
|
615
678
|
|
|
616
679
|
### Dependency Updates
|
|
617
680
|
|
|
618
|
-
|
|
619
|
-
|
|
681
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
682
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.15`
|
|
620
683
|
|
|
621
684
|
### Features
|
|
622
685
|
|
|
623
|
-
|
|
686
|
+
- **livestream:** Livestream tutorial rewrite ([#909](https://github.com/GetStream/stream-video-js/issues/909)) ([49efdaa](https://github.com/GetStream/stream-video-js/commit/49efdaa14faccaa4848e8f9bdf3abb7748b925ac))
|
|
624
687
|
|
|
625
688
|
### [0.2.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.2.0...@stream-io/video-react-sdk-0.2.1) (2023-08-07)
|
|
626
689
|
|
|
627
690
|
### Dependency Updates
|
|
628
691
|
|
|
629
|
-
|
|
630
|
-
|
|
692
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
693
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.14`
|
|
694
|
+
|
|
631
695
|
## [0.2.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.18...@stream-io/video-react-sdk-0.2.0) (2023-08-07)
|
|
632
696
|
|
|
633
697
|
### Dependency Updates
|
|
634
698
|
|
|
635
|
-
|
|
636
|
-
|
|
699
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
700
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.13`
|
|
637
701
|
|
|
638
702
|
### ⚠ BREAKING CHANGES
|
|
639
703
|
|
|
640
|
-
|
|
704
|
+
- Server-side participant pinning (#881)
|
|
641
705
|
|
|
642
706
|
### Features
|
|
643
707
|
|
|
644
|
-
|
|
708
|
+
- Server-side participant pinning ([#881](https://github.com/GetStream/stream-video-js/issues/881)) ([72829f1](https://github.com/GetStream/stream-video-js/commit/72829f1caf5b9c719d063a7e5175b7aa7431cd71))
|
|
645
709
|
|
|
646
710
|
### [0.1.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.17...@stream-io/video-react-sdk-0.1.18) (2023-08-04)
|
|
647
711
|
|
|
648
712
|
### Dependency Updates
|
|
649
713
|
|
|
650
|
-
|
|
651
|
-
|
|
714
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
715
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.12`
|
|
716
|
+
|
|
652
717
|
### [0.1.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.16...@stream-io/video-react-sdk-0.1.17) (2023-08-01)
|
|
653
718
|
|
|
654
719
|
### Dependency Updates
|
|
655
720
|
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
### [0.1.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.15...@stream-io/video-react-sdk-0.1.16) (2023-08-01)
|
|
721
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
722
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.11`
|
|
659
723
|
|
|
724
|
+
### [0.1.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.15...@stream-io/video-react-sdk-0.1.16) (2023-08-01)
|
|
660
725
|
|
|
661
726
|
### Documentation
|
|
662
727
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
728
|
+
- add prop description to client and call prop of StreamVideo and StreamCall ([#873](https://github.com/GetStream/stream-video-js/issues/873)) ([4d4a2b8](https://github.com/GetStream/stream-video-js/commit/4d4a2b81506af9cf7e81a4925cabc4429f32b401))
|
|
729
|
+
- adjust Quickstart ([#872](https://github.com/GetStream/stream-video-js/issues/872)) ([42637a0](https://github.com/GetStream/stream-video-js/commit/42637a06c1b828ebd9285296be5a32a509c6c624))
|
|
730
|
+
- rewrite video-calling tutorial ([#866](https://github.com/GetStream/stream-video-js/issues/866)) ([c16d0a2](https://github.com/GetStream/stream-video-js/commit/c16d0a283b005a77dfbcbb3bb7c9946dcc501094))
|
|
666
731
|
|
|
667
732
|
### [0.1.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.14...@stream-io/video-react-sdk-0.1.15) (2023-07-28)
|
|
668
733
|
|
|
669
734
|
### Dependency Updates
|
|
670
735
|
|
|
671
|
-
|
|
672
|
-
|
|
736
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
737
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.10`
|
|
673
738
|
|
|
674
739
|
### Bug Fixes
|
|
675
740
|
|
|
676
|
-
|
|
677
|
-
|
|
741
|
+
- set initial device state regardless of call state ([#869](https://github.com/GetStream/stream-video-js/issues/869)) ([3c3cb29](https://github.com/GetStream/stream-video-js/commit/3c3cb29e5585e30b0eacc4b0ecb7bab2e075c111))
|
|
678
742
|
|
|
679
743
|
### Documentation
|
|
680
744
|
|
|
681
|
-
|
|
745
|
+
- **react-native:** UI Cookbook - Connection Quality Indicator ([#861](https://github.com/GetStream/stream-video-js/issues/861)) ([f9fc8fc](https://github.com/GetStream/stream-video-js/commit/f9fc8fc9653f29721989a52fd888b3db99b41cea))
|
|
682
746
|
|
|
683
747
|
### [0.1.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.13...@stream-io/video-react-sdk-0.1.14) (2023-07-27)
|
|
684
748
|
|
|
685
|
-
|
|
686
749
|
### Documentation
|
|
687
750
|
|
|
688
|
-
|
|
751
|
+
- Update audio room tutorial to support strict mode ([#840](https://github.com/GetStream/stream-video-js/issues/840)) ([9aec392](https://github.com/GetStream/stream-video-js/commit/9aec392ec4a44fb0c1eaee00c19568f01d7b3da9))
|
|
689
752
|
|
|
690
753
|
### [0.1.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.12...@stream-io/video-react-sdk-0.1.13) (2023-07-27)
|
|
691
754
|
|
|
692
755
|
### Dependency Updates
|
|
693
756
|
|
|
694
|
-
|
|
695
|
-
|
|
757
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
758
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.9`
|
|
759
|
+
|
|
696
760
|
### [0.1.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.11...@stream-io/video-react-sdk-0.1.12) (2023-07-26)
|
|
697
761
|
|
|
698
762
|
### Dependency Updates
|
|
699
763
|
|
|
700
|
-
|
|
701
|
-
|
|
764
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
765
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.8`
|
|
766
|
+
|
|
702
767
|
### [0.1.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.10...@stream-io/video-react-sdk-0.1.11) (2023-07-26)
|
|
703
768
|
|
|
704
769
|
### Dependency Updates
|
|
705
770
|
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
### [0.1.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.9...@stream-io/video-react-sdk-0.1.10) (2023-07-25)
|
|
771
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
772
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.7`
|
|
709
773
|
|
|
774
|
+
### [0.1.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.9...@stream-io/video-react-sdk-0.1.10) (2023-07-25)
|
|
710
775
|
|
|
711
776
|
### Features
|
|
712
777
|
|
|
713
|
-
|
|
778
|
+
- **react-native:** add translations to SDK and DF app ([#828](https://github.com/GetStream/stream-video-js/issues/828)) ([c7a7f73](https://github.com/GetStream/stream-video-js/commit/c7a7f73b5cfd9222101e4c44b6c9ec42006bcac2))
|
|
714
779
|
|
|
715
780
|
### [0.1.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.8...@stream-io/video-react-sdk-0.1.9) (2023-07-21)
|
|
716
781
|
|
|
717
|
-
|
|
718
782
|
### Documentation
|
|
719
783
|
|
|
720
|
-
|
|
784
|
+
- Fix code snippet in video calling tutorial ([dc8f8cc](https://github.com/GetStream/stream-video-js/commit/dc8f8cc58d13b32eda2c7624152470c5909698e7))
|
|
721
785
|
|
|
722
786
|
### [0.1.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.7...@stream-io/video-react-sdk-0.1.8) (2023-07-21)
|
|
723
787
|
|
|
724
788
|
### Dependency Updates
|
|
725
789
|
|
|
726
|
-
|
|
727
|
-
|
|
790
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
791
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.6`
|
|
728
792
|
|
|
729
793
|
### Bug Fixes
|
|
730
794
|
|
|
731
|
-
|
|
732
|
-
|
|
795
|
+
- strict mode issue ([#740](https://github.com/GetStream/stream-video-js/issues/740)) ([c39e4e4](https://github.com/GetStream/stream-video-js/commit/c39e4e4041a2326393478ad808b2aa791d50f8ce))
|
|
733
796
|
|
|
734
797
|
### Documentation
|
|
735
798
|
|
|
736
|
-
|
|
799
|
+
- add backlinks to the main marketing pages ([#838](https://github.com/GetStream/stream-video-js/issues/838)) ([7374972](https://github.com/GetStream/stream-video-js/commit/7374972a93e6a6052b384a11e5883b7ccbb559ff))
|
|
737
800
|
|
|
738
801
|
### [0.1.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.6...@stream-io/video-react-sdk-0.1.7) (2023-07-21)
|
|
739
802
|
|
|
740
803
|
### Dependency Updates
|
|
741
804
|
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
### [0.1.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.5...@stream-io/video-react-sdk-0.1.6) (2023-07-20)
|
|
805
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
806
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.5`
|
|
745
807
|
|
|
808
|
+
### [0.1.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.5...@stream-io/video-react-sdk-0.1.6) (2023-07-20)
|
|
746
809
|
|
|
747
810
|
### Bug Fixes
|
|
748
811
|
|
|
749
|
-
|
|
812
|
+
- Apply sinkId settings in paginated grid layout ([#829](https://github.com/GetStream/stream-video-js/issues/829)) ([017996b](https://github.com/GetStream/stream-video-js/commit/017996b42c3df3faaff40c15999880e65b3e097a))
|
|
750
813
|
|
|
751
814
|
### [0.1.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.4...@stream-io/video-react-sdk-0.1.5) (2023-07-20)
|
|
752
815
|
|
|
753
816
|
### Dependency Updates
|
|
754
817
|
|
|
755
|
-
|
|
756
|
-
|
|
818
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
819
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.4`
|
|
820
|
+
|
|
757
821
|
### [0.1.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.3...@stream-io/video-react-sdk-0.1.4) (2023-07-19)
|
|
758
822
|
|
|
759
823
|
### Dependency Updates
|
|
760
824
|
|
|
761
|
-
|
|
762
|
-
|
|
825
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
826
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.3`
|
|
827
|
+
|
|
763
828
|
### [0.1.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.2...@stream-io/video-react-sdk-0.1.3) (2023-07-18)
|
|
764
829
|
|
|
765
830
|
### Dependency Updates
|
|
766
831
|
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
### [0.1.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.1...@stream-io/video-react-sdk-0.1.2) (2023-07-17)
|
|
832
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
833
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.2`
|
|
770
834
|
|
|
835
|
+
### [0.1.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.1...@stream-io/video-react-sdk-0.1.2) (2023-07-17)
|
|
771
836
|
|
|
772
837
|
### Features
|
|
773
838
|
|
|
774
|
-
|
|
839
|
+
- Trigger react-sdk release to test sample app deployment ([77abdb6](https://github.com/GetStream/stream-video-js/commit/77abdb67bafa6c33bf7b86070999f7ad9d6010df))
|
|
775
840
|
|
|
776
841
|
### [0.1.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.1.0...@stream-io/video-react-sdk-0.1.1) (2023-07-17)
|
|
777
842
|
|