@stream-io/video-react-sdk 0.4.26 → 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 +297 -238
- 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,782 +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
|
+
|
|
5
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)
|
|
6
31
|
|
|
7
32
|
### Dependency Updates
|
|
8
33
|
|
|
9
|
-
|
|
10
|
-
|
|
34
|
+
- `@stream-io/video-client` updated to version `0.5.11`
|
|
35
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.22`
|
|
36
|
+
|
|
11
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)
|
|
12
38
|
|
|
13
39
|
### Dependency Updates
|
|
14
40
|
|
|
15
|
-
|
|
16
|
-
|
|
41
|
+
- `@stream-io/video-client` updated to version `0.5.10`
|
|
42
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.21`
|
|
43
|
+
|
|
17
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)
|
|
18
45
|
|
|
19
46
|
### Dependency Updates
|
|
20
47
|
|
|
21
|
-
|
|
22
|
-
|
|
48
|
+
- `@stream-io/video-client` updated to version `0.5.9`
|
|
49
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.20`
|
|
50
|
+
|
|
23
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)
|
|
24
52
|
|
|
25
53
|
### Dependency Updates
|
|
26
54
|
|
|
27
|
-
|
|
28
|
-
|
|
55
|
+
- `@stream-io/video-client` updated to version `0.5.8`
|
|
56
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.19`
|
|
57
|
+
|
|
29
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)
|
|
30
59
|
|
|
31
60
|
### Dependency Updates
|
|
32
61
|
|
|
33
|
-
|
|
34
|
-
|
|
62
|
+
- `@stream-io/video-client` updated to version `0.5.7`
|
|
63
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.18`
|
|
64
|
+
|
|
35
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)
|
|
36
66
|
|
|
37
67
|
### Dependency Updates
|
|
38
68
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### [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`
|
|
42
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)
|
|
43
73
|
|
|
44
74
|
### Bug Fixes
|
|
45
75
|
|
|
46
|
-
|
|
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))
|
|
47
77
|
|
|
48
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)
|
|
49
79
|
|
|
50
80
|
### Dependency Updates
|
|
51
81
|
|
|
52
|
-
|
|
53
|
-
|
|
82
|
+
- `@stream-io/video-client` updated to version `0.5.5`
|
|
83
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.16`
|
|
84
|
+
|
|
54
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)
|
|
55
86
|
|
|
56
87
|
### Dependency Updates
|
|
57
88
|
|
|
58
|
-
|
|
59
|
-
|
|
89
|
+
- `@stream-io/video-client` updated to version `0.5.4`
|
|
90
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.15`
|
|
91
|
+
|
|
60
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)
|
|
61
93
|
|
|
62
94
|
### Dependency Updates
|
|
63
95
|
|
|
64
|
-
|
|
65
|
-
|
|
96
|
+
- `@stream-io/video-client` updated to version `0.5.3`
|
|
97
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.14`
|
|
98
|
+
|
|
66
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)
|
|
67
100
|
|
|
68
101
|
### Dependency Updates
|
|
69
102
|
|
|
70
|
-
|
|
71
|
-
|
|
103
|
+
- `@stream-io/video-client` updated to version `0.5.2`
|
|
104
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.13`
|
|
105
|
+
|
|
72
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)
|
|
73
107
|
|
|
74
108
|
### Dependency Updates
|
|
75
109
|
|
|
76
|
-
|
|
77
|
-
|
|
110
|
+
- `@stream-io/video-client` updated to version `0.5.1`
|
|
111
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.12`
|
|
112
|
+
|
|
78
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)
|
|
79
114
|
|
|
80
115
|
### Dependency Updates
|
|
81
116
|
|
|
82
|
-
|
|
83
|
-
|
|
117
|
+
- `@stream-io/video-client` updated to version `0.5.0`
|
|
118
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.11`
|
|
119
|
+
|
|
84
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)
|
|
85
121
|
|
|
86
122
|
### Dependency Updates
|
|
87
123
|
|
|
88
|
-
|
|
89
|
-
|
|
124
|
+
- `@stream-io/video-client` updated to version `0.4.10`
|
|
125
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.10`
|
|
126
|
+
|
|
90
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)
|
|
91
128
|
|
|
92
129
|
### Dependency Updates
|
|
93
130
|
|
|
94
|
-
|
|
95
|
-
|
|
131
|
+
- `@stream-io/video-client` updated to version `0.4.9`
|
|
132
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.9`
|
|
96
133
|
|
|
97
134
|
### Features
|
|
98
135
|
|
|
99
|
-
|
|
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))
|
|
100
137
|
|
|
101
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)
|
|
102
139
|
|
|
103
140
|
### Dependency Updates
|
|
104
141
|
|
|
105
|
-
|
|
106
|
-
|
|
142
|
+
- `@stream-io/video-client` updated to version `0.4.8`
|
|
143
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.8`
|
|
144
|
+
|
|
107
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)
|
|
108
146
|
|
|
109
147
|
### Dependency Updates
|
|
110
148
|
|
|
111
|
-
|
|
112
|
-
|
|
149
|
+
- `@stream-io/video-client` updated to version `0.4.7`
|
|
150
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.7`
|
|
113
151
|
|
|
114
152
|
### Features
|
|
115
153
|
|
|
116
|
-
|
|
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))
|
|
117
155
|
|
|
118
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)
|
|
119
157
|
|
|
120
158
|
### Dependency Updates
|
|
121
159
|
|
|
122
|
-
|
|
123
|
-
|
|
160
|
+
- `@stream-io/video-client` updated to version `0.4.6`
|
|
161
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.6`
|
|
162
|
+
|
|
124
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)
|
|
125
164
|
|
|
126
165
|
### Dependency Updates
|
|
127
166
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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`
|
|
131
170
|
|
|
132
171
|
### Bug Fixes
|
|
133
172
|
|
|
134
|
-
|
|
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))
|
|
135
174
|
|
|
136
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)
|
|
137
176
|
|
|
138
|
-
|
|
139
177
|
### Bug Fixes
|
|
140
178
|
|
|
141
|
-
|
|
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)
|
|
142
180
|
|
|
143
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)
|
|
144
182
|
|
|
145
183
|
### Dependency Updates
|
|
146
184
|
|
|
147
|
-
|
|
148
|
-
|
|
185
|
+
- `@stream-io/video-client` updated to version `0.4.4`
|
|
186
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.4`
|
|
149
187
|
|
|
150
188
|
### Bug Fixes
|
|
151
189
|
|
|
152
|
-
|
|
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))
|
|
153
191
|
|
|
154
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)
|
|
155
193
|
|
|
156
194
|
### Dependency Updates
|
|
157
195
|
|
|
158
|
-
|
|
159
|
-
|
|
196
|
+
- `@stream-io/video-client` updated to version `0.4.3`
|
|
197
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.3`
|
|
198
|
+
|
|
160
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)
|
|
161
200
|
|
|
162
201
|
### Dependency Updates
|
|
163
202
|
|
|
164
|
-
|
|
165
|
-
|
|
203
|
+
- `@stream-io/video-client` updated to version `0.4.2`
|
|
204
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.2`
|
|
166
205
|
|
|
167
206
|
### Bug Fixes
|
|
168
207
|
|
|
169
|
-
|
|
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))
|
|
170
209
|
|
|
171
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)
|
|
172
211
|
|
|
173
|
-
|
|
174
212
|
### Bug Fixes
|
|
175
213
|
|
|
176
|
-
|
|
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))
|
|
177
215
|
|
|
178
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)
|
|
179
217
|
|
|
180
218
|
### Dependency Updates
|
|
181
219
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
### [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`
|
|
185
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)
|
|
186
224
|
|
|
187
225
|
### Bug Fixes
|
|
188
226
|
|
|
189
|
-
|
|
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))
|
|
190
228
|
|
|
191
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)
|
|
192
230
|
|
|
193
231
|
### Dependency Updates
|
|
194
232
|
|
|
195
|
-
|
|
196
|
-
|
|
233
|
+
- `@stream-io/video-client` updated to version `0.4.0`
|
|
234
|
+
- `@stream-io/video-react-bindings` updated to version `0.3.0`
|
|
197
235
|
|
|
198
236
|
### ⚠ BREAKING CHANGES
|
|
199
237
|
|
|
200
|
-
|
|
238
|
+
- **react-sdk:** Universal Device Management API (#1127)
|
|
201
239
|
|
|
202
240
|
### Features
|
|
203
241
|
|
|
204
|
-
|
|
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))
|
|
205
243
|
|
|
206
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)
|
|
207
245
|
|
|
208
|
-
|
|
209
246
|
### Bug Fixes
|
|
210
247
|
|
|
211
|
-
|
|
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))
|
|
212
249
|
|
|
213
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)
|
|
214
251
|
|
|
215
252
|
### Dependency Updates
|
|
216
253
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
### [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`
|
|
220
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)
|
|
221
258
|
|
|
222
259
|
### Bug Fixes
|
|
223
260
|
|
|
224
|
-
|
|
261
|
+
- add missing translations ([#1158](https://github.com/GetStream/stream-video-js/issues/1158)) ([6eb0c7a](https://github.com/GetStream/stream-video-js/commit/6eb0c7abf1b6a403438e4d80f275265e07e4f82f))
|
|
225
262
|
|
|
226
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)
|
|
227
264
|
|
|
228
|
-
|
|
229
265
|
### Bug Fixes
|
|
230
266
|
|
|
231
|
-
|
|
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))
|
|
232
268
|
|
|
233
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)
|
|
234
270
|
|
|
235
271
|
### Dependency Updates
|
|
236
272
|
|
|
237
|
-
|
|
238
|
-
|
|
273
|
+
- `@stream-io/video-client` updated to version `0.3.35`
|
|
274
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.36`
|
|
239
275
|
|
|
240
276
|
### Features
|
|
241
277
|
|
|
242
|
-
|
|
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))
|
|
243
279
|
|
|
244
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)
|
|
245
281
|
|
|
246
282
|
### Dependency Updates
|
|
247
283
|
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
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`
|
|
251
287
|
|
|
252
288
|
### Features
|
|
253
289
|
|
|
254
|
-
|
|
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)
|
|
255
291
|
|
|
256
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)
|
|
257
293
|
|
|
258
294
|
### Dependency Updates
|
|
259
295
|
|
|
260
|
-
|
|
261
|
-
|
|
296
|
+
- `@stream-io/video-client` updated to version `0.3.33`
|
|
297
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.34`
|
|
298
|
+
|
|
262
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)
|
|
263
300
|
|
|
264
301
|
### Dependency Updates
|
|
265
302
|
|
|
266
|
-
|
|
267
|
-
|
|
303
|
+
- `@stream-io/video-client` updated to version `0.3.32`
|
|
304
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.33`
|
|
305
|
+
|
|
268
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)
|
|
269
307
|
|
|
270
308
|
### Dependency Updates
|
|
271
309
|
|
|
272
|
-
|
|
273
|
-
|
|
310
|
+
- `@stream-io/video-client` updated to version `0.3.31`
|
|
311
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.32`
|
|
274
312
|
|
|
275
313
|
### Bug Fixes
|
|
276
314
|
|
|
277
|
-
|
|
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))
|
|
278
316
|
|
|
279
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)
|
|
280
318
|
|
|
281
319
|
### Dependency Updates
|
|
282
320
|
|
|
283
|
-
|
|
284
|
-
|
|
321
|
+
- `@stream-io/video-client` updated to version `0.3.30`
|
|
322
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.31`
|
|
285
323
|
|
|
286
324
|
### Features
|
|
287
325
|
|
|
288
|
-
|
|
326
|
+
- ScreenShare Audio support ([#1118](https://github.com/GetStream/stream-video-js/issues/1118)) ([5b63e1c](https://github.com/GetStream/stream-video-js/commit/5b63e1c5f52c76e3761e6907bd3786c19f0e5c6d))
|
|
289
327
|
|
|
290
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)
|
|
291
329
|
|
|
292
330
|
### Dependency Updates
|
|
293
331
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
### [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`
|
|
297
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)
|
|
298
336
|
|
|
299
337
|
### Bug Fixes
|
|
300
338
|
|
|
301
|
-
|
|
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))
|
|
302
340
|
|
|
303
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)
|
|
304
342
|
|
|
305
|
-
|
|
306
343
|
### Bug Fixes
|
|
307
344
|
|
|
308
|
-
|
|
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))
|
|
309
346
|
|
|
310
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)
|
|
311
348
|
|
|
312
349
|
### Dependency Updates
|
|
313
350
|
|
|
314
|
-
|
|
351
|
+
- `@stream-io/video-styling` updated to version `0.1.12`
|
|
315
352
|
|
|
316
353
|
### Features
|
|
317
354
|
|
|
318
|
-
|
|
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)
|
|
319
356
|
|
|
320
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)
|
|
321
358
|
|
|
322
359
|
### Dependency Updates
|
|
323
360
|
|
|
324
|
-
|
|
325
|
-
|
|
361
|
+
- `@stream-io/video-client` updated to version `0.3.28`
|
|
362
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.29`
|
|
363
|
+
|
|
326
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)
|
|
327
365
|
|
|
328
366
|
### Dependency Updates
|
|
329
367
|
|
|
330
|
-
|
|
331
|
-
|
|
368
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
369
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.28`
|
|
370
|
+
|
|
332
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)
|
|
333
372
|
|
|
334
373
|
### Dependency Updates
|
|
335
374
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
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`
|
|
339
378
|
|
|
340
379
|
### Features
|
|
341
380
|
|
|
342
|
-
|
|
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))
|
|
343
382
|
|
|
344
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)
|
|
345
384
|
|
|
346
385
|
### Dependency Updates
|
|
347
386
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
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`
|
|
351
390
|
|
|
352
391
|
### Features
|
|
353
392
|
|
|
354
|
-
|
|
393
|
+
- **react-sdk:** LivestreamLayout ([#1103](https://github.com/GetStream/stream-video-js/issues/1103)) ([6636699](https://github.com/GetStream/stream-video-js/commit/6636699701dfd5eb5886c50781dd5f16a8470da5))
|
|
355
394
|
|
|
356
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)
|
|
357
396
|
|
|
358
|
-
|
|
359
397
|
### Features
|
|
360
398
|
|
|
361
|
-
|
|
399
|
+
- **SpeakerLayout:** add participantsBarLimit ([#1090](https://github.com/GetStream/stream-video-js/issues/1090)) ([712f1e7](https://github.com/GetStream/stream-video-js/commit/712f1e7010fdb8859aaa6caba7e7d9e0f4557ccb))
|
|
362
400
|
|
|
363
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)
|
|
364
402
|
|
|
365
403
|
### Dependency Updates
|
|
366
404
|
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
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`
|
|
370
408
|
|
|
371
409
|
### Features
|
|
372
410
|
|
|
373
|
-
|
|
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))
|
|
374
412
|
|
|
375
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)
|
|
376
414
|
|
|
377
415
|
### Dependency Updates
|
|
378
416
|
|
|
379
|
-
|
|
380
|
-
|
|
417
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
418
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.24`
|
|
419
|
+
|
|
381
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)
|
|
382
421
|
|
|
383
422
|
### Dependency Updates
|
|
384
423
|
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
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`
|
|
389
428
|
|
|
390
429
|
### Bug Fixes
|
|
391
430
|
|
|
392
|
-
|
|
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))
|
|
393
432
|
|
|
394
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)
|
|
395
434
|
|
|
396
435
|
### Dependency Updates
|
|
397
436
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
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`
|
|
401
440
|
|
|
402
441
|
### Bug Fixes
|
|
403
442
|
|
|
404
|
-
|
|
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)
|
|
405
444
|
|
|
406
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)
|
|
407
446
|
|
|
408
447
|
### Dependency Updates
|
|
409
448
|
|
|
410
|
-
|
|
411
|
-
|
|
449
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
450
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.21`
|
|
451
|
+
|
|
412
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)
|
|
413
453
|
|
|
414
454
|
### Dependency Updates
|
|
415
455
|
|
|
416
|
-
|
|
456
|
+
- `@stream-io/video-styling` updated to version `0.1.6`
|
|
417
457
|
|
|
418
458
|
### Bug Fixes
|
|
419
459
|
|
|
420
|
-
|
|
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))
|
|
421
461
|
|
|
422
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)
|
|
423
463
|
|
|
424
464
|
### Dependency Updates
|
|
425
465
|
|
|
426
|
-
|
|
427
|
-
|
|
466
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
467
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.20`
|
|
468
|
+
|
|
428
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)
|
|
429
470
|
|
|
430
471
|
### Dependency Updates
|
|
431
472
|
|
|
432
|
-
|
|
433
|
-
|
|
473
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
474
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.19`
|
|
475
|
+
|
|
434
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)
|
|
435
477
|
|
|
436
478
|
### Dependency Updates
|
|
437
479
|
|
|
438
|
-
|
|
439
|
-
|
|
480
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
481
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.18`
|
|
482
|
+
|
|
440
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)
|
|
441
484
|
|
|
442
485
|
### Dependency Updates
|
|
443
486
|
|
|
444
|
-
|
|
445
|
-
|
|
487
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
488
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.17`
|
|
489
|
+
|
|
446
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)
|
|
447
491
|
|
|
448
492
|
### Dependency Updates
|
|
449
493
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
### [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`
|
|
453
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)
|
|
454
498
|
|
|
455
499
|
### Bug Fixes
|
|
456
500
|
|
|
457
|
-
|
|
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))
|
|
458
502
|
|
|
459
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)
|
|
460
504
|
|
|
461
505
|
### Dependency Updates
|
|
462
506
|
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
### [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`
|
|
466
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)
|
|
467
511
|
|
|
468
512
|
### Features
|
|
469
513
|
|
|
470
|
-
|
|
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))
|
|
471
515
|
|
|
472
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)
|
|
473
517
|
|
|
474
518
|
### Dependency Updates
|
|
475
519
|
|
|
476
|
-
|
|
477
|
-
|
|
520
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
521
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.14`
|
|
522
|
+
|
|
478
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)
|
|
479
524
|
|
|
480
525
|
### Dependency Updates
|
|
481
526
|
|
|
482
|
-
|
|
483
|
-
|
|
527
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
528
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.13`
|
|
529
|
+
|
|
484
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)
|
|
485
531
|
|
|
486
532
|
### Dependency Updates
|
|
487
533
|
|
|
488
|
-
|
|
489
|
-
|
|
534
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
535
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.12`
|
|
536
|
+
|
|
490
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)
|
|
491
538
|
|
|
492
539
|
### Dependency Updates
|
|
493
540
|
|
|
494
|
-
|
|
495
|
-
|
|
541
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
542
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.11`
|
|
496
543
|
|
|
497
544
|
### Features
|
|
498
545
|
|
|
499
|
-
|
|
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))
|
|
500
547
|
|
|
501
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)
|
|
502
549
|
|
|
503
550
|
### Dependency Updates
|
|
504
551
|
|
|
505
|
-
|
|
506
|
-
|
|
552
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
553
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.10`
|
|
554
|
+
|
|
507
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)
|
|
508
556
|
|
|
509
557
|
### Dependency Updates
|
|
510
558
|
|
|
511
|
-
|
|
512
|
-
|
|
559
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
560
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.9`
|
|
561
|
+
|
|
513
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)
|
|
514
563
|
|
|
515
564
|
### Dependency Updates
|
|
516
565
|
|
|
517
|
-
|
|
518
|
-
|
|
566
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
567
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.8`
|
|
568
|
+
|
|
519
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)
|
|
520
570
|
|
|
521
571
|
### Dependency Updates
|
|
522
572
|
|
|
523
|
-
|
|
524
|
-
|
|
573
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
574
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.7`
|
|
575
|
+
|
|
525
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)
|
|
526
577
|
|
|
527
578
|
### Dependency Updates
|
|
528
579
|
|
|
529
|
-
|
|
530
|
-
|
|
580
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
581
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.6`
|
|
582
|
+
|
|
531
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)
|
|
532
584
|
|
|
533
585
|
### Dependency Updates
|
|
534
586
|
|
|
535
|
-
|
|
536
|
-
|
|
587
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
588
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.5`
|
|
589
|
+
|
|
537
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)
|
|
538
591
|
|
|
539
592
|
### Dependency Updates
|
|
540
593
|
|
|
541
|
-
|
|
542
|
-
|
|
594
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
595
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.4`
|
|
596
|
+
|
|
543
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)
|
|
544
598
|
|
|
545
599
|
### Dependency Updates
|
|
546
600
|
|
|
547
|
-
|
|
548
|
-
|
|
601
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
602
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.3`
|
|
603
|
+
|
|
549
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)
|
|
550
605
|
|
|
551
606
|
### Dependency Updates
|
|
552
607
|
|
|
553
|
-
|
|
554
|
-
|
|
608
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
609
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.2`
|
|
610
|
+
|
|
555
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)
|
|
556
612
|
|
|
557
613
|
### Dependency Updates
|
|
558
614
|
|
|
559
|
-
|
|
615
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.1`
|
|
616
|
+
|
|
560
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)
|
|
561
618
|
|
|
562
619
|
### Dependency Updates
|
|
563
620
|
|
|
564
|
-
|
|
565
|
-
|
|
621
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
622
|
+
- `@stream-io/video-react-bindings` updated to version `0.2.0`
|
|
566
623
|
|
|
567
624
|
### ⚠ BREAKING CHANGES
|
|
568
625
|
|
|
569
|
-
|
|
626
|
+
- Call State reorganization (#931)
|
|
570
627
|
|
|
571
628
|
### Features
|
|
572
629
|
|
|
573
|
-
|
|
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)
|
|
574
631
|
|
|
575
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)
|
|
576
633
|
|
|
577
634
|
### Dependency Updates
|
|
578
635
|
|
|
579
|
-
|
|
636
|
+
- `@stream-io/video-styling` updated to version `0.1.5`
|
|
637
|
+
|
|
580
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)
|
|
581
639
|
|
|
582
640
|
### Dependency Updates
|
|
583
641
|
|
|
584
|
-
|
|
585
|
-
|
|
642
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
643
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.18`
|
|
586
644
|
|
|
587
645
|
### Features
|
|
588
646
|
|
|
589
|
-
|
|
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))
|
|
590
648
|
|
|
591
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)
|
|
592
650
|
|
|
593
|
-
|
|
594
651
|
### Features
|
|
595
652
|
|
|
596
|
-
|
|
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))
|
|
597
654
|
|
|
598
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)
|
|
599
656
|
|
|
600
657
|
### Dependency Updates
|
|
601
658
|
|
|
602
|
-
|
|
659
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.17`
|
|
603
660
|
|
|
604
661
|
### Features
|
|
605
662
|
|
|
606
|
-
|
|
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))
|
|
607
664
|
|
|
608
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)
|
|
609
666
|
|
|
610
667
|
### Dependency Updates
|
|
611
668
|
|
|
612
|
-
|
|
613
|
-
### [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`
|
|
614
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)
|
|
615
672
|
|
|
616
673
|
### Bug Fixes
|
|
617
674
|
|
|
618
|
-
|
|
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))
|
|
619
676
|
|
|
620
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)
|
|
621
678
|
|
|
622
679
|
### Dependency Updates
|
|
623
680
|
|
|
624
|
-
|
|
625
|
-
|
|
681
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
682
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.15`
|
|
626
683
|
|
|
627
684
|
### Features
|
|
628
685
|
|
|
629
|
-
|
|
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))
|
|
630
687
|
|
|
631
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)
|
|
632
689
|
|
|
633
690
|
### Dependency Updates
|
|
634
691
|
|
|
635
|
-
|
|
636
|
-
|
|
692
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
693
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.14`
|
|
694
|
+
|
|
637
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)
|
|
638
696
|
|
|
639
697
|
### Dependency Updates
|
|
640
698
|
|
|
641
|
-
|
|
642
|
-
|
|
699
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
700
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.13`
|
|
643
701
|
|
|
644
702
|
### ⚠ BREAKING CHANGES
|
|
645
703
|
|
|
646
|
-
|
|
704
|
+
- Server-side participant pinning (#881)
|
|
647
705
|
|
|
648
706
|
### Features
|
|
649
707
|
|
|
650
|
-
|
|
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))
|
|
651
709
|
|
|
652
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)
|
|
653
711
|
|
|
654
712
|
### Dependency Updates
|
|
655
713
|
|
|
656
|
-
|
|
657
|
-
|
|
714
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
715
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.12`
|
|
716
|
+
|
|
658
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)
|
|
659
718
|
|
|
660
719
|
### Dependency Updates
|
|
661
720
|
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
### [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`
|
|
665
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)
|
|
666
725
|
|
|
667
726
|
### Documentation
|
|
668
727
|
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
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))
|
|
672
731
|
|
|
673
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)
|
|
674
733
|
|
|
675
734
|
### Dependency Updates
|
|
676
735
|
|
|
677
|
-
|
|
678
|
-
|
|
736
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
737
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.10`
|
|
679
738
|
|
|
680
739
|
### Bug Fixes
|
|
681
740
|
|
|
682
|
-
|
|
683
|
-
|
|
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))
|
|
684
742
|
|
|
685
743
|
### Documentation
|
|
686
744
|
|
|
687
|
-
|
|
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))
|
|
688
746
|
|
|
689
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)
|
|
690
748
|
|
|
691
|
-
|
|
692
749
|
### Documentation
|
|
693
750
|
|
|
694
|
-
|
|
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))
|
|
695
752
|
|
|
696
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)
|
|
697
754
|
|
|
698
755
|
### Dependency Updates
|
|
699
756
|
|
|
700
|
-
|
|
701
|
-
|
|
757
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
758
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.9`
|
|
759
|
+
|
|
702
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)
|
|
703
761
|
|
|
704
762
|
### Dependency Updates
|
|
705
763
|
|
|
706
|
-
|
|
707
|
-
|
|
764
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
765
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.8`
|
|
766
|
+
|
|
708
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)
|
|
709
768
|
|
|
710
769
|
### Dependency Updates
|
|
711
770
|
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
### [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`
|
|
715
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)
|
|
716
775
|
|
|
717
776
|
### Features
|
|
718
777
|
|
|
719
|
-
|
|
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))
|
|
720
779
|
|
|
721
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)
|
|
722
781
|
|
|
723
|
-
|
|
724
782
|
### Documentation
|
|
725
783
|
|
|
726
|
-
|
|
784
|
+
- Fix code snippet in video calling tutorial ([dc8f8cc](https://github.com/GetStream/stream-video-js/commit/dc8f8cc58d13b32eda2c7624152470c5909698e7))
|
|
727
785
|
|
|
728
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)
|
|
729
787
|
|
|
730
788
|
### Dependency Updates
|
|
731
789
|
|
|
732
|
-
|
|
733
|
-
|
|
790
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
791
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.6`
|
|
734
792
|
|
|
735
793
|
### Bug Fixes
|
|
736
794
|
|
|
737
|
-
|
|
738
|
-
|
|
795
|
+
- strict mode issue ([#740](https://github.com/GetStream/stream-video-js/issues/740)) ([c39e4e4](https://github.com/GetStream/stream-video-js/commit/c39e4e4041a2326393478ad808b2aa791d50f8ce))
|
|
739
796
|
|
|
740
797
|
### Documentation
|
|
741
798
|
|
|
742
|
-
|
|
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))
|
|
743
800
|
|
|
744
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)
|
|
745
802
|
|
|
746
803
|
### Dependency Updates
|
|
747
804
|
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
### [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`
|
|
751
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)
|
|
752
809
|
|
|
753
810
|
### Bug Fixes
|
|
754
811
|
|
|
755
|
-
|
|
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))
|
|
756
813
|
|
|
757
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)
|
|
758
815
|
|
|
759
816
|
### Dependency Updates
|
|
760
817
|
|
|
761
|
-
|
|
762
|
-
|
|
818
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
819
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.4`
|
|
820
|
+
|
|
763
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)
|
|
764
822
|
|
|
765
823
|
### Dependency Updates
|
|
766
824
|
|
|
767
|
-
|
|
768
|
-
|
|
825
|
+
- `@stream-io/video-client` updated to version `0.1.0`
|
|
826
|
+
- `@stream-io/video-react-bindings` updated to version `0.1.3`
|
|
827
|
+
|
|
769
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)
|
|
770
829
|
|
|
771
830
|
### Dependency Updates
|
|
772
831
|
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
### [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`
|
|
776
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)
|
|
777
836
|
|
|
778
837
|
### Features
|
|
779
838
|
|
|
780
|
-
|
|
839
|
+
- Trigger react-sdk release to test sample app deployment ([77abdb6](https://github.com/GetStream/stream-video-js/commit/77abdb67bafa6c33bf7b86070999f7ad9d6010df))
|
|
781
840
|
|
|
782
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)
|
|
783
842
|
|