diff --git a/CHANGELOG.md b/CHANGELOG.md index 184d1f397..8dafaedcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.2.1 + +### New Features + +- Devices that are selected in the "Audio and Video Settings" modal will not be reset when the page is reloaded. Device IDs are stored in local storage so that the same input and output devices will be used for each session. ([#333](https://github.com/twilio/twilio-video-app-react/pull/333)) + +### Bug Fixes + +- A pinned participant will no longer be pinned after they disconnect from a room. ([#339](https://github.com/twilio/twilio-video-app-react/pull/339)) +- The throttle interval in the `VideoToggleButton` component has been incresased to avoid duplicate track publication when the button is pressed rapidly. ([#336](https://github.com/twilio/twilio-video-app-react/pull/336)) +- Cypress tests have been updated to improve reliability. ([#332](https://github.com/twilio/twilio-video-app-react/pull/332)) + +### Dependency Upgrades + +- `react-scripts` has been upgraded from 3.4.3 to 3.4.4. ([#337](https://github.com/twilio/twilio-video-app-react/pull/337)) +- `firebase` has been upgraded from 7.8.0 to 7.24.0 ([#335](https://github.com/twilio/twilio-video-app-react/pull/335)) +- `twilio-video` has been upgraded from 2.8.0-beta.1 to 2.8.0-beta.2. This is to include a bug fix where an iOS 14 Safari Participant is not heard by others in a Room after handling an incoming phone call. ([#344](https://github.com/twilio/twilio-video-app-react/pull/344)) + ## 0.2.0 This release contains support for the Programmable Video Go room type and an overhauled UI/UX experience. diff --git a/package-lock.json b/package-lock.json index 5a2ed9154..06650ae75 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "twilio-video-app-react", - "version": "0.2.0", + "version": "0.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -4461,6 +4461,15 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==" }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "bl": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz", @@ -7890,6 +7899,12 @@ "schema-utils": "^2.5.0" } }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, "filesize": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", @@ -10497,6 +10512,7 @@ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "optional": true, "requires": { + "bindings": "^1.5.0", "nan": "^2.12.1" } }, @@ -18391,9 +18407,9 @@ } }, "twilio-video": { - "version": "2.8.0-beta.1", - "resolved": "https://registry.npmjs.org/twilio-video/-/twilio-video-2.8.0-beta.1.tgz", - "integrity": "sha512-xXaMrx9T4lTQyCjQQ6CxldeN3wvtTjeMQzhHeHzsg7GNAKkd4pcXxJ2ZzJJkQeMphm4uDfmLRk+xouxxl+g6jA==", + "version": "2.8.0-beta.2", + "resolved": "https://registry.npmjs.org/twilio-video/-/twilio-video-2.8.0-beta.2.tgz", + "integrity": "sha512-logLHxL6pdh5sjTJDx003yhWW+Z9sTIerhheEOARPwePNviyP9xo6HZ2MXaoryJ5Hv8/c3OJ9rVfDlbuIcmFUg==", "requires": { "@twilio/webrtc": "4.3.2", "backoff": "^2.5.0", @@ -18989,6 +19005,7 @@ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "optional": true, "requires": { + "bindings": "^1.5.0", "nan": "^2.12.1" } }, @@ -19467,6 +19484,7 @@ "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "optional": true, "requires": { + "bindings": "^1.5.0", "nan": "^2.12.1" } }, diff --git a/package.json b/package.json index 4d51830dd..a4a07eb5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "twilio-video-app-react", - "version": "0.2.0", + "version": "0.2.1", "private": true, "license": "Apache-2.0", "dependencies": { @@ -32,7 +32,7 @@ "react-scripts": "^3.4.4", "strip-color": "^0.1.0", "twilio": "^3.39.3", - "twilio-video": "2.8.0-beta.1", + "twilio-video": "2.8.0-beta.2", "typescript": "^3.8.3" }, "devDependencies": {