diff --git a/.changeset/runtime-handler-version-alignment.md b/.changeset/runtime-handler-version-alignment.md deleted file mode 100644 index 5598b49f..00000000 --- a/.changeset/runtime-handler-version-alignment.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'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. diff --git a/packages/twilio-run/CHANGELOG.md b/packages/twilio-run/CHANGELOG.md index 772c7c55..f0237ece 100644 --- a/packages/twilio-run/CHANGELOG.md +++ b/packages/twilio-run/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 5.1.1 + +### Patch Changes + +- [#558](https://github.com/twilio-labs/serverless-toolkit/pull/558) [`8df4cb6c658b07cfe95fa0b7c55dedfdc5b516b7`](https://github.com/twilio-labs/serverless-toolkit/commit/8df4cb6c658b07cfe95fa0b7c55dedfdc5b516b7) Thanks [@robinske](https://github.com/robinske)! - 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. + ## 5.1.0 ### Minor Changes diff --git a/packages/twilio-run/package.json b/packages/twilio-run/package.json index e9f400d5..0ab6d8b2 100644 --- a/packages/twilio-run/package.json +++ b/packages/twilio-run/package.json @@ -1,6 +1,6 @@ { "name": "twilio-run", - "version": "5.1.0", + "version": "5.1.1", "bin": { "twilio-functions": "./bin/twilio-run.js", "twilio-run": "./bin/twilio-run.js",