|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 1.0.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 and Android video apps must be upgraded in order to work with this new format. The React app does not need to be upgraded. |
| 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." |
| 54 | + } |
49 | 55 | } |
50 | 56 | ``` |
51 | 57 |
|
|
0 commit comments