twilio-video 2.24.0 → 2.24.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 +12 -0
- package/README.md +1 -1
- package/dist/twilio-video.js +198 -164
- package/dist/twilio-video.min.js +21 -21
- package/es5/media/track/localvideotrack.js +1 -1
- package/es5/media/track/localvideotrack.js.map +1 -1
- package/es5/noisecancellationadapter.js +1 -1
- package/es5/noisecancellationadapter.js.map +1 -1
- package/es5/vendor/dynamicimport.js +44 -0
- package/es5/vendor/dynamicimport.js.map +1 -0
- package/lib/media/track/localvideotrack.js +1 -1
- package/lib/noisecancellationadapter.ts +1 -1
- package/lib/vendor/dynamicimport.js +44 -0
- package/package.json +2 -2
- package/tsconfig.json +0 -3
- package/tsdef/LocalTrackOptions.d.ts +1 -1
- package/es5/dynamicImport.js +0 -9
- package/lib/dynamicImport.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@ 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.24.1 (September 6, 2022)
|
|
6
|
+
==========================
|
|
7
|
+
|
|
8
|
+
Bug Fixes
|
|
9
|
+
---------
|
|
10
|
+
|
|
11
|
+
- Fixed a bug where sometimes a runtime error was raised on iOS devices as shown below. (VIDEO-11263)
|
|
12
|
+
```
|
|
13
|
+
Unhandled Runtime Error: TypeError: null is not an object (evaluating 'el.paused')
|
|
14
|
+
```
|
|
15
|
+
- The LocalTrackOptions type definition now contains `logLevel` as an optional property. (VIDEO-10659)
|
|
16
|
+
- Fixed an issue where the `import` keyword was causing problems in webpack and typescript projects. (VIDEO-11220)
|
|
5
17
|
|
|
6
18
|
2.24.0 (August 22, 2022)
|
|
7
19
|
========================
|
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.24.
|
|
77
|
+
<script src="//sdk.twilio.com/js/video/releases/2.24.1/twilio-video.min.js"></script>
|
|
78
78
|
|
|
79
79
|
```
|
|
80
80
|
|