twilio-video 2.21.1 → 2.21.2
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/.eslintrc.json +2 -1
- package/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/dist/twilio-video.js +707 -3192
- package/dist/twilio-video.min.js +20 -22
- package/es5/media/track/es5/localaudiotrack.js +1 -1
- package/es5/media/track/es5/localaudiotrack.js.map +1 -1
- package/es5/media/track/es5/localdatatrack.js +1 -1
- package/es5/media/track/es5/localdatatrack.js.map +1 -1
- package/es5/media/track/es5/localvideotrack.js +1 -1
- package/es5/media/track/es5/localvideotrack.js.map +1 -1
- package/es5/media/track/videotrack.js +1 -0
- package/es5/media/track/videotrack.js.map +1 -1
- package/es5/signaling/v2/peerconnection.js +6 -5
- package/es5/signaling/v2/peerconnection.js.map +1 -1
- package/es5/signaling/v2/twilioconnectiontransport.js +3 -4
- package/es5/signaling/v2/twilioconnectiontransport.js.map +1 -1
- package/es5/twilioconnection.js +1 -1
- package/es5/twilioconnection.js.map +1 -1
- package/es5/util/backoff.js +83 -0
- package/es5/util/backoff.js.map +1 -0
- package/es5/util/browserdetection.js +26 -0
- package/es5/util/browserdetection.js.map +1 -1
- package/es5/util/constants.js +16 -5
- package/es5/util/constants.js.map +1 -1
- package/es5/util/insightspublisher/index.js +22 -2
- package/es5/util/insightspublisher/index.js.map +1 -1
- package/es5/vendor/inherits.js +34 -0
- package/es5/vendor/inherits.js.map +1 -0
- package/es5/webrtc/rtcpeerconnection/chrome.js +1 -1
- package/es5/webrtc/rtcpeerconnection/chrome.js.map +1 -1
- package/es5/webrtc/rtcpeerconnection/firefox.js +1 -1
- package/es5/webrtc/rtcpeerconnection/firefox.js.map +1 -1
- package/es5/webrtc/rtcpeerconnection/safari.js +1 -1
- package/es5/webrtc/rtcpeerconnection/safari.js.map +1 -1
- package/lib/media/track/es5/localaudiotrack.js +1 -2
- package/lib/media/track/es5/localdatatrack.js +1 -1
- package/lib/media/track/es5/localvideotrack.js +1 -1
- package/lib/media/track/videotrack.js +1 -0
- package/lib/signaling/v2/peerconnection.js +6 -6
- package/lib/signaling/v2/twilioconnectiontransport.js +3 -5
- package/lib/twilioconnection.js +1 -1
- package/lib/util/backoff.js +85 -0
- package/lib/util/browserdetection.js +29 -0
- package/lib/util/constants.js +17 -5
- package/lib/util/insightspublisher/index.js +11 -2
- package/lib/vendor/inherits.js +31 -0
- package/lib/webrtc/rtcpeerconnection/chrome.js +1 -1
- package/lib/webrtc/rtcpeerconnection/firefox.js +1 -1
- package/lib/webrtc/rtcpeerconnection/safari.js +1 -1
- package/package.json +9 -10
package/.eslintrc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@ The Twilio Programmable Video SDKs use [Semantic Versioning](http://www.semver.o
|
|
|
2
2
|
|
|
3
3
|
**Version 1.x reached End of Life on September 8th, 2021.** See the changelog entry [here](https://www.twilio.com/changelog/end-of-life-complete-for-unsupported-versions-of-the-programmable-video-sdk). Support for the 1.x version ended on December 4th, 2020.
|
|
4
4
|
|
|
5
|
+
2.21.2 (June 1, 2022)
|
|
6
|
+
=====================
|
|
7
|
+
|
|
8
|
+
Bug Fixes
|
|
9
|
+
---------
|
|
10
|
+
|
|
11
|
+
- Fixed an issue where some extraneous errors were logged to console when a video track was stopped. (VIDEO-9511)
|
|
12
|
+
- Fixed an issue where the `dimensionsChanged` event was not firing when the track dimensions first became available. (VIDEO-3576)
|
|
13
|
+
- Removed references to node dependencies that causes build errors on Angular and Vue. (VIDEO-9282)
|
|
14
|
+
- Fixed an issue where incorrect device was detected when using iPad in Desktop Website mode. (VIDEO-8282)
|
|
15
|
+
|
|
5
16
|
2.21.1 (March 22, 2022)
|
|
6
17
|
=======================
|
|
7
18
|
|
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ Releases of twilio-video.js are hosted on a CDN, and you can include these
|
|
|
74
74
|
directly in your web app using a <script> tag.
|
|
75
75
|
|
|
76
76
|
```html
|
|
77
|
-
<script src="//sdk.twilio.com/js/video/releases/2.21.
|
|
77
|
+
<script src="//sdk.twilio.com/js/video/releases/2.21.2/twilio-video.min.js"></script>
|
|
78
78
|
|
|
79
79
|
```
|
|
80
80
|
|