Skip to content

Commit 63128d0

Browse files
Release packages (#1287)
> [!IMPORTANT] > Merging this pull request will create these releases # livekit-protocol 0.7.12 (2026-07-29) ## Fixes - Add data streams v2 - #1192 (@1egoman) # livekit 0.8.1 (2026-07-29) ## Fixes - allow for audio filters to be registered after initial room connection - #1273 (@lukasIO) - Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock) - Add data streams v2 - #1192 (@1egoman) - Ensure participant disconnects are synthesized after connection resume - #1250 (@lukasIO) # livekit-api 0.6.1 (2026-07-29) ## Fixes - Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock) - Add data streams v2 - #1192 (@1egoman) # livekit-net 0.1.2 (2026-07-29) ## Fixes - Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock) # livekit-data-stream 0.1.1 (2026-07-29) ## Features - Add data streams v2 - #1192 (@1egoman) # livekit-uniffi 0.1.7 (2026-07-29) ## Fixes - Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock) - Add data streams v2 - #1192 (@1egoman) # livekit-ffi 0.12.73 (2026-07-29) ## Fixes - allow for audio filters to be registered after initial room connection - #1273 (@lukasIO) - Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock) - Add data streams v2 - #1192 (@1egoman) - Ensure participant disconnects are synthesized after connection resume - #1250 (@lukasIO) # livekit-datatrack 0.1.13 (2026-07-29) ## Fixes - Add data streams v2 - #1192 (@1egoman) Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>
1 parent fc9c3ff commit 63128d0

28 files changed

Lines changed: 84 additions & 61 deletions

.changeset/allow_for_audio_filters_to_be_registered_after_initial_room_.md

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

.changeset/caching_of_tokio_backend_reqwest_http_client.md

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

.changeset/data_streams_v2.md

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

.changeset/ensure_participant_disconnects_are_synthesized_after_connect.md

Lines changed: 0 additions & 6 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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ license = "Apache-2.0"
4949
device-info = { version = "0.1.1", path = "device-info" }
5050
imgproc = { version = "0.3.19", path = "imgproc" }
5151
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" }
52+
livekit = { version = "0.8.1", path = "livekit" }
53+
livekit-api = { version = "0.6.1", path = "livekit-api" }
54+
livekit-ffi = { version = "0.12.73", path = "livekit-ffi" }
55+
livekit-datatrack = { version = "0.1.13", path = "livekit-datatrack" }
5656
livekit-common = { version = "0.1.0", path = "livekit-common" }
57-
livekit-data-stream = { version = "0.1.0", path = "livekit-data-stream" }
58-
livekit-net = { version = "0.1.1", path = "livekit-net" }
59-
livekit-protocol = { version = "0.7.11", path = "livekit-protocol" }
57+
livekit-data-stream = { version = "0.1.1", path = "livekit-data-stream" }
58+
livekit-net = { version = "0.1.2", path = "livekit-net" }
59+
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.

livekit-api/CHANGELOG.md

Lines changed: 7 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.6.1 (2026-07-29)
11+
12+
### Fixes
13+
14+
- Caching of tokio backend reqwest http client - #1285 (@MaxHeimbrock)
15+
- Add data streams v2 - #1192 (@1egoman)
16+
1017
## 0.6.0 (2026-07-27)
1118

1219
### Breaking Changes

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.6.0"
3+
version = "0.6.1"
44
license.workspace = true
55
description = "Rust Server SDK for LiveKit"
66
edition.workspace = true

livekit-data-stream/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## 0.1.1 (2026-07-29)
2+
3+
### Features
4+
5+
- Add data streams v2 - #1192 (@1egoman)

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.0"
4+
version = "0.1.1"
55
readme = "README.md"
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)