From 6b93ca0cb6af3b3407b6e90d595a9a450c57165b Mon Sep 17 00:00:00 2001 From: aconchillo <951761+aconchillo@users.noreply.github.com> Date: Fri, 15 May 2026 22:18:46 +0000 Subject: [PATCH] Update changelog for version 1.2.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ changelog/4500.changed.md | 1 - changelog/4501.fixed.md | 1 - 3 files changed, 21 insertions(+), 2 deletions(-) delete mode 100644 changelog/4500.changed.md delete mode 100644 changelog/4501.fixed.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e8276c09..3a2b63a90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [1.2.1] - 2026-05-15 + +### Changed + +- Changed the default WebSocket endpoints for `GradiumSTTService` and + `GradiumTTSService` to the region-neutral + `wss://api.gradium.ai/api/speech/asr` and + `wss://api.gradium.ai/api/speech/tts`. Gradium now automatically routes + traffic to the nearest endpoint. Override the url to pin to a specific + region. + (PR [#4500](https://github.com/pipecat-ai/pipecat/pull/4500)) + +### Fixed + +- Fixed bot hangs when `filter_incomplete_user_turns` was enabled and the LLM + responded by calling a tool. The user turn never finalized, so the assistant + aggregator gated the tool-result context push and the LLM continuation never + ran. Tool calls now finalize the turn the moment they start, before the + function dispatches. + (PR [#4501](https://github.com/pipecat-ai/pipecat/pull/4501)) + ## [1.2.0] - 2026-05-14 ### Added diff --git a/changelog/4500.changed.md b/changelog/4500.changed.md deleted file mode 100644 index 055eb9ade..000000000 --- a/changelog/4500.changed.md +++ /dev/null @@ -1 +0,0 @@ -- Changed the default WebSocket endpoints for `GradiumSTTService` and `GradiumTTSService` to the region-neutral `wss://api.gradium.ai/api/speech/asr` and `wss://api.gradium.ai/api/speech/tts`. Gradium now automatically routes traffic to the nearest endpoint. Override the url to pin to a specific region. diff --git a/changelog/4501.fixed.md b/changelog/4501.fixed.md deleted file mode 100644 index 9da88a9e1..000000000 --- a/changelog/4501.fixed.md +++ /dev/null @@ -1 +0,0 @@ -- Fixed bot hangs when `filter_incomplete_user_turns` was enabled and the LLM responded by calling a tool. The user turn never finalized, so the assistant aggregator gated the tool-result context push and the LLM continuation never ran. Tool calls now finalize the turn the moment they start, before the function dispatches.