Skip to content

Commit 71ebf84

Browse files
authored
update changelog for release (#46)
1 parent d1a7564 commit 71ebf84

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 1.1.0 (March 30, 2022)
2+
3+
This release contains a new token server, and support for mobile web!
4+
5+
### Token Server
6+
7+
A new server has been added that can be used to run the app locally (by running `npm start` in the terminal), or on a production server of choice (Heroku, AWS, etc.). Please see the [README](README.md) for instructions on how to set up the token server. **Note**, this application can still be deployed to Twilio Serverless by running `npm run serverless:deploy`.
8+
9+
### Mobile Support
10+
11+
The Video Diagnostics App can now be used on mobile devices. Users can access this application via any mobile web browser that is [supported](https://www.twilio.com/docs/video/javascript#supported-browsers) by Twilio Programmable Video.
12+
113
# 1.0.0 (September 1, 2021)
214

315
This is the beta release of the Twilio Video Diagnostics App. This application demonstrates a diagnostics tool for testing a participant's ability to have a quality video call with the Twilio platform. It can be used as part of onboarding to ensure a successful first video call or for diagnosing issues that relate to the device, software, or network conditions of the end-user. It is built with [Twilio's Programmable Video JS SDK](https://sdk.twilio.com/js/video/releases/2.16.0/docs/) and [Twilio's RTC Diagnostics SDK](https://twilio.github.io/rtc-diagnostics/globals.html).

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twilio-video-diagnostics-react-app",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"private": true,
55
"dependencies": {
66
"@material-ui/core": "^4.11.4",

server/createExpressHandler.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import { Request, Response } from 'express';
33
import { ServerlessContext, ServerlessFunction } from './types';
44
import Twilio from 'twilio';
55

6-
const { ACCOUNT_SID, TWILIO_API_KEY_SID, TWILIO_API_KEY_SECRET, VIDEO_IDENTITY } = process.env;
6+
const {
7+
ACCOUNT_SID,
8+
TWILIO_API_KEY_SID,
9+
TWILIO_API_KEY_SECRET,
10+
VIDEO_IDENTITY = 'RTC_Video_Diagnostics_Test_Identity',
11+
} = process.env;
712

813
const twilioClient = Twilio(TWILIO_API_KEY_SID, TWILIO_API_KEY_SECRET, {
914
accountSid: ACCOUNT_SID,

0 commit comments

Comments
 (0)