Skip to content

Commit bf537eb

Browse files
Version Packages (#545)
* chore(@twilio-labs/plugin-assets): version update in readme * chore(@twilio-labs/plugin-serverless): version update in readme * chore: version packages --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9f945cd commit bf537eb

File tree

13 files changed

+90
-42
lines changed

13 files changed

+90
-42
lines changed

.changeset/fair-poems-pull.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/create-twilio-function/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- [#544](https://github.com/twilio-labs/serverless-toolkit/pull/544) [`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874) Thanks [@alfrol](https://github.com/alfrol)! - **WHAT**: Remove Node.js 18 from supported versions.
8+
9+
**WHY**: Node.js 18 is EOL and will not receive bug fixes or security upgrades. Users should migrate to Node.js 20 or 22.
10+
11+
**BREAKING CHANGE**: Projects using `create-twilio-function`, `@twilio-labs/plugin-asset`, `@twilio-labs/plugin-serverless`, `@twilio-labs/serverless-twilio-runtime` or `twilio-run` will have to migrate to Node.js 20 or 22.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874)]:
16+
17+
318
## 3.6.0
419

520
### Minor Changes

packages/create-twilio-function/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-twilio-function",
3-
"version": "3.6.0",
3+
"version": "4.0.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",
@@ -36,7 +36,7 @@
3636
"pkg-install": "^1.0.0",
3737
"rimraf": "^2.6.3",
3838
"terminal-link": "^2.0.0",
39-
"twilio-run": "^4.2.0",
39+
"twilio-run": "^5.0.0",
4040
"window-size": "^1.1.1",
4141
"wrap-ansi": "^7.0.0",
4242
"yargs": "^17.2.1"

packages/plugin-assets/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- [#544](https://github.com/twilio-labs/serverless-toolkit/pull/544) [`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874) Thanks [@alfrol](https://github.com/alfrol)! - **WHAT**: Remove Node.js 18 from supported versions.
8+
9+
**WHY**: Node.js 18 is EOL and will not receive bug fixes or security upgrades. Users should migrate to Node.js 20 or 22.
10+
11+
**BREAKING CHANGE**: Projects using `create-twilio-function`, `@twilio-labs/plugin-asset`, `@twilio-labs/plugin-serverless`, `@twilio-labs/serverless-twilio-runtime` or `twilio-run` will have to migrate to Node.js 20 or 22.
12+
313
## 2.0.6
414

515
### Patch Changes

packages/plugin-assets/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ DESCRIPTION
7373
Create a new assets service to use as a bucket
7474
```
7575

76-
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.0.6/src/commands/assets/init.js)_
76+
_See code: [src/commands/assets/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.0.0/src/commands/assets/init.js)_
7777

7878
## `twilio assets:list`
7979

@@ -96,7 +96,7 @@ DESCRIPTION
9696
List all the assets in the service
9797
```
9898

99-
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.0.6/src/commands/assets/list.js)_
99+
_See code: [src/commands/assets/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.0.0/src/commands/assets/list.js)_
100100

101101
## `twilio assets:upload FILE`
102102

@@ -123,7 +123,7 @@ DESCRIPTION
123123
Upload a new asset to the Assets service
124124
```
125125

126-
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v2.0.6/src/commands/assets/upload.js)_
126+
_See code: [src/commands/assets/upload.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.0.0/src/commands/assets/upload.js)_
127127
<!-- commandsstop -->
128128

129129
## Contributing

packages/plugin-assets/package.json

Lines changed: 1 addition & 1 deletion
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": "2.0.6",
4+
"version": "3.0.0",
55
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
66
"contributors": [
77
"Phil Nash <[email protected]>"

packages/plugin-serverless/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Change Log
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- [#544](https://github.com/twilio-labs/serverless-toolkit/pull/544) [`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874) Thanks [@alfrol](https://github.com/alfrol)! - **WHAT**: Remove Node.js 18 from supported versions.
8+
9+
**WHY**: Node.js 18 is EOL and will not receive bug fixes or security upgrades. Users should migrate to Node.js 20 or 22.
10+
11+
**BREAKING CHANGE**: Projects using `create-twilio-function`, `@twilio-labs/plugin-asset`, `@twilio-labs/plugin-serverless`, `@twilio-labs/serverless-twilio-runtime` or `twilio-run` will have to migrate to Node.js 20 or 22.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [[`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874)]:
16+
17+
18+
319
## 3.3.0
420

521
### Minor Changes

packages/plugin-serverless/README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ DESCRIPTION
167167
Deploys existing functions and assets to Twilio
168168
```
169169

170-
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/deploy.js)_
170+
_See code: [src/commands/serverless/deploy.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/deploy.js)_
171171

172172
## `twilio serverless:dev [DIR]`
173173

@@ -180,7 +180,7 @@ USAGE
180180
[--assets-folder <value>] [--functions-folder <value>] [--fork-process]
181181
182182
ARGUMENTS
183-
DIR Root directory to serve local Functions/Assets from
183+
[DIR] Root directory to serve local Functions/Assets from
184184
185185
FLAGS
186186
-c, --config=<value> Location of the config file. Absolute path or relative to current working directory
@@ -248,7 +248,7 @@ DESCRIPTION
248248
Retrieves the value of a specific environment variable
249249
```
250250

251-
_See code: [src/commands/serverless/env/get.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/env/get.js)_
251+
_See code: [src/commands/serverless/env/get.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/env/get.js)_
252252

253253
## `twilio serverless:env:import`
254254

@@ -286,7 +286,7 @@ DESCRIPTION
286286
Takes a .env file and uploads all environment variables to a given environment
287287
```
288288

289-
_See code: [src/commands/serverless/env/import.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/env/import.js)_
289+
_See code: [src/commands/serverless/env/import.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/env/import.js)_
290290

291291
## `twilio serverless:env:list`
292292

@@ -326,7 +326,7 @@ DESCRIPTION
326326
Lists all environment variables for a given environment
327327
```
328328

329-
_See code: [src/commands/serverless/env/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/env/list.js)_
329+
_See code: [src/commands/serverless/env/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/env/list.js)_
330330

331331
## `twilio serverless:env:set`
332332

@@ -366,7 +366,7 @@ DESCRIPTION
366366
Sets an environment variable with a given key and value
367367
```
368368

369-
_See code: [src/commands/serverless/env/set.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/env/set.js)_
369+
_See code: [src/commands/serverless/env/set.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/env/set.js)_
370370

371371
## `twilio serverless:env:unset`
372372

@@ -405,7 +405,7 @@ DESCRIPTION
405405
Removes an environment variable for a given key
406406
```
407407

408-
_See code: [src/commands/serverless/env/unset.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/env/unset.js)_
408+
_See code: [src/commands/serverless/env/unset.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/env/unset.js)_
409409

410410
## `twilio serverless:init NAME`
411411

@@ -439,7 +439,7 @@ DESCRIPTION
439439
Creates a new Twilio Function project
440440
```
441441

442-
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/init.js)_
442+
_See code: [src/commands/serverless/init.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/init.js)_
443443

444444
## `twilio serverless:list [TYPES]`
445445

@@ -453,7 +453,7 @@ USAGE
453453
[--to <value>]
454454
455455
ARGUMENTS
456-
TYPES [default: services] Comma separated list of things to list (services,environments,functions,assets,variables)
456+
[TYPES] [default: services] Comma separated list of things to list (services,environments,functions,assets,variables)
457457
458458
FLAGS
459459
-c, --config=<value> Location of the config file. Absolute path or relative to current working directory
@@ -482,7 +482,7 @@ DESCRIPTION
482482
List existing services, environments, variables, deployments for your Twilio Serverless Account
483483
```
484484

485-
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/list.js)_
485+
_See code: [src/commands/serverless/list.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/list.js)_
486486

487487
## `twilio serverless:list-templates`
488488

@@ -499,7 +499,7 @@ DESCRIPTION
499499
Lists the available Twilio Function templates
500500
```
501501

502-
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/list-templates.js)_
502+
_See code: [src/commands/serverless/list-templates.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/list-templates.js)_
503503

504504
## `twilio serverless:logs`
505505

@@ -539,7 +539,7 @@ DESCRIPTION
539539
Print logs from your Twilio Serverless project
540540
```
541541

542-
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/logs.js)_
542+
_See code: [src/commands/serverless/logs.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/logs.js)_
543543

544544
## `twilio serverless:new [NAMESPACE]`
545545

@@ -550,7 +550,7 @@ USAGE
550550
$ twilio serverless:new [NAMESPACE] [-l <value>] [-c <value>] [--cwd <value>] [--env <value>] [--template <value>]
551551
552552
ARGUMENTS
553-
NAMESPACE The namespace your assets/functions should be grouped under
553+
[NAMESPACE] The namespace your assets/functions should be grouped under
554554
555555
FLAGS
556556
-c, --config=<value> Location of the config file. Absolute path or relative to current working directory (cwd)
@@ -563,7 +563,7 @@ DESCRIPTION
563563
Creates a new Twilio Function based on an existing template
564564
```
565565

566-
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/new.js)_
566+
_See code: [src/commands/serverless/new.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/new.js)_
567567

568568
## `twilio serverless:promote`
569569

@@ -613,7 +613,7 @@ ALIASES
613613
$ twilio serverless:activate
614614
```
615615

616-
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/promote.js)_
616+
_See code: [src/commands/serverless/promote.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/promote.js)_
617617

618618
## `twilio serverless:run [DIR]`
619619

@@ -626,7 +626,7 @@ USAGE
626626
[--assets-folder <value>] [--functions-folder <value>] [--fork-process]
627627
628628
ARGUMENTS
629-
DIR Root directory to serve local Functions/Assets from
629+
[DIR] Root directory to serve local Functions/Assets from
630630
631631
FLAGS
632632
-c, --config=<value> Location of the config file. Absolute path or relative to current working directory
@@ -668,7 +668,7 @@ USAGE
668668
[--assets-folder <value>] [--functions-folder <value>] [--fork-process]
669669
670670
ARGUMENTS
671-
DIR Root directory to serve local Functions/Assets from
671+
[DIR] Root directory to serve local Functions/Assets from
672672
673673
FLAGS
674674
-c, --config=<value> Location of the config file. Absolute path or relative to current working directory
@@ -699,7 +699,7 @@ ALIASES
699699
$ twilio serverless:run
700700
```
701701

702-
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v3.3.0/src/commands/serverless/start.js)_
702+
_See code: [src/commands/serverless/start.js](https://github.com/twilio-labs/serverless-toolkit/blob/v4.0.0/src/commands/serverless/start.js)_
703703
<!-- commandsstop -->
704704

705705
## Contributing

packages/plugin-serverless/package.json

Lines changed: 3 additions & 3 deletions
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": "3.3.0",
4+
"version": "4.0.0",
55
"author": "Twilio Inc. <[email protected]> (https://www.twilio.com/labs)",
66
"contributors": [
77
"Dominik Kundel <[email protected]>"
@@ -10,10 +10,10 @@
1010
"dependencies": {
1111
"@oclif/core": "^1.14.2",
1212
"@twilio/cli-core": "^7.0.0",
13-
"create-twilio-function": "^3.6.0",
13+
"create-twilio-function": "^4.0.0",
1414
"lodash.camelcase": "^4.3.0",
1515
"lodash.kebabcase": "^4.1.1",
16-
"twilio-run": "^4.2.0"
16+
"twilio-run": "^5.0.0"
1717
},
1818
"devDependencies": {
1919
"@oclif/plugin-help": "^5.1.12",

packages/serverless-twilio-runtime/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 3.0.0
4+
5+
### Major Changes
6+
7+
- [#544](https://github.com/twilio-labs/serverless-toolkit/pull/544) [`9f945cd79e89aaa00474c56a5ab3d6b41415b874`](https://github.com/twilio-labs/serverless-toolkit/commit/9f945cd79e89aaa00474c56a5ab3d6b41415b874) Thanks [@alfrol](https://github.com/alfrol)! - **WHAT**: Remove Node.js 18 from supported versions.
8+
9+
**WHY**: Node.js 18 is EOL and will not receive bug fixes or security upgrades. Users should migrate to Node.js 20 or 22.
10+
11+
**BREAKING CHANGE**: Projects using `create-twilio-function`, `@twilio-labs/plugin-asset`, `@twilio-labs/plugin-serverless`, `@twilio-labs/serverless-twilio-runtime` or `twilio-run` will have to migrate to Node.js 20 or 22.
12+
313
## 2.0.2
414

515
### Patch Changes

0 commit comments

Comments
 (0)