Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/runtime-handler-version-alignment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'twilio-run': patch
---

fix: align `@twilio/runtime-handler` dev dependency with the version scaffolded by `create-twilio-function`

`twilio-run` depended on `@twilio/runtime-handler@^2.1.0` while `create-twilio-function` pins `^2.0.3`. The two were inconsistent, and `2.1.0` — although published to npm as `latest` — is currently rejected by the Twilio Serverless platform at deploy time (`Error 20001: No matching version found for @twilio/runtime-handler@2.1.0`). Pinning `twilio-run` to `^2.0.3` keeps the monorepo internally consistent and avoids signalling a version that cannot be deployed. See #557.
2 changes: 1 addition & 1 deletion packages/twilio-run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"@ngrok/ngrok": "^1.7.0"
},
"devDependencies": {
"@twilio/runtime-handler": "^2.1.0",
"@twilio/runtime-handler": "^2.0.3",
"@types/cheerio": "^0.22.12",
"@types/common-tags": "^1.8.0",
"@types/debug": "^4.1.4",
Expand Down
Loading