Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/tidy-lions-repair.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/livekit-rtc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @livekit/rtc-node

## 0.13.31

### Patch Changes

- Fix AudioSource.waitForPlayout resolving immediately with audio still queued. The internal playout promise could be left resolved ("latched") by the drain timer firing during a gap between captures, or by clearQueue()/pause; a later waitForPlayout() then consumed the stale resolution and reported playout complete ~queueSizeMs early, clipping the tail of agent speech on every turn in downstream consumers. The waiter is now discarded when released and lazily re-created on the next captureFrame, mirroring python-sdks. As part of this, waitForPlayout() now resolves immediately when no audio is queued instead of blocking until the next release. - [#693](https://github.com/livekit/node-sdks/pull/693) ([@chenghao-mou](https://github.com/chenghao-mou))

## 0.13.30

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/livekit-rtc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "LiveKit RTC Node",
"license": "Apache-2.0",
"author": "LiveKit",
"version": "0.13.30",
"version": "0.13.31",
"main": "dist/index.js",
"require": "dist/index.cjs",
"types": "dist/index.d.ts",
Expand Down