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