From 7575ea7e079c325a2ade25427642e3b106335a6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6kmen=20G=C3=B6rgen?= Date: Mon, 2 Mar 2026 12:47:59 +0100 Subject: [PATCH] add changelog entries for Voice Focus 2.0 support and buffer resize fix in `AICFilter`. --- changelog/3889.changed.md | 3 +++ changelog/3889.fixed.md | 1 + 2 files changed, 4 insertions(+) create mode 100644 changelog/3889.changed.md create mode 100644 changelog/3889.fixed.md diff --git a/changelog/3889.changed.md b/changelog/3889.changed.md new file mode 100644 index 000000000..c04aa0080 --- /dev/null +++ b/changelog/3889.changed.md @@ -0,0 +1,3 @@ +- Support for Voice Focus 2.0 models. + - Updated `aic-sdk` to `~=2.1.0` to support Voice Focus 2.0 models. + - Cleaned unused `ParameterFixedError` exception handling in `AICFilter` parameter setup. diff --git a/changelog/3889.fixed.md b/changelog/3889.fixed.md new file mode 100644 index 000000000..babe3eb35 --- /dev/null +++ b/changelog/3889.fixed.md @@ -0,0 +1 @@ +- Fixed `BufferError: Existing exports of data: object cannot be re-sized` in `AICFilter` caused by holding a `memoryview` on the mutable audio buffer across async yield points.