From c8efe319b31543f5808fd7dc17a9dab867644ff4 Mon Sep 17 00:00:00 2001 From: filipi87 Date: Thu, 14 May 2026 11:10:33 -0300 Subject: [PATCH] Adding the changelog for the changes. --- changelog/4442.added.2.md | 1 + changelog/4442.added.md | 1 + changelog/4442.changed.md | 1 + 3 files changed, 3 insertions(+) create mode 100644 changelog/4442.added.2.md create mode 100644 changelog/4442.added.md create mode 100644 changelog/4442.changed.md diff --git a/changelog/4442.added.2.md b/changelog/4442.added.2.md new file mode 100644 index 000000000..1c2452667 --- /dev/null +++ b/changelog/4442.added.2.md @@ -0,0 +1 @@ +- Added `GET /status` endpoint to the development runner that reports which transports the running instance accepts (all by default, or the single transport passed via `-t`). diff --git a/changelog/4442.added.md b/changelog/4442.added.md new file mode 100644 index 000000000..2360e4e78 --- /dev/null +++ b/changelog/4442.added.md @@ -0,0 +1 @@ +- Added plain WebSocket transport support to the development runner. Bots can now accept connections from non-telephony WebSocket clients (e.g., browser apps using protobuf framing) via the `/ws-client` endpoint alongside other transports. diff --git a/changelog/4442.changed.md b/changelog/4442.changed.md new file mode 100644 index 000000000..0299bc831 --- /dev/null +++ b/changelog/4442.changed.md @@ -0,0 +1 @@ +- ⚠️ The development runner now supports all transports (WebRTC, Daily, telephony, plain WebSocket) simultaneously from a single server. The `/start` endpoint accepts a `"transport"` field to select the transport per-request; omitting `-t` at startup enables all transports instead of defaulting to WebRTC. The Daily browser-redirect route moved from `GET /` to `GET /daily`.