chore: remove public LiveKit audio track re-exports - #216
Merged
Conversation
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 08:26
18775ca to
e09ccc2
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 10:29
e09ccc2 to
7d3bef1
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
2 times, most recently
from
July 20, 2026 13:38
6bb4f2c to
823b00a
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 14:38
823b00a to
f8d17ad
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 15:54
f8d17ad to
8b8c217
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 16:20
8b8c217 to
9e10ac4
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 20, 2026 16:40
9e10ac4 to
09fb7f6
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
3 times, most recently
from
July 20, 2026 21:53
a99614d to
ecca291
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
2 times, most recently
from
July 20, 2026 23:28
6f4b399 to
f4d5462
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 21, 2026 10:50
f4d5462 to
5c97b67
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 21, 2026 12:28
5c97b67 to
4f8b398
Compare
renal128
marked this pull request as draft
July 21, 2026 22:59
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 21, 2026 23:01
4f8b398 to
997d9f1
Compare
renal128
marked this pull request as ready for review
July 21, 2026 23:04
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 22, 2026 13:21
997d9f1 to
9c0fe11
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 22, 2026 15:32
9c0fe11 to
51a15c4
Compare
jacksonh
approved these changes
Jul 23, 2026
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 23, 2026 09:06
51a15c4 to
be20414
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
July 23, 2026 09:10
be20414 to
fa62a42
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
2 times, most recently
from
August 4, 2026 16:38
f70ea34 to
49b9777
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
August 4, 2026 18:33
49b9777 to
9e470cc
Compare
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
August 4, 2026 18:38
9e470cc to
52ae655
Compare
ConversationAudioObserver replaces track-based advanced audio access, so drop ElevenLabs LocalAudioTrack/RemoteAudioTrack/AudioTrack aliases and point usage docs at the observer API. Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
renal128
force-pushed
the
remove-livekit-track-reexports
branch
from
August 4, 2026 18:44
52ae655 to
e2b81d5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
ElevenLabs.LocalAudioTrack/RemoteAudioTrack/AudioTrackLiveKit re-exports.import LiveKitfromElevenLabs.swift.ConversationAudioObserverinstead ofconversation.inputTrack/agentAudioTrack.Why
Raw audio observation is now available through
ConversationAudioObserverwithout exposing LiveKit types. These re-exports were the last public LiveKit type surface in the SDK.Notes
Conversation/ connection-manager track accessors are unchanged.Testing
swiftformat 'Sources' 'Tests' --lint --strictswift testNote
Medium Risk
Breaking public API removal for apps that depended on LiveKit track types or published device lists; migration path is documented via ConversationAudioObserver.
Overview
Removes the last public LiveKit type surface from the SDK by deleting
ElevenLabsre-exports ofLocalAudioTrack,RemoteAudioTrack, andAudioTrack, and drops the unusedimport LiveKitfrom the public entry module.Documentation now steers integrators toward Raw Audio Observers (
ConversationAudioObserveronConversationClient) instead of castingconversation.inputTrack/agentAudioTrack, with notes thatdidReceive(_:)runs off the main actor on borrowed PCM buffers.Internal cleanup:
Conversationno longer publishesaudioDevices/selectedAudioDeviceID, andConversationAudioManagerno longer mirrors input device lists oronDeviceUpdatewiring—session track accessors remain internal for observer attachment only.Reviewed by Cursor Bugbot for commit e2b81d5. Bugbot is set up for automated code reviews on this repo. Configure here.