Skip to content
Merged
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
9 changes: 0 additions & 9 deletions .changeset/fix_rtc_error_utf8_boundaries.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

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

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/upgrade_to_prost_0_14_across_the_whole_project.md

This file was deleted.

28 changes: 14 additions & 14 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,23 @@ 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.49", path = "libwebrtc" }
livekit = { version = "0.9.2", path = "livekit" }
livekit-api = { version = "0.8.0", path = "livekit-api" }
livekit-capture = { version = "0.1.2", path = "livekit-capture" }
livekit-ffi = { version = "0.12.80", path = "livekit-ffi" }
livekit-datatrack = { version = "0.2.0", path = "livekit-datatrack" }
livekit-signaling = { version = "0.1.3", path = "livekit-signaling" }
livekit-token = { version = "0.2.0", path = "livekit-token" }
libwebrtc = { version = "0.3.50", path = "libwebrtc" }
livekit = { version = "0.9.3", path = "livekit" }
livekit-api = { version = "0.8.1", path = "livekit-api" }
livekit-capture = { version = "0.1.3", path = "livekit-capture" }
livekit-ffi = { version = "0.12.81", path = "livekit-ffi" }
livekit-datatrack = { version = "0.2.1", path = "livekit-datatrack" }
livekit-signaling = { version = "0.1.4", path = "livekit-signaling" }
livekit-token = { version = "0.2.1", 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.6", path = "livekit-data-stream" }
livekit-common = { version = "0.1.4", path = "livekit-common" }
livekit-data-stream = { version = "0.1.7", path = "livekit-data-stream" }
livekit-net = { version = "0.1.3", path = "livekit-net" }
livekit-protocol = { version = "0.7.13", path = "livekit-protocol" }
livekit-protocol = { version = "0.8.0", path = "livekit-protocol" }
livekit-region = { version = "0.1.1", path = "livekit-region" }
livekit-rpc = { version = "0.1.2", path = "livekit-rpc" }
livekit-rpc = { version = "0.1.3", path = "livekit-rpc" }
soxr-sys = { version = "0.1.3", path = "soxr-sys" }
webrtc-sys = { version = "0.3.46", path = "webrtc-sys" }
webrtc-sys = { version = "0.3.47", 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
7 changes: 7 additions & 0 deletions libwebrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- bump libwebrtc to m125
## 0.3.50 (2026-09-24)

### Fixes

- Avoid panics when malformed RTC error headers contain non-ASCII text.
- Java version in libwebrtc was bumped by Google, downgrade it again for Unity 2022 build compatibility - #1456 (@MaxHeimbrock)

## 0.3.49 (2026-09-22)

### Fixes
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.49"
version = "0.3.50"
edition.workspace = true
homepage = "https://livekit.io"
license.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions livekit-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.8.1 (2026-09-24)

### Fixes

- refactor(signaling): explicit signal lifecycle state machine - #1402 (@lukasIO)
- Upgrade to prost 0.14 across the whole project - #1447 (@1egoman)

## 0.8.0 (2026-09-22)

### Breaking Changes
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.8.0"
version = "0.8.1"
license.workspace = true
description = "Rust Server SDK for LiveKit"
edition.workspace = true
Expand Down
9 changes: 9 additions & 0 deletions livekit-capture/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.1.3 (2026-09-24)

### Fixes

- Avoid panics when malformed RTC error headers contain non-ASCII text.
- Java version in libwebrtc was bumped by Google, downgrade it again for Unity 2022 build compatibility - #1456 (@MaxHeimbrock)
- refactor(signaling): explicit signal lifecycle state machine - #1402 (@lukasIO)
- Upgrade to prost 0.14 across the whole project - #1447 (@1egoman)

## 0.1.2 (2026-09-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion livekit-capture/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "livekit-capture"
description = "Ingest pixel frames or pre-encoded access units into LiveKit from any source"
version = "0.1.2"
version = "0.1.3"
readme = "README.md"
categories = ["multimedia::video"]
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions livekit-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.1.4 (2026-09-24)

### Fixes

- Upgrade to prost 0.14 across the whole project - #1447 (@1egoman)

## 0.1.3 (2026-09-08)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion livekit-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "livekit-common"
description = "Common foundational types shared across LiveKit crates"
version = "0.1.3"
version = "0.1.4"
readme = "README.md"
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions livekit-data-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.1.7 (2026-09-24)

### Fixes

- Upgrade to prost 0.14 across the whole project - #1447 (@1egoman)

## 0.1.6 (2026-09-22)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion livekit-data-stream/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "livekit-data-stream"
description = "Data stream core logic for LiveKit"
version = "0.1.6"
version = "0.1.7"
readme = "README.md"
license.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions livekit-datatrack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## 0.2.1 (2026-09-24)

### Fixes

- Upgrade to prost 0.14 across the whole project - #1447 (@1egoman)

## 0.2.0 (2026-09-22)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion livekit-datatrack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "livekit-datatrack"
description = "Data track core for LiveKit"
version = "0.2.0"
version = "0.2.1"
readme = "README.md"
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi-node-bindings/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/rtc-ffi-bindings-darwin-arm64",
"version": "0.12.80",
"version": "0.12.81",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi-node-bindings/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/rtc-ffi-bindings-darwin-x64",
"version": "0.12.80",
"version": "0.12.81",
"cpu": [
"x64"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/rtc-ffi-bindings-linux-arm64-gnu",
"version": "0.12.80",
"version": "0.12.81",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi-node-bindings/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/rtc-ffi-bindings-linux-x64-gnu",
"version": "0.12.80",
"version": "0.12.81",
"cpu": [
"x64"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/rtc-ffi-bindings-win32-x64-msvc",
"version": "0.12.80",
"version": "0.12.81",
"cpu": [
"x64"
],
Expand Down
Loading
Loading