@stream-io/video-client 1.11.6 → 1.11.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/index.browser.es.js +98 -575
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +83 -560
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +98 -575
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/coordinator/connection/client.d.ts +0 -18
  9. package/dist/src/coordinator/connection/connection.d.ts +4 -12
  10. package/dist/src/coordinator/connection/signing.d.ts +1 -7
  11. package/dist/src/coordinator/connection/token_manager.d.ts +0 -2
  12. package/dist/src/coordinator/connection/types.d.ts +5 -6
  13. package/dist/src/coordinator/connection/utils.d.ts +6 -8
  14. package/dist/src/rtc/codecs.d.ts +1 -1
  15. package/package.json +6 -10
  16. package/src/__tests__/Call.test.ts +3 -2
  17. package/src/coordinator/connection/client.ts +12 -149
  18. package/src/coordinator/connection/connection.ts +40 -109
  19. package/src/coordinator/connection/signing.ts +31 -17
  20. package/src/coordinator/connection/token_manager.ts +3 -9
  21. package/src/coordinator/connection/types.ts +5 -9
  22. package/src/coordinator/connection/utils.ts +18 -50
  23. package/src/devices/__tests__/InputMediaDeviceManagerState.test.ts +13 -8
  24. package/src/devices/__tests__/mocks.ts +0 -4
  25. package/src/helpers/__tests__/sdp-munging.test.ts +92 -0
  26. package/src/helpers/sdp-munging.ts +10 -6
  27. package/src/rtc/Publisher.ts +10 -3
  28. package/src/rtc/__tests__/codecs.test.ts +6 -6
  29. package/src/rtc/codecs.ts +20 -9
  30. package/dist/src/coordinator/connection/base64.d.ts +0 -2
  31. package/dist/src/coordinator/connection/connection_fallback.d.ts +0 -39
  32. package/dist/src/coordinator/connection/errors.d.ts +0 -16
  33. package/dist/src/coordinator/connection/insights.d.ts +0 -57
  34. package/src/coordinator/connection/base64.ts +0 -80
  35. package/src/coordinator/connection/connection_fallback.ts +0 -242
  36. package/src/coordinator/connection/errors.ts +0 -80
  37. package/src/coordinator/connection/insights.ts +0 -88
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [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)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **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))
11
+
12
+ ## [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)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * 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))
18
+
5
19
  ## [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)
6
20
 
7
21