Skip to content

Commit 600dd6b

Browse files
committed
chore(release): publish %s
- [email protected] - @twilio-labs/[email protected] - @twilio-labs/[email protected] - @twilio/[email protected] - @twilio-labs/[email protected] - [email protected]
1 parent 5ca27b6 commit 600dd6b

File tree

14 files changed

+90
-29
lines changed

14 files changed

+90
-29
lines changed

Diff for: packages/create-twilio-function/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.2.0) (2021-07-19)
7+
8+
9+
### Features
10+
11+
* **create-twilio-function:** add deployinfo file to gitignore ([#320](https://github.com/twilio-labs/serverless-toolkit/issues/320)) ([5ca27b6](https://github.com/twilio-labs/serverless-toolkit/commit/5ca27b66f91249566893fd1816b03b421414d055))
12+
* **create-twilio-function:** add runtime-handler to js projects ([#321](https://github.com/twilio-labs/serverless-toolkit/issues/321)) ([6b5bcf4](https://github.com/twilio-labs/serverless-toolkit/commit/6b5bcf41a62f84b39bcdd6868eb34634fde8dda0))
13+
14+
15+
16+
17+
618
## [3.1.2](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.1.2) (2021-07-14)
719

820
**Note:** Version bump only for package create-twilio-function

Diff for: packages/create-twilio-function/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-twilio-function",
3-
"version": "3.1.2",
3+
"version": "3.2.0",
44
"description": "A CLI tool to generate a new Twilio Function using that can be run locally with twilio-run.",
55
"bin": "./bin/create-twilio-function",
66
"main": "./src/create-twilio-function.js",
@@ -26,7 +26,7 @@
2626
},
2727
"license": "MIT",
2828
"devDependencies": {
29-
"@twilio/runtime-handler": "^1.1.1",
29+
"@twilio/runtime-handler": "^1.1.2",
3030
"jest": "^24.5.0",
3131
"nock": "^11.3.4"
3232
},
@@ -39,7 +39,7 @@
3939
"pkg-install": "^1.0.0",
4040
"rimraf": "^2.6.3",
4141
"terminal-link": "^2.0.0",
42-
"twilio-run": "^3.2.0",
42+
"twilio-run": "^3.2.1",
4343
"window-size": "^1.1.1",
4444
"wrap-ansi": "^6.0.0",
4545
"yargs": "^12.0.5"

Diff for: packages/plugin-assets/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.2.2](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-07-19)
7+
8+
**Note:** Version bump only for package @twilio-labs/plugin-assets
9+
10+
11+
12+
13+
614
## [1.2.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-07-14)
715

816
**Note:** Version bump only for package @twilio-labs/plugin-assets

Diff for: packages/plugin-assets/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ OPTIONS
6464
--properties=properties [default: service_sid, sid, domain_name] The asset service environment properties you
6565
would like to display (JSON output always shows all properties).
6666
67-
--service-name=service-name [default: present-error] A unique name for your asset service. May only contain
67+
--service-name=service-name [default: nippy-slip] A unique name for your asset service. May only contain
6868
alphanumeric characters and hyphens.
6969
```
7070

71-
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.1/src/commands/assets/init.js)_
71+
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.2/src/commands/assets/init.js)_
7272

7373
## `twilio assets:list`
7474

@@ -89,7 +89,7 @@ OPTIONS
8989
(JSON output always shows all properties).
9090
```
9191

92-
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.1/src/commands/assets/list.js)_
92+
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.2/src/commands/assets/list.js)_
9393

9494
## `twilio assets:upload FILE`
9595

@@ -115,7 +115,7 @@ OPTIONS
115115
--protected Sets the uploaded asset's visibility to 'protected'
116116
```
117117

118-
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.1/src/commands/assets/upload.js)_
118+
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.2/src/commands/assets/upload.js)_
119119
<!-- commandsstop -->
120120

121121
## Contributing

Diff for: packages/plugin-assets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@twilio-labs/plugin-assets",
33
"description": "Easily upload assets to a Twilio Assets service",
4-
"version": "1.2.1",
4+
"version": "1.2.2",
55
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
66
"contributors": [
77
"Phil Nash <[email protected]>"

Diff for: packages/plugin-serverless/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.2.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-07-19)
7+
8+
**Note:** Version bump only for package @twilio-labs/plugin-serverless
9+
10+
11+
12+
13+
614
# [2.2.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-07-14)
715

816

Diff for: packages/plugin-serverless/README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ OPTIONS
127127
--to=to [Alias for "environment"]
128128
```
129129

130-
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/deploy.js)_
130+
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/deploy.js)_
131131

132132
## `twilio serverless:env:get`
133133

@@ -161,7 +161,7 @@ OPTIONS
161161
--to=to [Alias for "environment"]
162162
```
163163

164-
_See code: [src/commands/serverless/env/get.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/env/get.js)_
164+
_See code: [src/commands/serverless/env/get.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/env/get.js)_
165165

166166
## `twilio serverless:env:import`
167167

@@ -194,7 +194,7 @@ OPTIONS
194194
--to=to [Alias for "environment"]
195195
```
196196

197-
_See code: [src/commands/serverless/env/import.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/env/import.js)_
197+
_See code: [src/commands/serverless/env/import.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/env/import.js)_
198198

199199
## `twilio serverless:env:list`
200200

@@ -242,7 +242,7 @@ OPTIONS
242242
--to=to [Alias for "environment"]
243243
```
244244

245-
_See code: [src/commands/serverless/env/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/env/list.js)_
245+
_See code: [src/commands/serverless/env/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/env/list.js)_
246246

247247
## `twilio serverless:env:set`
248248

@@ -278,7 +278,7 @@ OPTIONS
278278
--value=value Name of the environment variable
279279
```
280280

281-
_See code: [src/commands/serverless/env/set.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/env/set.js)_
281+
_See code: [src/commands/serverless/env/set.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/env/set.js)_
282282

283283
## `twilio serverless:env:unset`
284284

@@ -312,7 +312,7 @@ OPTIONS
312312
--to=to [Alias for "environment"]
313313
```
314314

315-
_See code: [src/commands/serverless/env/unset.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/env/unset.js)_
315+
_See code: [src/commands/serverless/env/unset.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/env/unset.js)_
316316

317317
## `twilio serverless:init NAME`
318318

@@ -344,7 +344,7 @@ OPTIONS
344344
--typescript Initialize your Serverless project with TypeScript
345345
```
346346

347-
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/init.js)_
347+
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/init.js)_
348348

349349
## `twilio serverless:list [TYPES]`
350350

@@ -391,7 +391,7 @@ OPTIONS
391391
--to=to [Alias for "environment"]
392392
```
393393

394-
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/list.js)_
394+
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/list.js)_
395395

396396
## `twilio serverless:list-templates`
397397

@@ -410,7 +410,7 @@ OPTIONS
410410
--env=env Path to .env file for environment variables that should be installed
411411
```
412412

413-
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/list-templates.js)_
413+
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/list-templates.js)_
414414

415415
## `twilio serverless:logs`
416416

@@ -458,7 +458,7 @@ OPTIONS
458458
--to=to [Alias for "environment"]
459459
```
460460

461-
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/logs.js)_
461+
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/logs.js)_
462462

463463
## `twilio serverless:new [NAMESPACE]`
464464

@@ -481,7 +481,7 @@ OPTIONS
481481
--template=template
482482
```
483483

484-
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/new.js)_
484+
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/new.js)_
485485

486486
## `twilio serverless:promote`
487487

@@ -541,7 +541,7 @@ ALIASES
541541
$ twilio serverless:activate
542542
```
543543

544-
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/promote.js)_
544+
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/promote.js)_
545545

546546
## `twilio serverless:start [DIR]`
547547

@@ -597,7 +597,7 @@ ALIASES
597597
$ twilio serverless:run
598598
```
599599

600-
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.0/src/commands/serverless/start.js)_
600+
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.2.1/src/commands/serverless/start.js)_
601601
<!-- commandsstop -->
602602

603603
## Contributing

Diff for: packages/plugin-serverless/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@twilio-labs/plugin-serverless",
33
"description": "Develop and deploy Twilio Serverless Functions",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
66
"contributors": [
77
"Dominik Kundel <[email protected]>"
@@ -10,10 +10,10 @@
1010
"@oclif/command": "^1.5.19",
1111
"@oclif/config": "^1.13.3",
1212
"@twilio/cli-core": "^4.3.3",
13-
"create-twilio-function": "^3.1.2",
13+
"create-twilio-function": "^3.2.0",
1414
"lodash.camelcase": "^4.3.0",
1515
"lodash.kebabcase": "^4.1.1",
16-
"twilio-run": "^3.2.0"
16+
"twilio-run": "^3.2.1"
1717
},
1818
"devDependencies": {
1919
"@oclif/dev-cli": "^1.22.2",

Diff for: packages/runtime-handler/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.1.2](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio/[email protected]...@twilio/[email protected]) (2021-07-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **runtime-handler:** add warning for optional context vars ([#317](https://github.com/twilio-labs/serverless-toolkit/issues/317)) ([47051de](https://github.com/twilio-labs/serverless-toolkit/commit/47051dec50ce477d22bc6be0f87d58950c4a1919))
12+
13+
14+
15+
16+
617
## [1.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio/[email protected]...@twilio/[email protected]) (2021-06-30)
718

819

Diff for: packages/runtime-handler/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@twilio/runtime-handler",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Stub runtime for Twilio Functions",
55
"keywords": [
66
"twilio",
@@ -60,7 +60,7 @@
6060
"url": "https://github.com/twilio-labs/serverless-toolkit/issues"
6161
},
6262
"dependencies": {
63-
"@twilio-labs/serverless-runtime-types": "^2.1.0",
63+
"@twilio-labs/serverless-runtime-types": "^2.1.1",
6464
"@types/express": "4.17.7",
6565
"chalk": "^4.1.1",
6666
"common-tags": "^1.8.0",

Diff for: packages/serverless-runtime-types/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-07-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **runtime-handler:** add warning for optional context vars ([#317](https://github.com/twilio-labs/serverless-toolkit/issues/317)) ([47051de](https://github.com/twilio-labs/serverless-toolkit/commit/47051dec50ce477d22bc6be0f87d58950c4a1919))
12+
13+
14+
15+
16+
617
# [2.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-21)
718

819

Diff for: packages/serverless-runtime-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@twilio-labs/serverless-runtime-types",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "TypeScript definitions to define globals for the Twilio Serverless runtime",
55
"main": "index.js",
66
"types": "index.d.ts",

Diff for: packages/twilio-run/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.2.1](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.2.1) (2021-07-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **runtime-handler:** add warning for optional context vars ([#317](https://github.com/twilio-labs/serverless-toolkit/issues/317)) ([47051de](https://github.com/twilio-labs/serverless-toolkit/commit/47051dec50ce477d22bc6be0f87d58950c4a1919))
12+
13+
14+
15+
16+
617
# [3.2.0](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.2.0) (2021-07-14)
718

819

Diff for: packages/twilio-run/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twilio-run",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"bin": {
55
"twilio-functions": "./bin/twilio-run.js",
66
"twilio-run": "./bin/twilio-run.js",
@@ -87,7 +87,7 @@
8787
"ngrok": "^3.3.0"
8888
},
8989
"devDependencies": {
90-
"@twilio/runtime-handler": "^1.1.1",
90+
"@twilio/runtime-handler": "^1.1.2",
9191
"@types/cheerio": "^0.22.12",
9292
"@types/common-tags": "^1.8.0",
9393
"@types/debug": "^4.1.4",

0 commit comments

Comments
 (0)