Skip to content

Commit 6aad37b

Browse files
Release packages
1 parent 7bf537c commit 6aad37b

24 files changed

Lines changed: 73 additions & 50 deletions

.changeset/fix-publisher-renegotiation-deadlock.md

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

.changeset/fix_nvenc_dynamic_bitrate_updates.md

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

.changeset/fix_uniffi_android_package_build.md

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

.changeset/move_the_concept_of_internal_data_streams_into_livekit_crate.md

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

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 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.43", path = "libwebrtc" }
52-
livekit = { version = "0.8.1", path = "livekit" }
51+
libwebrtc = { version = "0.3.44", path = "libwebrtc" }
52+
livekit = { version = "0.8.2", path = "livekit" }
5353
livekit-api = { version = "0.6.1", path = "livekit-api" }
54-
livekit-ffi = { version = "0.12.73", path = "livekit-ffi" }
54+
livekit-ffi = { version = "0.12.74", path = "livekit-ffi" }
5555
livekit-datatrack = { version = "0.1.13", path = "livekit-datatrack" }
5656
livekit-common = { version = "0.1.1", path = "livekit-common" }
57-
livekit-data-stream = { version = "0.1.1", path = "livekit-data-stream" }
57+
livekit-data-stream = { version = "0.1.2", path = "livekit-data-stream" }
5858
livekit-net = { version = "0.1.2", path = "livekit-net" }
5959
livekit-protocol = { version = "0.7.12", 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.40", path = "webrtc-sys" }
65+
webrtc-sys = { version = "0.3.41", 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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,14 @@ 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.44 (2026-08-03)
143+
144+
### Fixes
145+
146+
#### Fix H.264, H.265, and AV1 NVENC sessions so live bitrate and frame rate updates
147+
148+
reconfigure the hardware without restarting the encoder.
149+
142150
## 0.3.43 (2026-07-27)
143151

144152
### Fixes

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.43"
3+
version = "0.3.44"
44
edition.workspace = true
55
homepage = "https://livekit.io"
66
license.workspace = true

livekit-data-stream/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.2 (2026-08-03)
2+
3+
### Fixes
4+
5+
- Move the concept of "internal" data streams into `livekit` crate from `livekit-data-stream` - #1304 (@1egoman)
6+
17
## 0.1.1 (2026-07-29)
28

39
### Features

livekit-data-stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "livekit-data-stream"
33
description = "Data stream core logic for LiveKit"
4-
version = "0.1.1"
4+
version = "0.1.2"
55
readme = "README.md"
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)