Skip to content

Commit 62799d7

Browse files
Release packages
1 parent 260f7c7 commit 62799d7

32 files changed

Lines changed: 138 additions & 82 deletions

.changeset/address_typo_in_parsing_rpc_server_version.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/data_tracks_schema_metadata_support.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/emit_black_keepalive_frames_instead_of_uninitialized_memory.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/ensure_failing_audio_filter_init_doesn_t_degrade_audio_quali.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nvenc-av1-encoding.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/remove_uniffi_cli_from_staticlib.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@ license = "Apache-2.0"
4848
[workspace.dependencies]
4949
device-info = { version = "0.1.1", path = "device-info" }
5050
imgproc = { version = "0.3.19", path = "imgproc" }
51-
libwebrtc = { version = "0.3.42", path = "libwebrtc" }
52-
livekit = { version = "0.7.53", path = "livekit" }
53-
livekit-api = { version = "0.5.6", path = "livekit-api" }
54-
livekit-ffi = { version = "0.12.71", path = "livekit-ffi" }
55-
livekit-datatrack = { version = "0.1.11", path = "livekit-datatrack" }
51+
libwebrtc = { version = "0.3.43", path = "libwebrtc" }
52+
livekit = { version = "0.8.0", path = "livekit" }
53+
livekit-api = { version = "0.6.0", path = "livekit-api" }
54+
livekit-ffi = { version = "0.12.72", path = "livekit-ffi" }
55+
livekit-datatrack = { version = "0.1.12", path = "livekit-datatrack" }
5656
livekit-common = { version = "0.1.0", path = "livekit-common" }
5757
livekit-data-stream = { version = "0.1.0", path = "livekit-data-stream" }
58-
livekit-net = { version = "0.1.0", path = "livekit-net" }
59-
livekit-protocol = { version = "0.7.10", path = "livekit-protocol" }
58+
livekit-net = { version = "0.1.1", path = "livekit-net" }
59+
livekit-protocol = { version = "0.7.11", path = "livekit-protocol" }
6060
# default-features off so each consumer selects its runtime explicitly
6161
# (livekit-runtime/tokio | /async | /dispatcher); otherwise the default `tokio`
6262
# feature is forced on everywhere and collides with `async`/`dispatcher` builds.
6363
livekit-runtime = { version = "0.4.0", path = "livekit-runtime", default-features = false }
6464
soxr-sys = { version = "0.1.3", path = "soxr-sys" }
65-
webrtc-sys = { version = "0.3.39", path = "webrtc-sys" }
65+
webrtc-sys = { version = "0.3.40", path = "webrtc-sys" }
6666
webrtc-sys-build = { version = "0.3.18", path = "webrtc-sys/build" }
6767
yuv-sys = { version = "0.3.14", path = "yuv-sys" }
6868

libwebrtc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
139139
### Added
140140

141141
- bump libwebrtc to m125
142+
## 0.3.43 (2026-07-27)
143+
144+
### Fixes
145+
146+
- Emit black keepalive frames from NativeVideoSource instead of uninitialized memory. webrtc::I420Buffer::Create leaves the pixel planes uninitialized, so the pre-capture keepalive frames could leak recycled heap contents (often fragments of earlier frames from the same process) to subscribers as the first keyframes - #1271 (@eh-steve)
147+
- Add NVIDIA NVENC AV1 encoding when the GPU reports AV1 encode support.
148+
142149
## 0.3.42 (2026-07-17)
143150

144151
### Features

libwebrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libwebrtc"
3-
version = "0.3.42"
3+
version = "0.3.43"
44
edition.workspace = true
55
homepage = "https://livekit.io"
66
license.workspace = true

0 commit comments

Comments
 (0)