Skip to content

Commit ba0c312

Browse files
Release packages (#1124)
> [!IMPORTANT] > Merging this pull request will create these releases # livekit-protocol 0.7.8 (2026-05-29) ## Fixes - bump protocol to v1.46.4 - #1121 (@lukasIO) # livekit-api 0.5.0 (2026-05-29) ## Features - bump protocol to v1.46.4 - #1121 (@lukasIO) # livekit 0.7.43 (2026-05-29) ## Fixes - bump protocol to v1.46.4 - #1121 (@lukasIO) - Add native video pipeline timing instrumentation for local video measurements, exposing local publish and subscribe timing through async streams and subscriber overlay GPU upload and receive-to-GPU latency metrics through explicit timing observers. # livekit-uniffi 0.1.1 (2026-05-29) ## Fixes - bump protocol to v1.46.4 - #1121 (@lukasIO) # livekit-datatrack 0.1.8 (2026-05-29) ## Fixes - bump protocol to v1.46.4 - #1121 (@lukasIO) # livekit-ffi 0.12.61 (2026-05-29) ## Fixes - bump protocol to v1.46.4 - #1121 (@lukasIO) # libwebrtc 0.3.35 (2026-05-29) ## Fixes - Add native video pipeline timing instrumentation for local video measurements, exposing local publish and subscribe timing through async streams and subscriber overlay GPU upload and receive-to-GPU latency metrics through explicit timing observers. # webrtc-sys 0.3.33 (2026-05-29) ## Fixes - Add native video pipeline timing instrumentation for local video measurements, exposing local publish and subscribe timing through async streams and subscriber overlay GPU upload and receive-to-GPU latency metrics through explicit timing observers. --------- Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com> Co-authored-by: lukasIO <mail@lukasseiler.de>
1 parent 8c12be6 commit ba0c312

26 files changed

Lines changed: 81 additions & 47 deletions

File tree

.changeset/bump_protocol_to_v1_46_4.md

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

.changeset/local-video-pipeline-timing.md

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

Cargo.lock

Lines changed: 8 additions & 8 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
@@ -34,7 +34,7 @@ members = [
3434
"examples/screensharing",
3535
"examples/send_bytes",
3636
"examples/webhooks",
37-
"examples/wgpu_room"
37+
"examples/wgpu_room",
3838
]
3939

4040
[workspace.package]
@@ -46,15 +46,15 @@ license = "Apache-2.0"
4646
[workspace.dependencies]
4747
device-info = { version = "0.1.1", path = "device-info" }
4848
imgproc = { version = "0.3.19", path = "imgproc" }
49-
libwebrtc = { version = "0.3.34", path = "libwebrtc" }
50-
livekit = { version = "0.7.42", path = "livekit" }
51-
livekit-api = { version = "0.4.24", path = "livekit-api" }
52-
livekit-ffi = { version = "0.12.60", path = "livekit-ffi" }
53-
livekit-datatrack = { version = "0.1.7", path = "livekit-datatrack" }
54-
livekit-protocol = { version = "0.7.7", path = "livekit-protocol" }
49+
libwebrtc = { version = "0.3.35", path = "libwebrtc" }
50+
livekit = { version = "0.7.43", path = "livekit" }
51+
livekit-api = { version = "0.5.0", path = "livekit-api" }
52+
livekit-ffi = { version = "0.12.61", path = "livekit-ffi" }
53+
livekit-datatrack = { version = "0.1.8", path = "livekit-datatrack" }
54+
livekit-protocol = { version = "0.7.8", path = "livekit-protocol" }
5555
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
5656
soxr-sys = { version = "0.1.3", path = "soxr-sys" }
57-
webrtc-sys = { version = "0.3.32", path = "webrtc-sys" }
57+
webrtc-sys = { version = "0.3.33", path = "webrtc-sys" }
5858
webrtc-sys-build = { version = "0.3.18", path = "webrtc-sys/build" }
5959
yuv-sys = { version = "0.3.14", path = "yuv-sys" }
6060

libwebrtc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,12 @@ 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.35 (2026-05-29)
143+
144+
### Fixes
145+
146+
- Add native video pipeline timing instrumentation for local video measurements, exposing local publish and subscribe timing through async streams and subscriber overlay GPU upload and receive-to-GPU latency metrics through explicit timing observers.
147+
142148
## 0.3.34 (2026-05-21)
143149

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

livekit-api/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## 0.5.0 (2026-05-29)
11+
12+
### Features
13+
14+
- bump protocol to v1.46.4 - #1121 (@lukasIO)
15+
- add pagination to ListEgressRequest
16+
1017
## [0.4.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-api@0.4.13...rust-sdks/livekit-api@0.4.14) - 2026-02-16
1118

1219
### Fixed
@@ -96,6 +103,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
96103
### Added
97104

98105
- Update protocol and add SendDataRequest nonce
106+
107+
99108
## 0.4.24 (2026-05-20)
100109

101110
### Fixes

livekit-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-api"
3-
version = "0.4.24"
3+
version = "0.5.0"
44
license.workspace = true
55
description = "Rust Server SDK for LiveKit"
66
edition.workspace = true

livekit-datatrack/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
## 0.1.8 (2026-05-29)
3+
4+
### Fixes
5+
6+
- bump protocol to v1.46.4 - #1121 (@lukasIO)
7+
28
## 0.1.7 (2026-05-21)
39

410
### Features

livekit-datatrack/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-datatrack"
33
description = "Data track core for LiveKit"
4-
version = "0.1.7"
4+
version = "0.1.8"
55
readme = "README.md"
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)