You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-11Lines changed: 17 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,51 +1,57 @@
1
1
# Changelog
2
2
3
+
## 0.2.0
4
+
5
+
### Breaking Change
6
+
7
+
- This version adds extra random digits to the URL used by the Twilio Video Apps. The format of the URL has changed from `https://video-app-xxxx-dev.twil.io` to `https://video-app-xxxx-yyyy-dev.twil.io`. The [iOS Video App](https://github.com/twilio/twilio-video-app-ios) and [Android Video App](https://github.com/twilio/twilio-video-app-android) must be upgraded in order to work with this new format. The [React Video App](https://github.com/twilio/twilio-video-app-react) does not need to be upgraded. This change is being made to increase the number of available domains (from ten thousand to ten million) which will greatly reduce the number of 409 (conflict) errors experienced by users.
8
+
3
9
## 0.1.6
4
10
5
11
### Maintenance
6
12
7
-
* Move @oclif/plugin-help from devDependencies to dependencies to resolve NPM warning.
13
+
- Move @oclif/plugin-help from devDependencies to dependencies to resolve NPM warning.
8
14
9
15
## 0.1.5
10
16
11
17
### Maintenance
12
18
13
-
* Updated `twilio rtc:apps:video:deploy` command so that it checks for the existence of a necessary Twilio API Key before deploying the video token server.
19
+
- Updated `twilio rtc:apps:video:deploy` command so that it checks for the existence of a necessary Twilio API Key before deploying the video token server.
14
20
15
21
## 0.1.4
16
22
17
23
### Maintenance
18
24
19
-
* Updated `twilio rtc:apps:video:delete` command so that it doesn't check for serverless environments before deleting the app. This allows the command to delete the app even when no environments exist.
25
+
- Updated `twilio rtc:apps:video:delete` command so that it doesn't check for serverless environments before deleting the app. This allows the command to delete the app even when no environments exist.
20
26
21
27
## 0.1.3
22
28
23
29
### Features
24
30
25
-
* Updated the `twilio rtc:apps:video:deploy --override` flag behavior to update an existing Twilio Serverless instance rather than deleting and redeploying an instance. This behavior allows users to update an existing deployment's passcode without changing their application's URL. This betterment was proposed in #14.
31
+
- Updated the `twilio rtc:apps:video:deploy --override` flag behavior to update an existing Twilio Serverless instance rather than deleting and redeploying an instance. This behavior allows users to update an existing deployment's passcode without changing their application's URL. This betterment was proposed in #14.
26
32
27
33
### Maintenance
28
34
29
-
* Use the Twilio Account SID from a Twilio Function context rather than copying from a Twilio Client instance.
35
+
- Use the Twilio Account SID from a Twilio Function context rather than copying from a Twilio Client instance.
30
36
31
37
## 0.1.2
32
38
33
39
### Maintenance
34
40
35
-
* Addressed security alerts
41
+
- Addressed security alerts
36
42
37
43
## 0.1.1
38
44
39
45
### Maintenance
40
46
41
-
* Updated the token server to return the following error response with status code `400` when the request body is missing the `user_identity` field.
47
+
- Updated the token server to return the following error response with status code `400` when the request body is missing the `user_identity` field.
42
48
43
49
```json
44
50
{
45
-
"error": {
46
-
"message": "missing user_identity",
47
-
"explanation": "The user_identity parameter is missing."
48
-
}
51
+
"error": {
52
+
"message": "missing user_identity",
53
+
"explanation": "The user_identity parameter is missing."
Copy file name to clipboardExpand all lines: README.md
+44-44Lines changed: 44 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@
5
5
6
6
This plugin adds functionality to the [Twilio CLI](https://github.com/twilio/twilio-cli) which supports developing and deploying real-time communication apps.
7
7
8
-
*[Getting Started](#getting-started)
9
-
*[Supported Apps](#supported-apps)
10
-
*[Commands](#commands)
8
+
-[Getting Started](#getting-started)
9
+
-[Supported Apps](#supported-apps)
10
+
-[Commands](#commands)
11
11
12
12
## Getting Started
13
13
@@ -52,17 +52,17 @@ This plugin currently supports the following applications:
52
52
53
53
A mobile and web collaboration application built with Twilio Programmable Video. Visit the projects below for instructions on how to use this plugin to build and deploy the Twilio Video app.
The following section documents the application [token server](/src/video-token-server.js) used to provide [Programable Video access tokens](https://www.twilio.com/docs/video/tutorials/user-identity-access-tokens) to supported Twilio Video applications. The token server is deployed as a [Twilio Function](https://www.twilio.com/docs/runtime/functions).
62
62
63
-
| Method | URL |
64
-
| --- | --- |
65
-
| POST |[`/token`](#token)|
63
+
| Method | URL |
64
+
| ------|------------------ |
65
+
| POST |[`/token`](#token)|
66
66
67
67
##### Authentication
68
68
@@ -74,7 +74,7 @@ Each request is verified using a passcode generated at deploy time. Passcodes re
74
74
75
75
```
76
76
{
77
-
"passcode": "1234564321",
77
+
"passcode": "12345612341234",
78
78
"user_identity": "User",
79
79
"room_name": "Demo",
80
80
}
@@ -90,11 +90,11 @@ POST /token
90
90
91
91
###### Parameters
92
92
93
-
| Name | Type | Description |
94
-
| --- | --- | --- |
95
-
|`passcode`|`string`|**Required**. The application passcode. |
96
-
|`user_identity`|`string`|**Required**. The user's identity. |
97
-
|`room_name`|`string`| A room name that will be used to create a token scoped to connecting to only one room.|
0 commit comments