Skip to content

Commit 3e96b64

Browse files
authored
chore: mvr 6.0.0 release prep (#1186)
* mvr 6.0.0 release prep
1 parent 447a23d commit 3e96b64

5 files changed

Lines changed: 26 additions & 10 deletions

File tree

.github/workflows/test-and-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 20
2222
strategy:
2323
matrix:
24-
node: [ 14, 16, 18, 20, 22, lts/* ]
24+
node: [20, 22, 24, lts/* ]
2525
steps:
2626
- name: Checkout twilio-node
2727
uses: actions/checkout@v3
@@ -74,12 +74,12 @@ jobs:
7474
runs-on: ubuntu-latest
7575
steps:
7676
- name: Checkout twilio-node
77-
uses: actions/checkout@v3
77+
uses: actions/checkout@v4
7878
with:
7979
fetch-depth: 0
8080

8181
- name: Set up Node
82-
uses: actions/setup-node@v3
82+
uses: actions/setup-node@v4
8383
with:
8484
node-version: lts/*
8585

@@ -90,7 +90,7 @@ jobs:
9090
run: npm install -g npm@latest
9191

9292
- name: Login to Docker Hub
93-
uses: docker/login-action@v2
93+
uses: docker/login-action@v3
9494
with:
9595
username: ${{ secrets.DOCKER_USERNAME }}
9696
password: ${{ secrets.DOCKER_AUTH_TOKEN }}

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
twilio-node changelog
22
=====================
33

4+
[2026-04-16] Version 6.0.0
5+
---------------------------
6+
**Library - Breaking Changes**
7+
- Bump version to 6.0.0 (major version release)
8+
- Raise minimum Node.js engine from >=14.0 to >=20.0
9+
410
[2026-04-14] Version 5.13.2
511
---------------------------
612
**Twiml**

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ The Node library documentation can be found [here][libdocs].
1919

2020
This library supports the following Node.js implementations:
2121

22-
- Node.js 14
23-
- Node.js 16
24-
- Node.js 18
2522
- Node.js 20
26-
- Node.js lts(22)
23+
- Node.js 22
24+
- Node.js 24 (lts)
2725

2826
TypeScript is supported for TypeScript version 2.9 and above.
2927

UPGRADE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
_All `MAJOR` version bumps will have upgrade notes posted here._
44

5+
## [2026-04-20] 5.x.x to 6.x.x
6+
---
7+
### Overview
8+
9+
Twilio Node Helper Library’s major version 6.0.0 is now available. We ensured that you can upgrade to Node Helper Library 6.0.0 version without any breaking changes to existing APIs.
10+
11+
### Breaking Changes
12+
13+
- **Minimum Node.js version raised to 20**
14+
- Dropped support for Node.js versions below 20
15+
- Upgrade to Node.js >= 20 before updating to `twilio` 6.x.x
16+
517
## [2024-03-07] 4.x.x to 5.x.x
618

719
---

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "twilio",
33
"description": "A Twilio helper library",
4-
"version": "5.13.2",
4+
"version": "6.0.0",
55
"author": "API Team <api@twilio.com>",
66
"contributors": [
77
{
@@ -71,7 +71,7 @@
7171
"main": "./lib",
7272
"types": "./index.d.ts",
7373
"engines": {
74-
"node": ">=14.0"
74+
"node": ">=20.0.0"
7575
},
7676
"license": "MIT"
7777
}

0 commit comments

Comments
 (0)