Skip to content

Commit 24d4319

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 0c66d97 commit 24d4319

File tree

14 files changed

+90
-24
lines changed

14 files changed

+90
-24
lines changed

packages/create-twilio-function/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+
## [3.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.1.1) (2021-06-30)
7+
8+
**Note:** Version bump only for package create-twilio-function
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.1.0) (2021-06-21)
715

816

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.0",
3+
"version": "3.1.1",
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.0",
29+
"@twilio/runtime-handler": "^1.1.1",
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.1.0",
42+
"twilio-run": "^3.1.1",
4343
"window-size": "^1.1.1",
4444
"wrap-ansi": "^6.0.0",
4545
"yargs": "^12.0.5"

packages/plugin-assets/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+
# [1.2.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-30)
7+
8+
9+
### Features
10+
11+
* **assets:** can specify --protected flag for asset uploads ([#288](https://github.com/twilio-labs/serverless-toolkit/issues/288)) ([f12a9e6](https://github.com/twilio-labs/serverless-toolkit/commit/f12a9e652d1dd39bdbf378b66427091986d9bcc3)), closes [#281](https://github.com/twilio-labs/serverless-toolkit/issues/281)
12+
* **plugin-assets:** adds flag for setting service name in init ([#286](https://github.com/twilio-labs/serverless-toolkit/issues/286)) ([bb3ce51](https://github.com/twilio-labs/serverless-toolkit/commit/bb3ce51affac8be4a609ea59adbd55e8cb8c8f99))
13+
14+
15+
16+
17+
618
# [1.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-21)
719

820

packages/plugin-assets/README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,12 @@ OPTIONS
6363
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).
66+
67+
--service-name=service-name [default: simplistic-jail] A unique name for your asset service. May only contain
68+
alphanumeric characters and hyphens.
6669
```
6770

68-
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.1.0/src/commands/assets/init.js)_
71+
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.0/src/commands/assets/init.js)_
6972

7073
## `twilio assets:list`
7174

@@ -86,7 +89,7 @@ OPTIONS
8689
(JSON output always shows all properties).
8790
```
8891

89-
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.1.0/src/commands/assets/list.js)_
92+
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.0/src/commands/assets/list.js)_
9093

9194
## `twilio assets:upload FILE`
9295

@@ -108,9 +111,11 @@ OPTIONS
108111
109112
--properties=properties [default: sid, path, url, visibility] The asset properties you would like to display
110113
(JSON output always shows all properties).
114+
115+
--protected Sets the uploaded asset's visibility to 'protected'
111116
```
112117

113-
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.1.0/src/commands/assets/upload.js)_
118+
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v1.2.0/src/commands/assets/upload.js)_
114119
<!-- commandsstop -->
115120

116121
## Contributing

packages/plugin-assets/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@twilio-labs/plugin-assets",
33
"description": "Easily upload assets to a Twilio Assets service",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
66
"contributors": [
77
"Phil Nash <[email protected]>"
88
],
99
"dependencies": {
1010
"@oclif/command": "^1.5.19",
1111
"@oclif/config": "^1.13.3",
12-
"@twilio-labs/serverless-api": "^5.1.0",
12+
"@twilio-labs/serverless-api": "^5.1.1",
1313
"@twilio/cli-core": "^5.22.0",
1414
"inquirer": "^8.0.0",
1515
"ora": "^5.4.0",

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.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-30)
7+
8+
**Note:** Version bump only for package @twilio-labs/plugin-serverless
9+
10+
11+
12+
13+
614
# [2.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-21)
715

816

packages/plugin-serverless/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ OPTIONS
122122
--to=to [Alias for "environment"]
123123
```
124124

125-
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/deploy.js)_
125+
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/deploy.js)_
126126

127127
## `twilio serverless:init NAME`
128128

@@ -154,7 +154,7 @@ OPTIONS
154154
--typescript Initialize your Serverless project with TypeScript
155155
```
156156

157-
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/init.js)_
157+
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/init.js)_
158158

159159
## `twilio serverless:list [TYPES]`
160160

@@ -201,7 +201,7 @@ OPTIONS
201201
--to=to [Alias for "environment"]
202202
```
203203

204-
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/list.js)_
204+
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/list.js)_
205205

206206
## `twilio serverless:list-templates`
207207

@@ -220,7 +220,7 @@ OPTIONS
220220
--env=env Path to .env file for environment variables that should be installed
221221
```
222222

223-
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/list-templates.js)_
223+
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/list-templates.js)_
224224

225225
## `twilio serverless:logs`
226226

@@ -268,7 +268,7 @@ OPTIONS
268268
--to=to [Alias for "environment"]
269269
```
270270

271-
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/logs.js)_
271+
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/logs.js)_
272272

273273
## `twilio serverless:new [NAMESPACE]`
274274

@@ -291,7 +291,7 @@ OPTIONS
291291
--template=template
292292
```
293293

294-
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/new.js)_
294+
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/new.js)_
295295

296296
## `twilio serverless:promote`
297297

@@ -351,7 +351,7 @@ ALIASES
351351
$ twilio serverless:activate
352352
```
353353

354-
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/promote.js)_
354+
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/promote.js)_
355355

356356
## `twilio serverless:start [DIR]`
357357

@@ -407,7 +407,7 @@ ALIASES
407407
$ twilio serverless:run
408408
```
409409

410-
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.0/src/commands/serverless/start.js)_
410+
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.1.1/src/commands/serverless/start.js)_
411411
<!-- commandsstop -->
412412

413413
## Contributing

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.1.0",
4+
"version": "2.1.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.0",
13+
"create-twilio-function": "^3.1.1",
1414
"lodash.camelcase": "^4.3.0",
1515
"lodash.kebabcase": "^4.1.1",
16-
"twilio-run": "^3.1.0"
16+
"twilio-run": "^3.1.1"
1717
},
1818
"devDependencies": {
1919
"@oclif/dev-cli": "^1.22.2",

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.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio/[email protected]...@twilio/[email protected]) (2021-06-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **response:** brings Response object to parity with Functions ([#287](https://github.com/twilio-labs/serverless-toolkit/issues/287)) ([0c66d97](https://github.com/twilio-labs/serverless-toolkit/commit/0c66d97a344cf43b2e0c95a12e054fedecc1b027))
12+
13+
14+
15+
16+
617
# [1.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio/[email protected]...@twilio/[email protected]) (2021-06-21)
718

819

packages/runtime-handler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@twilio/runtime-handler",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Stub runtime for Twilio Functions",
55
"keywords": [
66
"twilio",

packages/serverless-api/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+
## [5.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **serverless-api:** do not retry for HTTP client request errors ([#285](https://github.com/twilio-labs/serverless-toolkit/issues/285)) ([ecbf4ab](https://github.com/twilio-labs/serverless-toolkit/commit/ecbf4ab4f5b691b017687663ba068d6f387e35d5))
12+
13+
14+
15+
16+
617
# [5.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/@twilio-labs/[email protected]...@twilio-labs/[email protected]) (2021-06-21)
718

819

packages/serverless-api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@twilio-labs/serverless-api",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "API-wrapper for the Twilio Serverless API",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

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.1.1](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.1.1) (2021-06-30)
7+
8+
9+
### Bug Fixes
10+
11+
* **response:** brings Response object to parity with Functions ([#287](https://github.com/twilio-labs/serverless-toolkit/issues/287)) ([0c66d97](https://github.com/twilio-labs/serverless-toolkit/commit/0c66d97a344cf43b2e0c95a12e054fedecc1b027))
12+
13+
14+
15+
16+
617
# [3.1.0](https://github.com/twilio-labs/serverless-toolkit/compare/[email protected]@3.1.0) (2021-06-21)
718

819

packages/twilio-run/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twilio-run",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"bin": {
55
"twilio-functions": "./bin/twilio-run.js",
66
"twilio-run": "./bin/twilio-run.js",
@@ -35,7 +35,7 @@
3535
],
3636
"license": "MIT",
3737
"dependencies": {
38-
"@twilio-labs/serverless-api": "^5.1.0",
38+
"@twilio-labs/serverless-api": "^5.1.1",
3939
"@twilio-labs/serverless-runtime-types": "^2.1.0",
4040
"@types/express": "4.17.7",
4141
"@types/inquirer": "^6.0.3",
@@ -87,7 +87,7 @@
8787
"ngrok": "^3.3.0"
8888
},
8989
"devDependencies": {
90-
"@twilio/runtime-handler": "^1.1.0",
90+
"@twilio/runtime-handler": "^1.1.1",
9191
"@types/cheerio": "^0.22.12",
9292
"@types/common-tags": "^1.8.0",
9393
"@types/debug": "^4.1.4",

0 commit comments

Comments
 (0)