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
13 changes: 0 additions & 13 deletions .changeset/adm-proxy-worker-thread.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/close_peer_connections_before_signal_teardown.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/data_streams_v2_uniffi.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/egress_passthrough_preset.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/extract_livekit_region_crate.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/extract_livekit_signaling_crate.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/fix_pre_encoded_frame_segfault_on_macos.md

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/libwebrtc_network_type_stat.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/livekit_net_self_test_ffi.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/remove_livekit_runtime.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/update_test_to_use_new_sip_grpc_code.md

This file was deleted.

30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,21 @@ license = "Apache-2.0"
[workspace.dependencies]
device-info = { version = "0.1.1", path = "device-info" }
imgproc = { version = "0.3.20", path = "imgproc" }
libwebrtc = { version = "0.3.46", path = "libwebrtc" }
livekit = { version = "0.8.4", path = "livekit" }
livekit-api = { version = "0.6.4", path = "livekit-api" }
livekit-ffi = { version = "0.12.76", path = "livekit-ffi" }
livekit-datatrack = { version = "0.1.14", path = "livekit-datatrack" }
livekit-signaling = { version = "0.1.0", path = "livekit-signaling" }
livekit-token = { version = "0.1.1", path = "livekit-token" }
livekit-token-source = { version = "0.1.2", path = "livekit-token-source" }
livekit-common = { version = "0.1.2", path = "livekit-common" }
livekit-data-stream = { version = "0.1.3", path = "livekit-data-stream" }
livekit-net = { version = "0.1.2", path = "livekit-net" }
livekit-protocol = { version = "0.7.12", path = "livekit-protocol" }
livekit-region = { version = "0.1.0", path = "livekit-region" }
libwebrtc = { version = "0.3.47", path = "libwebrtc" }
livekit = { version = "0.8.5", path = "livekit" }
livekit-api = { version = "0.6.5", path = "livekit-api" }
livekit-ffi = { version = "0.12.77", path = "livekit-ffi" }
livekit-datatrack = { version = "0.1.15", path = "livekit-datatrack" }
livekit-signaling = { version = "0.1.1", path = "livekit-signaling" }
livekit-token = { version = "0.1.2", path = "livekit-token" }
livekit-token-source = { version = "0.1.3", path = "livekit-token-source" }
livekit-common = { version = "0.1.3", path = "livekit-common" }
livekit-data-stream = { version = "0.1.4", path = "livekit-data-stream" }
livekit-net = { version = "0.1.3", path = "livekit-net" }
livekit-protocol = { version = "0.7.13", path = "livekit-protocol" }
livekit-region = { version = "0.1.1", path = "livekit-region" }
soxr-sys = { version = "0.1.3", path = "soxr-sys" }
webrtc-sys = { version = "0.3.43", path = "webrtc-sys" }
webrtc-sys = { version = "0.3.44", path = "webrtc-sys" }
webrtc-sys-build = { version = "0.3.19", path = "webrtc-sys/build" }
yuv-sys = { version = "0.3.15", path = "yuv-sys" }

Expand Down
25 changes: 25 additions & 0 deletions libwebrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- bump libwebrtc to m125
## 0.3.47 (2026-09-04)

### Features

- Handle capture of dmabuf using existing capture path
- Removes livekit-runtime and converts this package to be tokio only again - #1375 (@1egoman)

#### Expose network_type on IceCandidateStats

Chromium's local `RTCIceCandidateStats` carries a non-standard `networkType` field (WiFi,
cellular, ethernet, etc.), but `IceCandidateStats` had no place to put it, so it was silently
dropped during `get_stats()` deserialization. Adds `network_type: Option<String>` to the struct;
non-breaking since it already derives `#[serde(default)]`.

### Fixes

- Fix pre-encoded frame segfault on macOS

#### Make AdmProxy worker-thread-affine: all platform ADM access now happens on the WebRTC worker thread, matching the ADM threading contract.

- The platform ADM is now created lazily on the first PlatformAudio acquire on all platforms, so apps that never use platform audio never construct it.
- Fixes Android platform recording delivering no audio: the audio transport was never registered on the lazily created ADM.
- Fixes a shutdown race by keeping the runtime threads alive as long as Rust can reach the audio device controller.
- Adds a `platform_audio` example exercising the PlatformAudio API and the worker-thread marshaling.

## 0.3.46 (2026-08-25)

### Features
Expand Down
2 changes: 1 addition & 1 deletion libwebrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libwebrtc"
version = "0.3.46"
version = "0.3.47"
edition.workspace = true
homepage = "https://livekit.io"
license.workspace = true
Expand Down
26 changes: 26 additions & 0 deletions livekit-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.6.5 (2026-09-04)

### Features

- Removes livekit-runtime and converts this package to be tokio only again - #1375 (@1egoman)

### Fixes

- Add data streams v2 to exposed uniffi interface - #1286 (@1egoman)
- Add the `PASSTHROUGH` encoding preset and remove the unused `UpdateEgressRequest` from the generated protocol
- Add `self_test_http_get` / `self_test_ws_echo` / `has_http_client` / `has_ws_client` UniFFI exports so foreign hosts can exercise the transport seam end-to-end.
- Update sip_busy test GRPc code: failed_precondition -> failed_precondition

#### Moves the internal region-discovery cache into a new `livekit-region` crate. No

public API or behaviour change.

#### Moves the signalling client into a new `livekit-signaling` crate. livekit-api

re-exports it under the historical `livekit_api::signal_client` path, now marked
deprecated: it is internal SDK API, and dependents should use livekit-signaling
directly. livekit-api no longer depends on livekit-net.

Also drops two dependencies that were declared but never used: `scopeguard` and
`bytes`.

## 0.6.4 (2026-08-25)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion livekit-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-api"
version = "0.6.4"
version = "0.6.5"
license.workspace = true
description = "Rust Server SDK for LiveKit"
edition.workspace = true
Expand Down
Loading
Loading