@ouro.bot/cli 0.1.0-alpha.577 → 0.1.0-alpha.579
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.json +12 -0
- package/dist/senses/voice/twilio-phone.js +2 -0
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.579",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Twilio phone voice now returns `404 not found` for unknown GET routes outside the configured voice webhook path, so stale health probes no longer look like unsupported methods while the active route remains healthy."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"version": "0.1.0-alpha.578",
|
|
12
|
+
"changes": [
|
|
13
|
+
"Release preflight now requires releasable implementation changes to keep the current version as the top changelog entry and update `changelog.json` no earlier than the changed source, script, skill, or wrapper-code paths."
|
|
14
|
+
]
|
|
15
|
+
},
|
|
4
16
|
{
|
|
5
17
|
"version": "0.1.0-alpha.577",
|
|
6
18
|
"changes": [
|
|
@@ -4149,6 +4149,8 @@ function createTwilioPhoneBridge(options) {
|
|
|
4149
4149
|
if (method === "GET" && routePath === `${sipWebhookPath}/health`) {
|
|
4150
4150
|
return textResponse(200, "ok");
|
|
4151
4151
|
}
|
|
4152
|
+
if (method === "GET")
|
|
4153
|
+
return textResponse(404, "not found");
|
|
4152
4154
|
if (method !== "POST")
|
|
4153
4155
|
return textResponse(405, "method not allowed");
|
|
4154
4156
|
if (routePath === sipWebhookPath) {
|