@stream-io/video-client 1.18.7 → 1.18.9
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 +104 -168
- package/dist/index.browser.es.js +99 -54
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +99 -54
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +99 -54
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +10 -1
- package/dist/src/devices/ScreenShareManager.d.ts +1 -3
- package/dist/src/gen/video/sfu/event/events.d.ts +1 -19
- package/dist/src/gen/video/sfu/signal_rpc/signal.client.d.ts +2 -21
- package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +1 -9
- package/dist/src/helpers/promise.d.ts +2 -2
- package/dist/src/store/CallState.d.ts +5 -0
- package/package.json +10 -11
- package/src/Call.ts +61 -10
- package/src/StreamSfuClient.ts +9 -3
- package/src/StreamVideoClient.ts +4 -5
- package/src/__tests__/Call.test.ts +1 -1
- package/src/coordinator/connection/client.ts +2 -3
- package/src/coordinator/connection/connection.ts +14 -14
- package/src/coordinator/connection/signing.ts +1 -1
- package/src/devices/BrowserPermission.ts +3 -2
- package/src/devices/MicrophoneManager.ts +1 -1
- package/src/devices/ScreenShareManager.ts +1 -3
- package/src/devices/__tests__/InputMediaDeviceManager.test.ts +1 -1
- package/src/devices/__tests__/MicrophoneManager.test.ts +4 -4
- package/src/devices/__tests__/MicrophoneManagerRN.test.ts +4 -4
- package/src/devices/devices.ts +3 -1
- package/src/events/__tests__/call.test.ts +42 -57
- package/src/events/__tests__/internal.test.ts +14 -13
- package/src/events/__tests__/mutes.test.ts +7 -3
- package/src/events/__tests__/participant.test.ts +16 -20
- package/src/events/__tests__/speaker.test.ts +6 -6
- package/src/events/internal.ts +1 -0
- package/src/gen/coordinator/index.ts +1 -1
- package/src/gen/video/sfu/event/events.ts +22 -20
- package/src/gen/video/sfu/models/models.ts +0 -1
- package/src/gen/video/sfu/signal_rpc/signal.client.ts +27 -23
- package/src/gen/video/sfu/signal_rpc/signal.ts +13 -11
- package/src/helpers/RNSpeechDetector.ts +3 -4
- package/src/helpers/__tests__/DynascaleManager.test.ts +27 -26
- package/src/helpers/__tests__/clientUtils.test.ts +0 -1
- package/src/helpers/client-details.ts +1 -1
- package/src/helpers/promise.ts +4 -4
- package/src/rtc/Dispatcher.ts +1 -1
- package/src/rtc/Publisher.ts +2 -2
- package/src/rtc/__tests__/Publisher.test.ts +8 -8
- package/src/rtc/__tests__/Subscriber.test.ts +9 -9
- package/src/rtc/__tests__/mocks/webrtc.mocks.ts +2 -2
- package/src/rtc/helpers/__tests__/sdp.test.ts +3 -3
- package/src/stats/CallStateStatsReporter.ts +2 -3
- package/src/store/CallState.ts +9 -1
- package/src/store/__tests__/CallState.test.ts +59 -115
- package/src/timers/worker.ts +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,562 +2,498 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
-
## [1.18.
|
|
5
|
+
## [1.18.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.8...@stream-io/video-client-1.18.9) (2025-04-02)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* pick correct device for speaking while muted detection ([#1744](https://github.com/GetStream/stream-video-js/issues/1744)) ([33044f5](https://github.com/GetStream/stream-video-js/commit/33044f56ec7debba2e14d5a87dde9eaa87a02089)), closes [#1538](https://github.com/GetStream/stream-video-js/issues/1538)
|
|
11
|
+
* reset the call state value when "live" ends ([#1740](https://github.com/GetStream/stream-video-js/issues/1740)) ([2123a10](https://github.com/GetStream/stream-video-js/commit/2123a104bb790a7384506fd475b779c02b116edd))
|
|
12
|
+
|
|
13
|
+
## [1.18.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.7...@stream-io/video-client-1.18.8) (2025-04-01)
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
|
|
16
|
+
* dependency upgrades and cleanup ([#1727](https://github.com/GetStream/stream-video-js/issues/1727)) ([c3b0ede](https://github.com/GetStream/stream-video-js/commit/c3b0ede3ce444c28c51457155e8ccff584c2c1e5))
|
|
14
17
|
|
|
15
18
|
|
|
16
19
|
### Bug Fixes
|
|
17
20
|
|
|
18
|
-
*
|
|
21
|
+
* implement retry logic for call joining process ([#1738](https://github.com/GetStream/stream-video-js/issues/1738)) ([71599c3](https://github.com/GetStream/stream-video-js/commit/71599c3ddda51a247d7933cd6b12ca8fd03d7033))
|
|
19
22
|
|
|
20
|
-
## [1.18.
|
|
23
|
+
## [1.18.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.6...@stream-io/video-client-1.18.7) (2025-03-20)
|
|
21
24
|
|
|
25
|
+
### Bug Fixes
|
|
22
26
|
|
|
23
|
-
|
|
27
|
+
- rename `toJSON` to `asJSON` ([#1729](https://github.com/GetStream/stream-video-js/issues/1729)) ([0d7d074](https://github.com/GetStream/stream-video-js/commit/0d7d074dac1032690b5f4af4d6ba5fcdd56dfaa2))
|
|
28
|
+
- update call reject reasons ([#1730](https://github.com/GetStream/stream-video-js/issues/1730)) ([100ed6b](https://github.com/GetStream/stream-video-js/commit/100ed6b9323b66e86123917abf4fc2973a677fca))
|
|
24
29
|
|
|
30
|
+
## [1.18.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.5...@stream-io/video-client-1.18.6) (2025-03-13)
|
|
25
31
|
|
|
26
32
|
### Bug Fixes
|
|
27
33
|
|
|
28
|
-
|
|
34
|
+
- ensure negotiation runs sequentially ([#1722](https://github.com/GetStream/stream-video-js/issues/1722)) ([7e166aa](https://github.com/GetStream/stream-video-js/commit/7e166aaf606c3f751068cf60bd554e6374f701d7))
|
|
29
35
|
|
|
30
|
-
## [1.18.
|
|
36
|
+
## [1.18.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.4...@stream-io/video-client-1.18.5) (2025-03-12)
|
|
31
37
|
|
|
38
|
+
- Upgrade to Next 15.2 ([#1717](https://github.com/GetStream/stream-video-js/issues/1717)) ([9b1aec3](https://github.com/GetStream/stream-video-js/commit/9b1aec3447dee611c0d900db44add6b6c89e2b8d))
|
|
32
39
|
|
|
33
40
|
### Bug Fixes
|
|
34
41
|
|
|
35
|
-
|
|
42
|
+
- add pending browser permission state ([#1718](https://github.com/GetStream/stream-video-js/issues/1718)) ([7f24be6](https://github.com/GetStream/stream-video-js/commit/7f24be63d33105d0688be7b5b625bc9b6aa0d3a9))
|
|
36
43
|
|
|
37
|
-
## [1.18.
|
|
44
|
+
## [1.18.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.3...@stream-io/video-client-1.18.4) (2025-03-10)
|
|
38
45
|
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
- retryable client.connectUser() ([#1710](https://github.com/GetStream/stream-video-js/issues/1710)) ([10b6860](https://github.com/GetStream/stream-video-js/commit/10b6860e1d65c38d8eb0ba7d7ea18f0ca30f5abc))
|
|
49
|
+
|
|
50
|
+
## [1.18.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.2...@stream-io/video-client-1.18.3) (2025-03-05)
|
|
39
51
|
|
|
40
52
|
### Bug Fixes
|
|
41
53
|
|
|
42
|
-
|
|
54
|
+
- revert the release of cloned track on publisher dispose ([556fb61](https://github.com/GetStream/stream-video-js/commit/556fb610ae1c9a1965f38fc07e995683b5052544))
|
|
43
55
|
|
|
44
56
|
## [1.18.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.1...@stream-io/video-client-1.18.2) (2025-03-04)
|
|
45
57
|
|
|
46
|
-
|
|
47
58
|
### Bug Fixes
|
|
48
59
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
60
|
+
- do not accept again on reconnections ([#1705](https://github.com/GetStream/stream-video-js/issues/1705)) ([bedd2d8](https://github.com/GetStream/stream-video-js/commit/bedd2d8aafd7ff8260f63b500e25807518ccd365))
|
|
61
|
+
- do not stop original track in RN ([#1708](https://github.com/GetStream/stream-video-js/issues/1708)) ([ab0ada2](https://github.com/GetStream/stream-video-js/commit/ab0ada283c753d4cdfd59b6eaf75af26cf54fd7e))
|
|
62
|
+
- prevent extra unnecessary reconnect after offline to online ([#1706](https://github.com/GetStream/stream-video-js/issues/1706)) ([bc3920a](https://github.com/GetStream/stream-video-js/commit/bc3920a81f398fd9e166ee4517b32d58f50d56fe))
|
|
52
63
|
|
|
53
64
|
## [1.18.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.0...@stream-io/video-client-1.18.1) (2025-02-28)
|
|
54
65
|
|
|
55
|
-
|
|
56
66
|
### Bug Fixes
|
|
57
67
|
|
|
58
|
-
|
|
68
|
+
- prevent reconnecting state when offline ([#1703](https://github.com/GetStream/stream-video-js/issues/1703)) ([aeac90d](https://github.com/GetStream/stream-video-js/commit/aeac90d8b7b14820e3e0e30282e51fc7824f8bf8))
|
|
59
69
|
|
|
60
70
|
## [1.18.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.17.1...@stream-io/video-client-1.18.0) (2025-02-26)
|
|
61
71
|
|
|
62
|
-
|
|
63
72
|
### Features
|
|
64
73
|
|
|
65
|
-
|
|
66
|
-
|
|
74
|
+
- align SDK version reporting, use higher-entropy user agent data for stats ([#1696](https://github.com/GetStream/stream-video-js/issues/1696)) ([e02e8d9](https://github.com/GetStream/stream-video-js/commit/e02e8d9b3843086a3fa859a8bd31ba65ace5a7fd))
|
|
67
75
|
|
|
68
76
|
### Bug Fixes
|
|
69
77
|
|
|
70
|
-
|
|
71
|
-
|
|
78
|
+
- don't implicitly mark calls as `ringing` ([#1697](https://github.com/GetStream/stream-video-js/issues/1697)) ([3429a7b](https://github.com/GetStream/stream-video-js/commit/3429a7ba52e13a43b96d2c3c28f270da111f84b2)), closes [/github.com/GetStream/stream-video-js/issues/1561#issuecomment-2662584543](https://github.com/GetStream//github.com/GetStream/stream-video-js/issues/1561/issues/issuecomment-2662584543)
|
|
79
|
+
- use axios version that doesnt import node specific module ([#1699](https://github.com/GetStream/stream-video-js/issues/1699)) ([414e01b](https://github.com/GetStream/stream-video-js/commit/414e01b9c7e4c4862b429e48c506673bcc228fa4))
|
|
72
80
|
|
|
73
81
|
## [1.17.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.17.0...@stream-io/video-client-1.17.1) (2025-02-19)
|
|
74
82
|
|
|
75
|
-
|
|
76
83
|
### Bug Fixes
|
|
77
84
|
|
|
78
|
-
|
|
85
|
+
- do not reconnect when device is offline ([#1688](https://github.com/GetStream/stream-video-js/issues/1688)) ([c6b6f58](https://github.com/GetStream/stream-video-js/commit/c6b6f58310a3365eb6f40d76a15c26791f413241))
|
|
79
86
|
|
|
80
87
|
## [1.17.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.7...@stream-io/video-client-1.17.0) (2025-02-17)
|
|
81
88
|
|
|
82
|
-
|
|
83
89
|
### Features
|
|
84
90
|
|
|
85
|
-
|
|
91
|
+
- support static token and token provider at the same time ([#1685](https://github.com/GetStream/stream-video-js/issues/1685)) ([4365a3d](https://github.com/GetStream/stream-video-js/commit/4365a3dd0a14c98041982bde8be21258b8cfd571))
|
|
86
92
|
|
|
87
93
|
## [1.16.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.6...@stream-io/video-client-1.16.7) (2025-02-12)
|
|
88
94
|
|
|
89
|
-
|
|
90
95
|
### Bug Fixes
|
|
91
96
|
|
|
92
|
-
|
|
97
|
+
- relax device constraints on NotFoundError DOMException ([#1680](https://github.com/GetStream/stream-video-js/issues/1680)) ([c682908](https://github.com/GetStream/stream-video-js/commit/c682908408395f6863fd1549958cf4203bcc7f32))
|
|
93
98
|
|
|
94
99
|
## [1.16.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.5...@stream-io/video-client-1.16.6) (2025-02-11)
|
|
95
100
|
|
|
96
|
-
|
|
97
101
|
### Bug Fixes
|
|
98
102
|
|
|
99
|
-
|
|
103
|
+
- prefer the async apply constraints for flip ([#1679](https://github.com/GetStream/stream-video-js/issues/1679)) ([8c246cc](https://github.com/GetStream/stream-video-js/commit/8c246cc4e9f1ac766366cf24b82dd99aa868017d))
|
|
100
104
|
|
|
101
105
|
## [1.16.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.4...@stream-io/video-client-1.16.5) (2025-02-10)
|
|
102
106
|
|
|
103
|
-
|
|
104
107
|
### Bug Fixes
|
|
105
108
|
|
|
106
|
-
|
|
109
|
+
- ensure all tracks are stopped when disposing a Publisher ([#1677](https://github.com/GetStream/stream-video-js/issues/1677)) ([172d345](https://github.com/GetStream/stream-video-js/commit/172d345ceada2bf82df1aec604a2325947896c5c)), closes [#1676](https://github.com/GetStream/stream-video-js/issues/1676)
|
|
107
110
|
|
|
108
111
|
## [1.16.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.3...@stream-io/video-client-1.16.4) (2025-02-07)
|
|
109
112
|
|
|
110
|
-
|
|
111
113
|
### Bug Fixes
|
|
112
114
|
|
|
113
|
-
|
|
115
|
+
- ensure tracks are stopped when disposing a Publisher ([#1676](https://github.com/GetStream/stream-video-js/issues/1676)) ([948f672](https://github.com/GetStream/stream-video-js/commit/948f672243e1f2a0e9499184ee31db4bc88f9952))
|
|
114
116
|
|
|
115
117
|
## [1.16.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.2...@stream-io/video-client-1.16.3) (2025-02-06)
|
|
116
118
|
|
|
117
|
-
|
|
118
119
|
### Bug Fixes
|
|
119
120
|
|
|
120
|
-
|
|
121
|
+
- relaxed validation for submitting feedback ([#1673](https://github.com/GetStream/stream-video-js/issues/1673)) ([98685b9](https://github.com/GetStream/stream-video-js/commit/98685b9fcf3c3b0309a7072d51cde4657e028528))
|
|
121
122
|
|
|
122
123
|
## [1.16.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.1...@stream-io/video-client-1.16.2) (2025-02-05)
|
|
123
124
|
|
|
124
|
-
|
|
125
125
|
### Bug Fixes
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
- race condition with unrecoverable error handling ([#1672](https://github.com/GetStream/stream-video-js/issues/1672)) ([be8095c](https://github.com/GetStream/stream-video-js/commit/be8095ce946cf98a0dfc1f3ea3391376cc7d2896)), closes [#1649](https://github.com/GetStream/stream-video-js/issues/1649) [#1618](https://github.com/GetStream/stream-video-js/issues/1618)
|
|
128
128
|
|
|
129
129
|
## [1.16.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.16.0...@stream-io/video-client-1.16.1) (2025-02-05)
|
|
130
130
|
|
|
131
|
-
|
|
132
|
-
* add trace log for call unregister ([e20d9dc](https://github.com/GetStream/stream-video-js/commit/e20d9dc28b35c5dd0c921ccc3e18923a344ae5ab))
|
|
133
|
-
|
|
131
|
+
- add trace log for call unregister ([e20d9dc](https://github.com/GetStream/stream-video-js/commit/e20d9dc28b35c5dd0c921ccc3e18923a344ae5ab))
|
|
134
132
|
|
|
135
133
|
### Bug Fixes
|
|
136
134
|
|
|
137
|
-
|
|
135
|
+
- do not mute track on camera flip ([#1671](https://github.com/GetStream/stream-video-js/issues/1671)) ([963eb4d](https://github.com/GetStream/stream-video-js/commit/963eb4d4e5d6b96afb61b4da23a05ad92bcb3973))
|
|
138
136
|
|
|
139
137
|
## [1.16.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.7...@stream-io/video-client-1.16.0) (2025-01-31)
|
|
140
138
|
|
|
141
|
-
|
|
142
139
|
### Features
|
|
143
140
|
|
|
144
|
-
|
|
141
|
+
- OpenAPI upgrades and HLS status reporting ([#1668](https://github.com/GetStream/stream-video-js/issues/1668)) ([2f377b8](https://github.com/GetStream/stream-video-js/commit/2f377b8772f7b9fc8fcb8b8e9b3eecb1920bc7d0))
|
|
145
142
|
|
|
146
143
|
## [1.15.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.6...@stream-io/video-client-1.15.7) (2025-01-29)
|
|
147
144
|
|
|
148
|
-
|
|
149
145
|
### Bug Fixes
|
|
150
146
|
|
|
151
|
-
|
|
147
|
+
- speech detection and align mic disable with web ([#1658](https://github.com/GetStream/stream-video-js/issues/1658)) ([fd908fb](https://github.com/GetStream/stream-video-js/commit/fd908fb2b70e6bade595f44107ca2f85aa4d5631))
|
|
152
148
|
|
|
153
149
|
## [1.15.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.5...@stream-io/video-client-1.15.6) (2025-01-29)
|
|
154
150
|
|
|
155
|
-
|
|
156
151
|
### Bug Fixes
|
|
157
152
|
|
|
158
|
-
|
|
153
|
+
- ensures that maxBitrate is an integer ([#1657](https://github.com/GetStream/stream-video-js/issues/1657)) ([69eee96](https://github.com/GetStream/stream-video-js/commit/69eee969ac4d52e3410d8e5e12e012b02a5eb1b7)), closes [#1527](https://github.com/GetStream/stream-video-js/issues/1527)
|
|
159
154
|
|
|
160
155
|
## [1.15.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.4...@stream-io/video-client-1.15.5) (2025-01-24)
|
|
161
156
|
|
|
162
|
-
|
|
163
157
|
### Bug Fixes
|
|
164
158
|
|
|
165
|
-
|
|
159
|
+
- remove the participants from state when leaving call ([003ac26](https://github.com/GetStream/stream-video-js/commit/003ac26eff3c14779d5f25e6e64973c88a5b811d))
|
|
166
160
|
|
|
167
161
|
## [1.15.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.3...@stream-io/video-client-1.15.4) (2025-01-23)
|
|
168
162
|
|
|
169
|
-
|
|
170
163
|
### Bug Fixes
|
|
171
164
|
|
|
172
|
-
|
|
165
|
+
- leave ringing call if accepted or rejected elsewhere ([#1654](https://github.com/GetStream/stream-video-js/issues/1654)) ([9f25adf](https://github.com/GetStream/stream-video-js/commit/9f25adf8796db369f7e3e236e6a178f525ae8f55))
|
|
173
166
|
|
|
174
167
|
## [1.15.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.2...@stream-io/video-client-1.15.3) (2025-01-21)
|
|
175
168
|
|
|
176
|
-
|
|
177
169
|
### Bug Fixes
|
|
178
170
|
|
|
179
|
-
|
|
171
|
+
- restore calling state if SFU connection fails during join ([#1652](https://github.com/GetStream/stream-video-js/issues/1652)) ([ff7f221](https://github.com/GetStream/stream-video-js/commit/ff7f221ad285ca1994fc3a780aa8183df2de3e99))
|
|
180
172
|
|
|
181
173
|
## [1.15.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.1...@stream-io/video-client-1.15.2) (2025-01-20)
|
|
182
174
|
|
|
183
|
-
|
|
184
175
|
### Bug Fixes
|
|
185
176
|
|
|
186
|
-
|
|
177
|
+
- improved error handling when connecting to an SFU ([#1648](https://github.com/GetStream/stream-video-js/issues/1648)) ([27332b4](https://github.com/GetStream/stream-video-js/commit/27332b484094e26a123a1dfe8bb614c35ce1022a))
|
|
187
178
|
|
|
188
179
|
## [1.15.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.15.0...@stream-io/video-client-1.15.1) (2025-01-16)
|
|
189
180
|
|
|
190
|
-
|
|
191
181
|
### Bug Fixes
|
|
192
182
|
|
|
193
|
-
|
|
183
|
+
- update mute state only for video track on mobile ([#1645](https://github.com/GetStream/stream-video-js/issues/1645)) ([c0507cb](https://github.com/GetStream/stream-video-js/commit/c0507cb02e0058b8b968237220234771c9a30e6f)), closes [#1527](https://github.com/GetStream/stream-video-js/issues/1527)
|
|
194
184
|
|
|
195
185
|
## [1.15.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.14.0...@stream-io/video-client-1.15.0) (2025-01-15)
|
|
196
186
|
|
|
197
|
-
|
|
198
187
|
### Features
|
|
199
188
|
|
|
200
|
-
|
|
189
|
+
- Codec Negotiation ([#1527](https://github.com/GetStream/stream-video-js/issues/1527)) ([2e9e344](https://github.com/GetStream/stream-video-js/commit/2e9e344d5259e3069dddb17846013becef24829e))
|
|
201
190
|
|
|
202
191
|
## [1.14.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.13.1...@stream-io/video-client-1.14.0) (2025-01-02)
|
|
203
192
|
|
|
204
|
-
|
|
205
193
|
### Features
|
|
206
194
|
|
|
207
|
-
|
|
195
|
+
- **closed captions:** Integration in the SDKs ([#1508](https://github.com/GetStream/stream-video-js/issues/1508)) ([bcb8589](https://github.com/GetStream/stream-video-js/commit/bcb85892c0dafcb03f9debf8d2fd361622224166))
|
|
208
196
|
|
|
209
197
|
## [1.13.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.13.0...@stream-io/video-client-1.13.1) (2024-12-20)
|
|
210
198
|
|
|
211
|
-
|
|
212
199
|
### Bug Fixes
|
|
213
200
|
|
|
214
|
-
|
|
201
|
+
- **client:** fix the initial value of deviceState in clientDetails ([#1629](https://github.com/GetStream/stream-video-js/issues/1629)) ([afefb67](https://github.com/GetStream/stream-video-js/commit/afefb67a568899e2ce500e6dad36e64b6b0e5a3d))
|
|
215
202
|
|
|
216
203
|
## [1.13.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.4...@stream-io/video-client-1.13.0) (2024-12-20)
|
|
217
204
|
|
|
218
|
-
|
|
219
205
|
### Features
|
|
220
206
|
|
|
221
|
-
|
|
207
|
+
- report low power mode and thermal info to stats ([#1583](https://github.com/GetStream/stream-video-js/issues/1583)) ([ef49cee](https://github.com/GetStream/stream-video-js/commit/ef49ceef032fc3e4bb055fbc32c2b5b18c3a24d2))
|
|
222
208
|
|
|
223
209
|
## [1.12.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.3...@stream-io/video-client-1.12.4) (2024-12-17)
|
|
224
210
|
|
|
225
|
-
|
|
226
|
-
* improve test coverage reporting ([#1624](https://github.com/GetStream/stream-video-js/issues/1624)) ([32bb870](https://github.com/GetStream/stream-video-js/commit/32bb870187f0627c32d2b5692ce3de633d743582))
|
|
227
|
-
|
|
211
|
+
- improve test coverage reporting ([#1624](https://github.com/GetStream/stream-video-js/issues/1624)) ([32bb870](https://github.com/GetStream/stream-video-js/commit/32bb870187f0627c32d2b5692ce3de633d743582))
|
|
228
212
|
|
|
229
213
|
### Bug Fixes
|
|
230
214
|
|
|
231
|
-
|
|
232
|
-
|
|
215
|
+
- adjust dynascale debouncing for upscaling and downscaling ([#1621](https://github.com/GetStream/stream-video-js/issues/1621)) [skip ci] ([7b3a721](https://github.com/GetStream/stream-video-js/commit/7b3a72192fab79d8af8d1c392a9f0135e2d25b16))
|
|
216
|
+
- prevent auto-dropping already accepted or rejected calls ([#1619](https://github.com/GetStream/stream-video-js/issues/1619)) ([113406a](https://github.com/GetStream/stream-video-js/commit/113406a9ba7fdf2e193a1933b73963e0011f28f0))
|
|
233
217
|
|
|
234
218
|
## [1.12.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.2...@stream-io/video-client-1.12.3) (2024-12-13)
|
|
235
219
|
|
|
236
|
-
|
|
237
220
|
### Bug Fixes
|
|
238
221
|
|
|
239
|
-
|
|
222
|
+
- multiple rare ringing issues in react-native ([#1611](https://github.com/GetStream/stream-video-js/issues/1611)) ([4e25264](https://github.com/GetStream/stream-video-js/commit/4e25264808eab469b7b7ab184fb19961d47bdff3))
|
|
240
223
|
|
|
241
224
|
## [1.12.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.1...@stream-io/video-client-1.12.2) (2024-12-11)
|
|
242
225
|
|
|
243
|
-
|
|
244
|
-
* drop docusaurus docs ([#1613](https://github.com/GetStream/stream-video-js/issues/1613)) ([8743c8d](https://github.com/GetStream/stream-video-js/commit/8743c8d221191759266010c6cd053480da1d71a5))
|
|
245
|
-
|
|
226
|
+
- drop docusaurus docs ([#1613](https://github.com/GetStream/stream-video-js/issues/1613)) ([8743c8d](https://github.com/GetStream/stream-video-js/commit/8743c8d221191759266010c6cd053480da1d71a5))
|
|
246
227
|
|
|
247
228
|
### Bug Fixes
|
|
248
229
|
|
|
249
|
-
|
|
230
|
+
- pre-built timer worker ([#1617](https://github.com/GetStream/stream-video-js/issues/1617)) ([94dacef](https://github.com/GetStream/stream-video-js/commit/94dacef1c2b1e8794a42657ddab29a3b584eb0b4)), closes [#1557](https://github.com/GetStream/stream-video-js/issues/1557)
|
|
250
231
|
|
|
251
232
|
## [1.12.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.12.0...@stream-io/video-client-1.12.1) (2024-12-11)
|
|
252
233
|
|
|
253
|
-
|
|
254
234
|
### Bug Fixes
|
|
255
235
|
|
|
256
|
-
|
|
236
|
+
- reenable usage of ringing filters with useCalls ([1dffaed](https://github.com/GetStream/stream-video-js/commit/1dffaed609ac147a6030a4fb103c4dd586db775e))
|
|
257
237
|
|
|
258
238
|
## [1.12.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.15...@stream-io/video-client-1.12.0) (2024-12-10)
|
|
259
239
|
|
|
260
|
-
|
|
261
240
|
### Features
|
|
262
241
|
|
|
263
|
-
|
|
242
|
+
- Aggregate stats reports - request and response objects ([#1614](https://github.com/GetStream/stream-video-js/issues/1614)) ([8a47fea](https://github.com/GetStream/stream-video-js/commit/8a47fea491232e524b1de780c12c0d00e0f02bcd))
|
|
264
243
|
|
|
265
244
|
## [1.11.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.14...@stream-io/video-client-1.11.15) (2024-12-09)
|
|
266
245
|
|
|
267
|
-
|
|
268
246
|
### Bug Fixes
|
|
269
247
|
|
|
270
|
-
|
|
248
|
+
- avoid call.get in all call.ring events ([#1615](https://github.com/GetStream/stream-video-js/issues/1615)) ([c757370](https://github.com/GetStream/stream-video-js/commit/c7573701a20b4a29cd2b6fd08a55d4eff503f77f))
|
|
271
249
|
|
|
272
250
|
## [1.11.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.13...@stream-io/video-client-1.11.14) (2024-12-04)
|
|
273
251
|
|
|
274
|
-
|
|
275
252
|
### Bug Fixes
|
|
276
253
|
|
|
277
|
-
|
|
254
|
+
- prevent device list observable from erroring ([#1608](https://github.com/GetStream/stream-video-js/issues/1608)) ([06af3e7](https://github.com/GetStream/stream-video-js/commit/06af3e7e03b63551c781512c797ac10c0486d0c7))
|
|
278
255
|
|
|
279
256
|
## [1.11.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.12...@stream-io/video-client-1.11.13) (2024-12-03)
|
|
280
257
|
|
|
281
|
-
|
|
282
258
|
### Bug Fixes
|
|
283
259
|
|
|
284
|
-
|
|
260
|
+
- use worker to prevent timer throttling ([#1557](https://github.com/GetStream/stream-video-js/issues/1557)) ([c11c3ca](https://github.com/GetStream/stream-video-js/commit/c11c3caf455787fe531c83601bad71e7a0a0e9b9))
|
|
285
261
|
|
|
286
262
|
## [1.11.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.11...@stream-io/video-client-1.11.12) (2024-12-03)
|
|
287
263
|
|
|
288
|
-
|
|
289
264
|
### Bug Fixes
|
|
290
265
|
|
|
291
|
-
|
|
266
|
+
- handle timeout on SFU WS connections ([#1600](https://github.com/GetStream/stream-video-js/issues/1600)) ([5f2db7b](https://github.com/GetStream/stream-video-js/commit/5f2db7bd5cfdf57cdc04d6a6ed752f43e5b06657))
|
|
292
267
|
|
|
293
268
|
## [1.11.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.10...@stream-io/video-client-1.11.11) (2024-11-29)
|
|
294
269
|
|
|
295
|
-
|
|
296
270
|
### Bug Fixes
|
|
297
271
|
|
|
298
|
-
|
|
272
|
+
- revert [#1604](https://github.com/GetStream/stream-video-js/issues/1604) ([#1607](https://github.com/GetStream/stream-video-js/issues/1607)) ([567e4fb](https://github.com/GetStream/stream-video-js/commit/567e4fb309509b6b0d814826856d0a15efe16271))
|
|
299
273
|
|
|
300
274
|
## [1.11.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.9...@stream-io/video-client-1.11.10) (2024-11-28)
|
|
301
275
|
|
|
302
|
-
|
|
303
276
|
### Bug Fixes
|
|
304
277
|
|
|
305
|
-
|
|
278
|
+
- ringing calls not being left when ended ([#1601](https://github.com/GetStream/stream-video-js/issues/1601)) ([1c2b9d1](https://github.com/GetStream/stream-video-js/commit/1c2b9d1a54767652acc52cae9bb3d348c9df566f))
|
|
306
279
|
|
|
307
280
|
## [1.11.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.8...@stream-io/video-client-1.11.9) (2024-11-27)
|
|
308
281
|
|
|
309
|
-
|
|
310
282
|
### Bug Fixes
|
|
311
283
|
|
|
312
|
-
|
|
284
|
+
- cover some device selection edge cases ([#1604](https://github.com/GetStream/stream-video-js/issues/1604)) ([a8fc0ea](https://github.com/GetStream/stream-video-js/commit/a8fc0eaf1ed6c79ce24f77f52351a1e90701bd02))
|
|
313
285
|
|
|
314
286
|
## [1.11.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.7...@stream-io/video-client-1.11.8) (2024-11-27)
|
|
315
287
|
|
|
316
|
-
|
|
317
288
|
### Bug Fixes
|
|
318
289
|
|
|
319
|
-
|
|
290
|
+
- **ios:** use vp8 when h264 constrainted baseline isn't available ([#1597](https://github.com/GetStream/stream-video-js/issues/1597)) ([6281216](https://github.com/GetStream/stream-video-js/commit/62812161cef5e9917c504dbc4cd9257709ea5fa1))
|
|
320
291
|
|
|
321
292
|
## [1.11.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.6...@stream-io/video-client-1.11.7) (2024-11-26)
|
|
322
293
|
|
|
323
|
-
|
|
324
294
|
### Bug Fixes
|
|
325
295
|
|
|
326
|
-
|
|
296
|
+
- remove unused code from the coordinator websocket impl ([#1563](https://github.com/GetStream/stream-video-js/issues/1563)) ([921b820](https://github.com/GetStream/stream-video-js/commit/921b820133885dac299dab343cee3fc4b08705ce))
|
|
327
297
|
|
|
328
298
|
## [1.11.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.5...@stream-io/video-client-1.11.6) (2024-11-22)
|
|
329
299
|
|
|
330
|
-
|
|
331
300
|
### Bug Fixes
|
|
332
301
|
|
|
333
|
-
|
|
302
|
+
- force single codec preference in the SDP ([#1588](https://github.com/GetStream/stream-video-js/issues/1588)) ([4afff09](https://github.com/GetStream/stream-video-js/commit/4afff09a778f8567176d22bcc22d36001dca7cd3)), closes [#1581](https://github.com/GetStream/stream-video-js/issues/1581)
|
|
334
303
|
|
|
335
304
|
## [1.11.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.4...@stream-io/video-client-1.11.5) (2024-11-22)
|
|
336
305
|
|
|
337
|
-
|
|
338
306
|
### Bug Fixes
|
|
339
307
|
|
|
340
|
-
|
|
308
|
+
- unhandled promise rejections during reconnect ([#1585](https://github.com/GetStream/stream-video-js/issues/1585)) ([920c4ea](https://github.com/GetStream/stream-video-js/commit/920c4ea3b3f622430b35ac1bade74a6206ee17e5)), closes [/github.com/GetStream/stream-video-js/pull/1585/files#diff-420f6ddab47c1be72fd9ce8c99e1fa2b9f5f0495b7c367546ee0ff634beaed81](https://github.com/GetStream//github.com/GetStream/stream-video-js/pull/1585/files/issues/diff-420f6ddab47c1be72fd9ce8c99e1fa2b9f5f0495b7c367546ee0ff634beaed81)
|
|
341
309
|
|
|
342
310
|
## [1.11.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.3...@stream-io/video-client-1.11.4) (2024-11-21)
|
|
343
311
|
|
|
344
|
-
|
|
345
312
|
### Bug Fixes
|
|
346
313
|
|
|
347
|
-
|
|
314
|
+
- experimental option to force single codec preference in the SDP ([#1581](https://github.com/GetStream/stream-video-js/issues/1581)) ([894a86e](https://github.com/GetStream/stream-video-js/commit/894a86e407dc0dd36b7463bb964c86da0c3055d1))
|
|
348
315
|
|
|
349
316
|
## [1.11.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.2...@stream-io/video-client-1.11.3) (2024-11-20)
|
|
350
317
|
|
|
351
|
-
|
|
352
318
|
### Bug Fixes
|
|
353
319
|
|
|
354
|
-
|
|
320
|
+
- respect codec overrides when computing the video layers ([#1582](https://github.com/GetStream/stream-video-js/issues/1582)) ([c22b83e](https://github.com/GetStream/stream-video-js/commit/c22b83ef710f2188e680b73790154de046a824e9))
|
|
355
321
|
|
|
356
322
|
## [1.11.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.1...@stream-io/video-client-1.11.2) (2024-11-14)
|
|
357
323
|
|
|
358
|
-
|
|
359
324
|
### Bug Fixes
|
|
360
325
|
|
|
361
|
-
|
|
326
|
+
- fully reset token manager on user disconnect ([#1578](https://github.com/GetStream/stream-video-js/issues/1578)) ([6751abc](https://github.com/GetStream/stream-video-js/commit/6751abc0507085bd7c9f3f803f4c5929e0598bea)), closes [#1573](https://github.com/GetStream/stream-video-js/issues/1573)
|
|
362
327
|
|
|
363
328
|
## [1.11.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.11.0...@stream-io/video-client-1.11.1) (2024-11-14)
|
|
364
329
|
|
|
365
|
-
|
|
366
330
|
### Bug Fixes
|
|
367
331
|
|
|
368
|
-
|
|
332
|
+
- reject was not called on timeout, decline and cancel scenarios ([#1576](https://github.com/GetStream/stream-video-js/issues/1576)) ([8be76a4](https://github.com/GetStream/stream-video-js/commit/8be76a447729aeba7f5c68f8a9bb85b4738cb76d))
|
|
369
333
|
|
|
370
334
|
## [1.11.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.5...@stream-io/video-client-1.11.0) (2024-11-13)
|
|
371
335
|
|
|
372
|
-
|
|
373
336
|
### Features
|
|
374
337
|
|
|
375
|
-
|
|
338
|
+
- Connection timing ([#1574](https://github.com/GetStream/stream-video-js/issues/1574)) ([ce1dc9a](https://github.com/GetStream/stream-video-js/commit/ce1dc9a01fc5b0e60e3dac6653c27e99fd4b3ecb))
|
|
376
339
|
|
|
377
340
|
## [1.10.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.4...@stream-io/video-client-1.10.5) (2024-11-07)
|
|
378
341
|
|
|
379
|
-
|
|
380
342
|
### Bug Fixes
|
|
381
343
|
|
|
382
|
-
|
|
344
|
+
- ignore maxSimulcastLayers override for SVC codecs ([#1564](https://github.com/GetStream/stream-video-js/issues/1564)) ([48f8abe](https://github.com/GetStream/stream-video-js/commit/48f8abe5fd5b48c367a04696febd582573def828))
|
|
383
345
|
|
|
384
346
|
## [1.10.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.3...@stream-io/video-client-1.10.4) (2024-11-07)
|
|
385
347
|
|
|
386
|
-
|
|
387
348
|
### Bug Fixes
|
|
388
349
|
|
|
389
|
-
|
|
350
|
+
- max simulcast layers preference ([#1560](https://github.com/GetStream/stream-video-js/issues/1560)) ([2b0bf28](https://github.com/GetStream/stream-video-js/commit/2b0bf2824dce41c2709e361e0521cf85e1b2fd16))
|
|
390
351
|
|
|
391
352
|
## [1.10.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.2...@stream-io/video-client-1.10.3) (2024-11-05)
|
|
392
353
|
|
|
393
|
-
|
|
394
354
|
### Bug Fixes
|
|
395
355
|
|
|
396
|
-
|
|
356
|
+
- camera flip did not work in react-native ([#1554](https://github.com/GetStream/stream-video-js/issues/1554)) ([423890c](https://github.com/GetStream/stream-video-js/commit/423890cb2d1925366d8a63c29f93c4c92c8104ad)), closes [#1521](https://github.com/GetStream/stream-video-js/issues/1521)
|
|
397
357
|
|
|
398
358
|
## [1.10.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.1...@stream-io/video-client-1.10.2) (2024-11-01)
|
|
399
359
|
|
|
400
|
-
|
|
401
360
|
### Bug Fixes
|
|
402
361
|
|
|
403
|
-
|
|
362
|
+
- camera not enabled on foreground notifications ([#1546](https://github.com/GetStream/stream-video-js/issues/1546)) ([67c920a](https://github.com/GetStream/stream-video-js/commit/67c920ac4bca35a414b88f6c9829b08396a6260b))
|
|
404
363
|
|
|
405
364
|
## [1.10.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.10.0...@stream-io/video-client-1.10.1) (2024-10-30)
|
|
406
365
|
|
|
407
|
-
|
|
408
366
|
### Bug Fixes
|
|
409
367
|
|
|
410
|
-
|
|
368
|
+
- various device selector issues ([#1541](https://github.com/GetStream/stream-video-js/issues/1541)) ([f23618b](https://github.com/GetStream/stream-video-js/commit/f23618bda447eeb2d66f908bdb38b24db051f87c))
|
|
411
369
|
|
|
412
370
|
## [1.10.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.9.3...@stream-io/video-client-1.10.0) (2024-10-30)
|
|
413
371
|
|
|
414
|
-
|
|
415
372
|
### Features
|
|
416
373
|
|
|
417
|
-
|
|
374
|
+
- report input devices in call stats ([#1533](https://github.com/GetStream/stream-video-js/issues/1533)) ([f34fe0a](https://github.com/GetStream/stream-video-js/commit/f34fe0a0444903099565ae55a9639e39fc19b76c))
|
|
418
375
|
|
|
419
376
|
## [1.9.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.9.2...@stream-io/video-client-1.9.3) (2024-10-28)
|
|
420
377
|
|
|
421
|
-
|
|
422
378
|
### Bug Fixes
|
|
423
379
|
|
|
424
|
-
|
|
380
|
+
- make device selection by device id exact ([#1538](https://github.com/GetStream/stream-video-js/issues/1538)) ([6274cac](https://github.com/GetStream/stream-video-js/commit/6274cac2ecf155aa6ce0c6d764229e0e9cd39a6a))
|
|
425
381
|
|
|
426
382
|
## [1.9.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.9.1...@stream-io/video-client-1.9.2) (2024-10-21)
|
|
427
383
|
|
|
428
|
-
|
|
429
384
|
### Bug Fixes
|
|
430
385
|
|
|
431
|
-
|
|
386
|
+
- **client:** invoke call.reject only when reject param specified ([#1530](https://github.com/GetStream/stream-video-js/issues/1530)) ([eac4e4e](https://github.com/GetStream/stream-video-js/commit/eac4e4ebd2575f5269f65db7173107d5cafab9bf))
|
|
432
387
|
|
|
433
388
|
## [1.9.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.9.0...@stream-io/video-client-1.9.1) (2024-10-18)
|
|
434
389
|
|
|
435
|
-
|
|
436
390
|
### Bug Fixes
|
|
437
391
|
|
|
438
|
-
|
|
392
|
+
- **svc:** announce downscaled layers in setPublisher ([#1526](https://github.com/GetStream/stream-video-js/issues/1526)) ([96cadd0](https://github.com/GetStream/stream-video-js/commit/96cadd05e995392eac4ec300828d07b287d691a0))
|
|
439
393
|
|
|
440
394
|
## [1.9.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.8.4...@stream-io/video-client-1.9.0) (2024-10-16)
|
|
441
395
|
|
|
442
|
-
|
|
443
396
|
### Features
|
|
444
397
|
|
|
445
|
-
|
|
398
|
+
- **svc-codec:** VP9 and AV1 support ([#1434](https://github.com/GetStream/stream-video-js/issues/1434)) ([c9c8530](https://github.com/GetStream/stream-video-js/commit/c9c8530d48c9206dc3803e6aa6cc1859fd433920))
|
|
446
399
|
|
|
447
400
|
## [1.8.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.8.3...@stream-io/video-client-1.8.4) (2024-10-16)
|
|
448
401
|
|
|
449
|
-
|
|
450
402
|
### Bug Fixes
|
|
451
403
|
|
|
452
|
-
|
|
404
|
+
- ignore camera direction for desktop devices ([#1521](https://github.com/GetStream/stream-video-js/issues/1521)) ([562b5cc](https://github.com/GetStream/stream-video-js/commit/562b5cca77264330d08dff5305eccc489970076a))
|
|
453
405
|
|
|
454
406
|
## [1.8.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.8.2...@stream-io/video-client-1.8.3) (2024-10-10)
|
|
455
407
|
|
|
456
|
-
|
|
457
408
|
### Bug Fixes
|
|
458
409
|
|
|
459
|
-
|
|
410
|
+
- do not release track if track was not removed from stream ([#1517](https://github.com/GetStream/stream-video-js/issues/1517)) ([5bfc528](https://github.com/GetStream/stream-video-js/commit/5bfc52850c36ffe0de37e47066538a8a14dc9e01))
|
|
460
411
|
|
|
461
412
|
## [1.8.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.8.1...@stream-io/video-client-1.8.2) (2024-10-10)
|
|
462
413
|
|
|
463
|
-
|
|
464
414
|
### Bug Fixes
|
|
465
415
|
|
|
466
|
-
|
|
416
|
+
- add track release for react-native whenever track stop is called ([#1516](https://github.com/GetStream/stream-video-js/issues/1516)) ([5074510](https://github.com/GetStream/stream-video-js/commit/50745101d28d0339592c22ca02b076040ad3bdeb))
|
|
467
417
|
|
|
468
418
|
## [1.8.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.8.0...@stream-io/video-client-1.8.1) (2024-10-10)
|
|
469
419
|
|
|
470
|
-
|
|
471
420
|
### Bug Fixes
|
|
472
421
|
|
|
473
|
-
|
|
422
|
+
- mic not fully released in some cases ([#1515](https://github.com/GetStream/stream-video-js/issues/1515)) ([b7bf90b](https://github.com/GetStream/stream-video-js/commit/b7bf90b9b1a83fb80d01a82ebee8754343963ae5))
|
|
474
423
|
|
|
475
424
|
## [1.8.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.7.4...@stream-io/video-client-1.8.0) (2024-10-02)
|
|
476
425
|
|
|
477
|
-
|
|
478
426
|
### Features
|
|
479
427
|
|
|
480
|
-
|
|
428
|
+
- manual video quality selection ([#1486](https://github.com/GetStream/stream-video-js/issues/1486)) ([3a754af](https://github.com/GetStream/stream-video-js/commit/3a754afa1bd13d038b1023520ec8a5296ad2669e))
|
|
481
429
|
|
|
482
430
|
## [1.7.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.7.3...@stream-io/video-client-1.7.4) (2024-10-02)
|
|
483
431
|
|
|
484
|
-
|
|
485
432
|
### Bug Fixes
|
|
486
433
|
|
|
487
|
-
|
|
434
|
+
- retryable location hint ([#1505](https://github.com/GetStream/stream-video-js/issues/1505)) ([087417f](https://github.com/GetStream/stream-video-js/commit/087417f926b3d43a5bcb814ac9bb5951c1e63479))
|
|
488
435
|
|
|
489
436
|
## [1.7.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.7.2...@stream-io/video-client-1.7.3) (2024-09-24)
|
|
490
437
|
|
|
491
|
-
|
|
492
438
|
### Bug Fixes
|
|
493
439
|
|
|
494
|
-
|
|
440
|
+
- do not always error out api calls when web socket initially failed ([#1495](https://github.com/GetStream/stream-video-js/issues/1495)) ([7cdb62e](https://github.com/GetStream/stream-video-js/commit/7cdb62e75cad56098ee81eabbcc63382f93fd218))
|
|
495
441
|
|
|
496
442
|
## [1.7.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.7.1...@stream-io/video-client-1.7.2) (2024-09-20)
|
|
497
443
|
|
|
498
|
-
|
|
499
444
|
### Bug Fixes
|
|
500
445
|
|
|
501
|
-
|
|
446
|
+
- overridable bitrate and bitrate downscale factor ([#1493](https://github.com/GetStream/stream-video-js/issues/1493)) ([cce5d8e](https://github.com/GetStream/stream-video-js/commit/cce5d8e641a9182a1779952e4e62aa16ec21ab92))
|
|
502
447
|
|
|
503
448
|
## [1.7.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.7.0...@stream-io/video-client-1.7.1) (2024-09-20)
|
|
504
449
|
|
|
505
|
-
|
|
506
450
|
### Bug Fixes
|
|
507
451
|
|
|
508
|
-
|
|
452
|
+
- don't attempt to recover broken WebSockets when there isn't a network connection ([#1490](https://github.com/GetStream/stream-video-js/issues/1490)) ([d576f48](https://github.com/GetStream/stream-video-js/commit/d576f48c7f819d48008359a3c30fe5d1a3372145))
|
|
509
453
|
|
|
510
454
|
## [1.7.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.5...@stream-io/video-client-1.7.0) (2024-09-19)
|
|
511
455
|
|
|
512
|
-
|
|
513
456
|
### Features
|
|
514
457
|
|
|
515
|
-
|
|
458
|
+
- React SDK cold-start optimizations ([#1488](https://github.com/GetStream/stream-video-js/issues/1488)) ([972e579](https://github.com/GetStream/stream-video-js/commit/972e5792b5a131a212b1031ade76dcb383897a46))
|
|
516
459
|
|
|
517
460
|
## [1.6.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.4...@stream-io/video-client-1.6.5) (2024-09-19)
|
|
518
461
|
|
|
519
|
-
|
|
520
462
|
### Bug Fixes
|
|
521
463
|
|
|
522
|
-
|
|
464
|
+
- race condition in `applySettingsToStream` ([#1489](https://github.com/GetStream/stream-video-js/issues/1489)) ([bf2ad90](https://github.com/GetStream/stream-video-js/commit/bf2ad90224d88592d4ea27ea8d0683efe98771f7))
|
|
523
465
|
|
|
524
466
|
## [1.6.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.3...@stream-io/video-client-1.6.4) (2024-09-13)
|
|
525
467
|
|
|
526
|
-
|
|
527
468
|
### Bug Fixes
|
|
528
469
|
|
|
529
|
-
|
|
470
|
+
- allow video target bitrate override ([#1487](https://github.com/GetStream/stream-video-js/issues/1487)) ([bfe34a3](https://github.com/GetStream/stream-video-js/commit/bfe34a3609182da5bbb03331978d86569cada098))
|
|
530
471
|
|
|
531
472
|
## [1.6.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.2...@stream-io/video-client-1.6.3) (2024-09-11)
|
|
532
473
|
|
|
533
|
-
|
|
534
474
|
### Bug Fixes
|
|
535
475
|
|
|
536
|
-
|
|
476
|
+
- client instance removal used a wrong key ([#1484](https://github.com/GetStream/stream-video-js/issues/1484)) ([edff5d7](https://github.com/GetStream/stream-video-js/commit/edff5d7ca0cc241a3929da3b752073883f29da32))
|
|
537
477
|
|
|
538
478
|
## [1.6.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.1...@stream-io/video-client-1.6.2) (2024-09-09)
|
|
539
479
|
|
|
540
|
-
|
|
541
480
|
### Bug Fixes
|
|
542
481
|
|
|
543
|
-
|
|
482
|
+
- prioritize h264 baseline profile ([#1482](https://github.com/GetStream/stream-video-js/issues/1482)) ([3ea3c5e](https://github.com/GetStream/stream-video-js/commit/3ea3c5ecf57b50d3f909d59a96811f636b07d8aa))
|
|
544
483
|
|
|
545
484
|
## [1.6.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.6.0...@stream-io/video-client-1.6.1) (2024-09-05)
|
|
546
485
|
|
|
547
|
-
|
|
548
486
|
### Bug Fixes
|
|
549
487
|
|
|
550
|
-
|
|
488
|
+
- update state.endedAt after the SFU terminates the call ([#1477](https://github.com/GetStream/stream-video-js/issues/1477)) ([135b11f](https://github.com/GetStream/stream-video-js/commit/135b11f2e29f486f2f43b9ac2a84848d0fd0b5b4))
|
|
551
489
|
|
|
552
490
|
## [1.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.5.2...@stream-io/video-client-1.6.0) (2024-09-03)
|
|
553
491
|
|
|
554
|
-
|
|
555
|
-
* update node-sdk, add this to pronto for token generation ([#1472](https://github.com/GetStream/stream-video-js/issues/1472)) ([c6cbc1f](https://github.com/GetStream/stream-video-js/commit/c6cbc1f8d003ea1c39796ccbc87d7553604f819b))
|
|
556
|
-
|
|
492
|
+
- update node-sdk, add this to pronto for token generation ([#1472](https://github.com/GetStream/stream-video-js/issues/1472)) ([c6cbc1f](https://github.com/GetStream/stream-video-js/commit/c6cbc1f8d003ea1c39796ccbc87d7553604f819b))
|
|
557
493
|
|
|
558
494
|
### Features
|
|
559
495
|
|
|
560
|
-
|
|
496
|
+
- Reconnects v2 ([#1439](https://github.com/GetStream/stream-video-js/issues/1439)) ([e90aa52](https://github.com/GetStream/stream-video-js/commit/e90aa52780f9e0ca5852a294a152282000f66675))
|
|
561
497
|
|
|
562
498
|
### [1.5.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.5.1...@stream-io/video-client-1.5.2) (2024-08-23)
|
|
563
499
|
|